diff options
author | Jeff Trawick <trawick@apache.org> | 2009-03-26 13:44:48 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2009-03-26 13:44:48 +0100 |
commit | ee826b54da609b4bd8a033faa32e199cc21981e1 (patch) | |
tree | 00d877823a50eab3f9ef24e4d1d01e64c1bfa596 /server/mpm/config.m4 | |
parent | prefork is soooooo 1990s. make new default simple (diff) | |
download | apache2-ee826b54da609b4bd8a033faa32e199cc21981e1.tar.xz apache2-ee826b54da609b4bd8a033faa32e199cc21981e1.zip |
remove leader, perchild, and threadpool MPMs (other than non-English bits in common parts of the manual)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@758613 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/config.m4')
-rw-r--r-- | server/mpm/config.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/mpm/config.m4 b/server/mpm/config.m4 index 4b02226460..e90984e22c 100644 --- a/server/mpm/config.m4 +++ b/server/mpm/config.m4 @@ -1,7 +1,7 @@ AC_MSG_CHECKING(which MPM to use) AC_ARG_WITH(mpm, APACHE_HELP_STRING(--with-mpm=MPM,Choose the process model for Apache to use. - MPM={simple|beos|event|worker|prefork|mpmt_os2|perchild|leader|threadpool|winnt} + MPM={simple|beos|event|worker|prefork|mpmt_os2|winnt} Specify "shared" instead of an MPM name to load MPMs dynamically. ),[ APACHE_MPM=$withval @@ -17,7 +17,7 @@ apache_cv_mpm=$APACHE_MPM dnl Note that a build with an explicitly loaded MPM must support threaded MPMs. ap_mpm_is_threaded () { - if test "$apache_cv_mpm" = "shared" -o "$apache_cv_mpm" = "worker" -o "$apache_cv_mpm" = "event" -o "$apache_cv_mpm" = "simple" -o "$apache_cv_mpm" = "perchild" -o "$apache_cv_mpm" = "leader" -o "$apache_cv_mpm" = "winnt" -o "$apache_cv_mpm" = "threadpool" ; then + if test "$apache_cv_mpm" = "shared" -o "$apache_cv_mpm" = "worker" -o "$apache_cv_mpm" = "event" -o "$apache_cv_mpm" = "simple" -o "$apache_cv_mpm" = "winnt" ; then return 0 else return 1 @@ -27,7 +27,7 @@ ap_mpm_is_threaded () dnl No such check for a shared MPM. ap_mpm_is_experimental () { - if test "$apache_cv_mpm" = "event" -o "$apache_cv_mpm" = "perchild" -o "$apache_cv_mpm" = "leader" -o "$apache_cv_mpm" = "threadpool" ; then + if test "$apache_cv_mpm" = "event"; then return 0 else return 1 |