You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@hyperreal.org on 1999/12/05 20:36:42 UTC

cvs commit: apache-2.0/src/modules/mpm config.m4

rbb         99/12/05 11:36:42

  Modified:    src/modules/mpm config.m4
  Log:
  I shouldn't have to explicitly provide an MPM.  I am setting the default
  as mpmt_pthread.  I would much rather it was prefork, but the autoconf
  work hasn't progressed to the point that prefork will work yet.  When it
  does work, I expect the default to change.
  
  Revision  Changes    Path
  1.3       +4 -2      apache-2.0/src/modules/mpm/config.m4
  
  Index: config.m4
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/mpm/config.m4,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- config.m4	1999/12/05 08:54:39	1.2
  +++ config.m4	1999/12/05 19:36:42	1.3
  @@ -6,10 +6,12 @@
       apache_cv_mpm=$withval
       AC_MSG_RESULT($apache_cv_mpm)
     else
  -    AC_MSG_ERROR(An MPM must be specified)
  +    apache_cv_mpm="mpmt_pthread"
  +    AC_MSG_RESULT(No MPM specified.  Using pthread)
     fi
   ],[
  -  AC_MSG_ERROR(An MPM must be specified)
  +  apache_cv_mpm="mpmt_pthread"
  +  AC_MSG_RESULT(No MPM specified.  Using pthread)
   ])
   
   APACHE_OUTPUT(modules/mpm/Makefile)