From 951681f8555d123768b8edd94f73264775bc023a Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Mon, 5 Jan 2004 10:48:32 +0000 Subject: [PATCH] Improve help for --enable-modules= and --enable-mods-shared= by showing the alternative 'all' and 'most' meta-module git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102189 13f79535-47bb-0310-9956-ffa450edef68 --- acinclude.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 3764327a69..cd0a15e67c 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -279,7 +279,7 @@ AC_DEFUN(APACHE_ENABLE_MODULES,[ module_default=yes AC_ARG_ENABLE(modules, - APACHE_HELP_STRING(--enable-modules=MODULE-LIST,Space-separated list of modules to enable),[ + APACHE_HELP_STRING(--enable-modules=MODULE-LIST,Space-separated list of modules to enable | "all" | "most"),[ for i in $enableval; do if test "$i" = "all" -o "$i" = "most"; then module_selection=$i @@ -291,7 +291,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),[ + APACHE_HELP_STRING(--enable-mods-shared=MODULE-LIST,Space-separated list of shared modules to enable | "all" | "most"),[ for i in $enableval; do if test "$i" = "all" -o "$i" = "most"; then module_selection=$i -- 2.40.0