]> granicus.if.org Git - apache/commitdiff
configure: Do not treat dependency exceptions with --enable-modules
authorWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 26 Jun 2016 15:39:05 +0000 (15:39 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 26 Jun 2016 15:39:05 +0000 (15:39 +0000)
of only 'few' or 'none' as fatal, but continue the ./configure

Submitted by: trawick
Backports: r1396440 [only the acinclude.m4, config5.m4 change was N/A]
Reviewed by: wrowe, rpluem, ylavic

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1750254 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
acinclude.m4

diff --git a/CHANGES b/CHANGES
index 3ff8e97f5c7bf3835bbe11848000b3cba15ed2af..dd002f73201c5c78b4a4ee8424b833bd7d3a3479 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -3,7 +3,7 @@
 Changes with Apache 2.4.23
 
   *) configure: Fix ./configure edge-case failures around dependencies
-     of mod_proxy_hcheck. [William Rowe, Ruediger Pluem]
+     of mod_proxy_hcheck. [William Rowe, Ruediger Pluem, Jeff Trawick]
 
 Changes with Apache 2.4.22
 
diff --git a/STATUS b/STATUS
index ef2ae4855e35715a5e1c7042f0beadc4b74d82c3..97b7420b8da5013d176bddbd85f860a48f814fd7 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -116,13 +116,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  *) configure: Do not treat dependency exceptions with --enable-modules
-     of only 'few' or 'none' as fatal, but continue the ./configure
-     Submitted by: trawick [Add to CHANGES credit]
-     trunk patch: http://svn.apache.org/r1396440 [only the acinclude.m4 edit]
-     2.4.x: trunk patch to acinclude.m4 works (modules/arch/unix patch is N/A)
-     +1: wrowe, rpluem, ylavic
-
   *) mod_watchdog: Enable at --enable-modules=most for mod_proxy_hcheck
      trunk patch: http://svn.apache.org/viewvc?rev=1749924&view=rev
      2.4.x: trunk patch works
index e26de5f1ee07bddfaaf367ebe1bcb34146e7797d..0996d8db51e5b1e730571f264deb5f091260b313 100644 (file)
@@ -312,22 +312,15 @@ AC_DEFUN([APACHE_MODULE],[
   AC_ARG_ENABLE(translit($1,_,-),APACHE_HELP_STRING(optname(),$2),force_$1=$enableval,enable_$1=ifelse($5,,maybe-all,$5))
   undefine([optname])dnl
   _apmod_extra_msg=""
-  dnl When --enable-modules=most or --enable-modules=(really)all is set and the
-  dnl module was not explicitly requested, allow a module to disable itself if
+  dnl If the module was not explicitly requested, allow it to disable itself if
   dnl its pre-reqs fail.
   case "$enable_$1" in
     yes|static|shared)
       _apmod_required="yes"
       ;;
     *)
-      case "$module_selection" in
-      reallyall|all|most)
-        _apmod_required="no"
-        ;;
-      *)
-        _apmod_required="yes"
-        ;;
-      esac
+      _apmod_required="no"
+      ;;
   esac
   if test "$enable_$1" = "static"; then
     enable_$1=static