You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2001/11/21 19:32:27 UTC

cvs commit: httpd-2.0/server/mpm config.m4

trawick     01/11/21 10:32:27

  Modified:    .        CHANGES
               server/mpm config.m4
  Log:
  Bail out at configure time if an invalid MPM was specified.
  
  Submitted by: jean-frederic clere <jf...@fujitsu-siemens.com>
  Reviewed by:  Jeff Trawick
  
  Revision  Changes    Path
  1.449     +4 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.448
  retrieving revision 1.449
  diff -u -r1.448 -r1.449
  --- CHANGES	2001/11/21 03:19:13	1.448
  +++ CHANGES	2001/11/21 18:32:27	1.449
  @@ -1,4 +1,8 @@
   Changes with Apache 2.0.29-dev
  +
  +  *) Bail out at configure time if an invalid MPM was specified.
  +     [jean-frederic clere <jf...@fujitsu-siemens.com>]
  +
     *) Prevent segv in ap_note_basic_auth_failure() when no AuthName is
        configured [John Sterling <st...@covalent.net>]
   
  
  
  
  1.40      +3 -0      httpd-2.0/server/mpm/config.m4
  
  Index: config.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/mpm/config.m4,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- config.m4	2001/11/19 18:07:28	1.39
  +++ config.m4	2001/11/21 18:32:27	1.40
  @@ -22,6 +22,9 @@
       apache_cv_mpm=prefork
     fi
   fi
  +if test ! -f "server/mpm/$apache_cv_mpm/mpm.h"; then
  +    AC_MSG_ERROR(the selected mpm -- $apache_cv_mpm -- is not supported)
  +fi
   
   APACHE_FAST_OUTPUT(server/mpm/Makefile)