diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2000-08-22 03:41:05 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2000-08-22 03:41:05 +0000 |
commit | 93b9a4024bf41935e05f109f8288bf51b653e52b (patch) | |
tree | 4b6738f9c46227b1bb385cd32b055f910b40c777 /www/apache13-ssl/Makefile | |
parent | 3f4519f88f6b9d7e538a029b772a2fe800a3320c (diff) | |
download | FreeBSD-ports-93b9a4024bf41935e05f109f8288bf51b653e52b.zip FreeBSD-ports-93b9a4024bf41935e05f109f8288bf51b653e52b.tar.gz |
Cosmetic changes to reduce difference between apache13 ports.
(whitespace/tab, re-ordering, same $DISTNAME)
This is preparation for ports/18788 updates.
Approved by: adam@algroup.co.uk, sumikawa
No response from: ache (sorry for stepping on your toes)
Diffstat (limited to 'www/apache13-ssl/Makefile')
-rw-r--r-- | www/apache13-ssl/Makefile | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/www/apache13-ssl/Makefile b/www/apache13-ssl/Makefile index 498013d..dad49b2 100644 --- a/www/apache13-ssl/Makefile +++ b/www/apache13-ssl/Makefile @@ -48,7 +48,9 @@ USE_OPENSSL= RSA .include <bsd.port.pre.mk> -HAS_CONFIGURE= yes +# +# Set APACHE_PERF_TUNING env. variable to YES to get maximum performance +# .if !defined(OPENSSLINC) OPENSSLINC= ${PREFIX}/ssl/include @@ -59,20 +61,24 @@ CFLAGS+= -I${OPENSSLINC}/openssl OPENSSLLIB= ${PREFIX}/ssl/lib .endif -CONFIGURE_ARGS= --prefix=${PREFIX} \ +HAS_CONFIGURE= yes +CONFIGURE_ARGS= \ + --prefix=${PREFIX} \ + --server-gid=nogroup \ + --with-perl=${PERL} \ --with-layout=GNU \ - --sysconfdir=${PREFIX}/etc/apache \ - --includedir=${PREFIX}/include/apache \ - --localstatedir=/var \ - --datadir=${PREFIX}/www \ --suexec-docroot=${PREFIX}/www/data \ - --proxycachedir=${PREFIX}/www/proxy \ - --libexecdir=${PREFIX}/libexec/apache \ --without-confadjust \ --enable-shared=remain \ --enable-module=most \ --enable-module=auth_db \ - --disable-module=auth_dbm + --disable-module=auth_dbm \ + --sysconfdir=${PREFIX}/etc/apache \ + --includedir=${PREFIX}/include/apache \ + --localstatedir=/var \ + --datadir=${PREFIX}/www \ + --proxycachedir=${PREFIX}/www/proxy \ + --libexecdir=${PREFIX}/libexec/apache OPTIM= -DHARD_SERVER_LIMIT=512 \ -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \ |