You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@apache.org on 2004/01/05 11:48:32 UTC

cvs commit: httpd-2.0 acinclude.m4

martin      2004/01/05 02:48:32

  Modified:    .        acinclude.m4
  Log:
  Improve help for --enable-modules= and --enable-mods-shared= by showing the alternative 'all' and 'most' meta-module
  
  Revision  Changes    Path
  1.147     +2 -2      httpd-2.0/acinclude.m4
  
  Index: acinclude.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/acinclude.m4,v
  retrieving revision 1.146
  retrieving revision 1.147
  diff -u -u -r1.146 -r1.147
  --- acinclude.m4	15 Dec 2003 14:11:35 -0000	1.146
  +++ acinclude.m4	5 Jan 2004 10:48:32 -0000	1.147
  @@ -279,7 +279,7 @@
     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_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