From: Stefan Fritsch Date: Thu, 10 Nov 2011 19:31:49 +0000 (+0000) Subject: Only load the really imporant modules (i.e. those enabled by the 'few' X-Git-Tag: 2.5.0-alpha~7958 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4a5d6641fd21424733d0625ab181c1039a64257;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/CHANGES b/CHANGES index 1e5b0a59f42..c9219659228 100644 --- 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] diff --git a/acinclude.m4 b/acinclude.m4 index 76d79fcb52d..2911fba1aa7 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 ;;