[Lunar-commits] r24887 - moonbase/trunk/web/apache2
Auke Kok
sofar at lunar-linux.org
Mon Jun 18 07:28:08 CEST 2007
Author: sofar
Date: 2007-06-18 07:28:08 +0200 (Mon, 18 Jun 2007)
New Revision: 24887
Modified:
moonbase/trunk/web/apache2/BUILD
moonbase/trunk/web/apache2/CONFIGURE
Log:
Update apache2 to use the new mquery syntax
From: sofar at foo-projects.org
Modified: moonbase/trunk/web/apache2/BUILD
===================================================================
--- moonbase/trunk/web/apache2/BUILD 2007-06-18 03:52:15 UTC (rev 24886)
+++ moonbase/trunk/web/apache2/BUILD 2007-06-18 05:28:08 UTC (rev 24887)
@@ -2,72 +2,28 @@
prepare_install &&
- OPTS="$OPTS --prefix=/etc/httpd \
- --sysconfdir=/etc/httpd/conf \
- --exec-prefix=/usr \
- --sbindir=/usr/sbin \
- --libexecdir=/usr/libexec/httpd/modules \
- --datadir=/var/www \
- --sharedstatedir=/var/run/httpd \
- --localstatedir=/var \
- --libdir=/usr/lib \
- --includedir=/usr/include/httpd \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- --enable-so \
- --enable-rewrite \
- --enable-mime-magic \
- --enable-exception-hook \
- --enable-layout=GNU \
- --enable-usertrack \
- --with-apr=/usr \
- --with-apr-util=/usr"
+ OPTS="--prefix=/etc/httpd \
+ --sysconfdir=/etc/httpd/conf \
+ --exec-prefix=/usr \
+ --sbindir=/usr/sbin \
+ --libexecdir=/usr/libexec/httpd/modules \
+ --datadir=/var/www \
+ --sharedstatedir=/var/run/httpd \
+ --localstatedir=/var \
+ --libdir=/usr/lib \
+ --includedir=/usr/include/httpd \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man \
+ --enable-so \
+ --enable-rewrite \
+ --enable-mime-magic \
+ --enable-exception-hook \
+ --enable-layout=GNU \
+ --enable-usertrack \
+ --with-apr=/usr \
+ --with-apr-util=/usr \
+ $OPTS"
- if [ "$ENABLE_SUEXEC" == "y" ] ; then
- OPTS="$OPTS --enable-suexec --with-suexec \
- --with-suexec-caller=nobody \
- --with-suexec-docroot=/var/www \
- --with-suexec-logfile=/var/log/httpd/suexec \
- --with-suexec-bin=/usr/sbin/suexec \
- --with-suexec-uidmin=500 \
- --with-suexec-gidmin=500"
- fi
-
- if [ "$ENABLE_SSL" == "y" ] ; then
- OPTS="$OPTS --enable-ssl"
- fi
-
- if [ "$ENABLE_PROXY" == "y" ] ; then
- OPTS="$OPTS --enable-proxy --enable-proxy-connect \
- --enable-proxy-http --enable-proxy-ftp"
- fi
-
- if [ "$ENABLE_DAV" == "y" ] ; then
- OPTS="$OPTS --enable-dav --enable-dav-fs --enable-dav-lock"
- fi
-
- if [ "$ENABLE_INFO" == "y" ] ; then
- OPTS="$OPTS --enable-info"
- fi
-
- if [ "$ENABLE_DEFLATE" == "y" ] ; then
- OPTS="$OPTS --enable-deflate"
- fi
-
- if [ "$ENABLE_CGID" == "y" ] ; then
- OPTS="$OPTS --enable-cgid"
- else
- OPTS="$OPTS --enable-cgi"
- fi
-
- if [ "$ENABLE_VHOST" == "y" ] ; then
- OPTS="$OPTS --enable-vhost-alias"
- fi
-
- if [ "$ENABLE_SPELL" == "y" ] ; then
- OPTS="$OPTS --enable-spelling"
- fi
-
if [ "$USE_WORKER" == "n" ]; then
OPTS="$OPTS --with-mpm=prefork"
else
Modified: moonbase/trunk/web/apache2/CONFIGURE
===================================================================
--- moonbase/trunk/web/apache2/CONFIGURE 2007-06-18 03:52:15 UTC (rev 24886)
+++ moonbase/trunk/web/apache2/CONFIGURE 2007-06-18 05:28:08 UTC (rev 24887)
@@ -1,10 +1,10 @@
-mquery ENABLE_SSL "Enable TLS/SSL ?" y
-mquery ENABLE_PROXY "Enable Proxy support ?" y
-mquery ENABLE_SUEXEC "Enable suexec ?" y
-mquery ENABLE_DAV "Enable WebDav ?" n
-mquery ENABLE_DEFLATE "Enable deflate transfer encoding support ?" n
-mquery ENABLE_CGID "Enable cgid ?" y
-mquery ENABLE_INFO "Enable Info ?" n
-mquery ENABLE_VHOST "Enable mass virtual hosting module ?" n
-mquery ENABLE_SPELL "Enable spelling ?" n
+mquery ENABLE_SSL "Enable TLS/SSL ?" y --enable-ssl
+mquery ENABLE_PROXY "Enable Proxy support ?" y "--enable-proxy --enable-proxy-connect --enable-proxy-http --enable-proxy-ftp"
+mquery ENABLE_SUEXEC "Enable suexec ?" y "--enable-suexec --with-suexec --with-suexec-caller=nobody --with-suexec-docroot=/var/www --with-suexec-logfile=/var/log/httpd/suexec --with-suexec-bin=/usr/sbin/suexec --with-suexec-uidmin=500 --with-suexec-gidmin=500"
+mquery ENABLE_DAV "Enable WebDav ?" n "--enable-dav --enable-dav-fs --enable-dav-lock"
+mquery ENABLE_DEFLATE "Enable deflate transfer encoding support ?" n --enable-deflate
+mquery ENABLE_CGID "Enable cgid ?" y --enable-cgid --enable-cgi
+mquery ENABLE_INFO "Enable Info ?" n --enable-info
+mquery ENABLE_VHOST "Enable mass virtual hosting module ?" n --enable-vhost-alias
+mquery ENABLE_SPELL "Enable spelling ?" n --enable-spelling
mquery USE_WORKER "Use worker threading model (for 2.6+nptl threading) ?" n
More information about the Lunar-commits
mailing list