]> granicus.if.org Git - apache/commitdiff
I shouldn't have to explicitly provide an MPM. I am setting the default
authorRyan Bloom <rbb@apache.org>
Sun, 5 Dec 1999 19:36:42 +0000 (19:36 +0000)
committerRyan Bloom <rbb@apache.org>
Sun, 5 Dec 1999 19:36:42 +0000 (19:36 +0000)
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.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84226 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/config.m4

index 2993250b86a49fb14d746e6eee2f0fa22efb31b5..10366965d6c97b122e68f2fb26bb1451d57dc5a7 100644 (file)
@@ -6,10 +6,12 @@ AC_ARG_WITH(mpm,
     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)