]> granicus.if.org Git - apache/commitdiff
Only load the really imporant modules (i.e. those enabled by the 'few'
authorStefan Fritsch <sf@apache.org>
Thu, 10 Nov 2011 19:31:49 +0000 (19:31 +0000)
committerStefan Fritsch <sf@apache.org>
Thu, 10 Nov 2011 19:31:49 +0000 (19:31 +0000)
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

CHANGES
acinclude.m4

diff --git a/CHANGES b/CHANGES
index 1e5b0a59f42dae3d9020c01e3fa7395cbdf30ed1..c921965922862b8dbb3a4274e5a5dfc1d99f0bea 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,10 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.3.16
 
+  *) configure: 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. [Stefan Fritsch]
+
   *) end-generation hook: Fix false notification of end-of-generation for
      temporary intervals with no active MPM children.  [Jeff Trawick]
 
index 76d79fcb52d31abe0d7042799221c2ef46184045..2911fba1aa7cc4d5d5ee6ed61633859fe887fb56 100644 (file)
@@ -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
       ;;