From 34417319f6b9245e70408ede6a75532611a13c59 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Wed, 23 Aug 2000 20:16:29 +0000 Subject: [PATCH] Try to organize the MPM pre-selection to the hints.m4 file. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86141 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/config.m4 | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/server/mpm/config.m4 b/server/mpm/config.m4 index acaee6d859..9d56495241 100644 --- a/server/mpm/config.m4 +++ b/server/mpm/config.m4 @@ -4,15 +4,9 @@ AC_ARG_WITH(mpm, MPM={dexter,mpmt_beos,mpmt_pthread,prefork,spmt_os2,perchild}],[ APACHE_MPM=$withval ],[ - APACHE_MPM=mpmt_pthread - PLAT=`$ac_config_guess` - PLAT=`$ac_config_sub $PLAT` - case "$PLAT" in - *beos*) - APACHE_MPM=mpmt_beos;; - *os2_emx*) - APACHE_MPM=spmt_os2;; - esac + if test "x$APACHE_MPM" = "x"; then + APACHE_MPM=mpmt_pthread + fi ]) AC_MSG_RESULT($APACHE_MPM) -- 2.40.0