Revision: | 1.4 |
Committed: | Mon Apr 10 23:38:46 2006 UTC (19 years ago) by steen |
Branch: | MAIN |
Changes since 1.3: | +4 -1 lines |
Log Message: | - Build mod_ssl, still not enabled by default configuration (--enable-ssl) - mod_ssl tested to work with appropriate server key/cert pair - Build mod_rewrite (--enable-rewrite) - Build shared library module support (--enable-dso) |
# | User | Rev | Content |
---|---|---|---|
1 | steen | 1.3 | ### RPM external apache 2.2.0 |
2 | eulisse | 1.1 | %define downloadn httpd |
3 | Source: http://mirror1.zic-network.ch/apache/%{downloadn}/%{downloadn}-%{v}.tar.gz | ||
4 | Requires: apr apr-util pcre zlib openssl | ||
5 | %prep | ||
6 | %setup -n %{downloadn}-%{v} | ||
7 | |||
8 | %build | ||
9 | ./configure --prefix=%{i} \ | ||
10 | steen | 1.3 | --with-apr=$APR_ROOT \ |
11 | --with-apr-util=$APR_UTIL_ROOT \ | ||
12 | eulisse | 1.1 | --with-pcre=$PCRE_ROOT \ |
13 | --with-z=$LIBZ_ROOT \ | ||
14 | steen | 1.4 | --with-ssl=$OPENSSL_ROOT \ |
15 | --enable-ssl \ | ||
16 | --enable-rewrite \ | ||
17 | --enable-so | ||
18 | eulisse | 1.1 | make %makeprocesses |