From: Rainer Jung Date: Mon, 4 Jul 2011 11:06:14 +0000 (+0000) Subject: Support reallyall option to configure also for X-Git-Tag: 2.3.14^2~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4158d7f272e8a7cf4c141985acd67a1b172820f6;p=thirdparty%2Fapache%2Fhttpd.git Support reallyall option to configure also for --enable-mods-static. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1142623 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 571668ea306..1dcd5e6a224 100644 --- 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 ] + *) 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. diff --git a/acinclude.m4 b/acinclude.m4 index 7dfbd8329c1..edc4e5dd047 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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