From f49f38b50c92b80c83deb7fda32bd610382f02fd Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Sun, 5 Dec 1999 19:36:42 +0000 Subject: [PATCH] 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. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84226 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/config.m4 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server/mpm/config.m4 b/server/mpm/config.m4 index 2993250b86..10366965d6 100644 --- a/server/mpm/config.m4 +++ b/server/mpm/config.m4 @@ -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) -- 2.50.1