diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-10-11 22:37:56 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-10-11 22:37:56 +0000 |
commit | 3e415190b1d1ff22d3e5ab467a3552918044a983 (patch) | |
tree | 98939e2fa418266dd72e66f25fd6d0a8a6c3a677 /www/apache21/Makefile | |
parent | Update MASTER_SITES. (diff) |
Move all modules from static to shared to allow maximal configuration
flexibility.
WARNING: existing configurations should be updated with 'LoadModule' for
previously static modules.
Diffstat (limited to 'www/apache21/Makefile')
-rw-r--r-- | www/apache21/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/apache21/Makefile b/www/apache21/Makefile index 7f5daa46a736..5b3c6a6df906 100644 --- a/www/apache21/Makefile +++ b/www/apache21/Makefile @@ -7,6 +7,7 @@ PORTNAME= apache PORTVERSION= 1.3.12 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.apache.org/dist/ \ ftp://ftp.ccs.neu.edu/net/mirrors/ftp.apache.org/apache/dist/ \ @@ -41,10 +42,11 @@ CONFIGURE_ARGS= \ --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \ --suexec-docroot=${PREFIX}/www/data \ --without-confadjust \ - --enable-shared=remain \ --enable-module=most \ --enable-module=auth_db \ - --disable-module=auth_dbm + --enable-module=mmap_static \ + --disable-module=auth_dbm \ + --enable-shared=max OPTIM= -DHARD_SERVER_LIMIT=512 \ -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \ |