From 03dde07d0457e70678c8e23e7f146b0322140c0a Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Tue, 7 Aug 2001 20:13:58 +0000 Subject: [PATCH] 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 --- CHANGES | 2 ++ server/mpm/config.m4 | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 0ed8c1c7221..69e9bab8b81 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 ] diff --git a/server/mpm/config.m4 b/server/mpm/config.m4 index 00de8f8cc13..3cbd0cdfae3 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) -- 2.47.2