Commit 34d31f44 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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
parent cc3dfda9
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
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>]
+1 −1
Original line number Diff line number Diff line
@@ -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)