summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-08-07 20:13:58 +0000
committerJeff Trawick <trawick@apache.org>2001-08-07 20:13:58 +0000
commit03dde07d0457e70678c8e23e7f146b0322140c0a (patch)
treec84befc8e82befbc87c6a382a24687598ebbb5fa
parent68c0c55c59033c7808a90f1317858d7e00c807d7 (diff)
downloadhttpd-03dde07d0457e70678c8e23e7f146b0322140c0a.tar.gz
Use the prefork MPM by default on Unix.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90007 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--CHANGES2
-rw-r--r--server/mpm/config.m42
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 0ed8c1c722..69e9bab8b8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,7 @@
Changes with Apache 2.0.23-dev
+ *) Use the prefork MPM by default on Unix. [various]
+
*) mod_rewrite: Fix the line ending on some non-Unix systems for
messages written to the rewrite log.
[Richard Labennett <rlabenn@us.ibm.com>]
diff --git a/server/mpm/config.m4 b/server/mpm/config.m4
index 00de8f8cc1..3cbd0cdfae 100644
--- a/server/mpm/config.m4
+++ b/server/mpm/config.m4
@@ -5,7 +5,7 @@ AC_ARG_WITH(mpm,
APACHE_MPM=$withval
],[
if test "x$APACHE_MPM" = "x"; then
- APACHE_MPM=threaded
+ APACHE_MPM=prefork
fi
])
AC_MSG_RESULT($APACHE_MPM)