summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-11-10 19:31:49 +0000
committerStefan Fritsch <sf@apache.org>2011-11-10 19:31:49 +0000
commitf4a5d6641fd21424733d0625ab181c1039a64257 (patch)
tree726845972b326d9df0ebaa9d8299c12e3777c61b /acinclude.m4
parentde5161b3d935f2386db996339f0a7c19b7694d35 (diff)
downloadhttpd-f4a5d6641fd21424733d0625ab181c1039a64257.tar.gz
Only load the really imporant modules (i.e. those enabled by the 'few'
selection) by default. Don't handle modules enabled with --enable-foo specially. This fixes problems with module dependencies until someone implements a mechanism for resolving module dependencies. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1200491 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 76d79fcb52..2911fba1aa 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -359,7 +359,7 @@ AC_DEFUN(APACHE_MODULE,[
sharedobjs=yes
shared=yes
DSO_MODULES="$DSO_MODULES $1"
- if test "$_apmod_required" = "yes" ; then
+ if test "$5" = "yes" ; then
ENABLED_DSO_MODULES="${ENABLED_DSO_MODULES},$1"
fi
;;