]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Support reallyall option to configure also for
authorRainer Jung <rjung@apache.org>
Mon, 4 Jul 2011 11:06:14 +0000 (11:06 +0000)
committerRainer Jung <rjung@apache.org>
Mon, 4 Jul 2011 11:06:14 +0000 (11:06 +0000)
--enable-mods-static.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1142623 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
acinclude.m4

diff --git a/CHANGES b/CHANGES
index 571668ea306fbc8b0290ecbebe334892adbef7ee..1dcd5e6a22463a892b5d03f407c423b1a633cf18 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -8,6 +8,9 @@ Changes with Apache 2.3.14
   *) mod_ssl: Add some debug logging when loading server certificates.
      PR 37912. [Nick Burch <nick burch alfresco com>]
 
+  *) configure: Support reallyall option also for --enable-mods-static.
+     [Rainer Jung]
+
 Changes with Apache 2.3.13
 
   *) ab: Support specifying the local address to use. PR 48930.
index 7dfbd8329c1693fd475210db099a3ac8396a20d1..edc4e5dd04765efab06808f28162670d53e632c2 100644 (file)
@@ -374,7 +374,7 @@ AC_DEFUN(APACHE_ENABLE_MODULES,[
 
 
   AC_ARG_ENABLE(modules,
-  APACHE_HELP_STRING(--enable-modules=MODULE-LIST,Space-separated list of modules to enable | "all" | "most" | "few" | "none"| "reallyall"),[
+  APACHE_HELP_STRING(--enable-modules=MODULE-LIST,Space-separated list of modules to enable | "all" | "most" | "few" | "none" | "reallyall"),[
     if test "$enableval" = "none"; then
        module_default=no
        module_selection=none
@@ -392,7 +392,7 @@ AC_DEFUN(APACHE_ENABLE_MODULES,[
   ])
   
   AC_ARG_ENABLE(mods-shared,
-  APACHE_HELP_STRING(--enable-mods-shared=MODULE-LIST,Space-separated list of shared modules to enable | "all" | "most" | "few"| "reallyall"),[
+  APACHE_HELP_STRING(--enable-mods-shared=MODULE-LIST,Space-separated list of shared modules to enable | "all" | "most" | "few" | "reallyall"),[
     for i in $enableval; do
       if test "$i" = "all" -o "$i" = "most" -o "$i" = "few" -o "$i" = "reallyall"
       then
@@ -406,9 +406,9 @@ AC_DEFUN(APACHE_ENABLE_MODULES,[
   ])
   
   AC_ARG_ENABLE(mods-static,
-  APACHE_HELP_STRING(--enable-mods-static=MODULE-LIST,Space-separated list of static modules to enable | "all" | "most" | "few"),[
+  APACHE_HELP_STRING(--enable-mods-static=MODULE-LIST,Space-separated list of static modules to enable | "all" | "most" | "few" | "reallyall"),[
     for i in $enableval; do
-      if test "$i" = "all" -o "$i" = "most" -o "$i" = "few"; then
+      if test "$i" = "all" -o "$i" = "most" -o "$i" = "few" -o "$i" = "reallyall"; then
         module_selection=$i
         module_default=static
       else