From: Jim Jagielski Date: Sat, 8 Jul 2000 14:25:25 +0000 (+0000) Subject: We already depend on these autoconf functions X-Git-Tag: APACHE_2_0_ALPHA_5~157 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ced6e4ef3996f815e06bb5b963f6cbf4401cccd6;p=thirdparty%2Fapache%2Fhttpd.git We already depend on these autoconf functions in other places. Avoid possible portability concerns by using them here as well git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85791 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/config.m4 b/server/mpm/config.m4 index d09aa21e9b8..b318d13d530 100644 --- a/server/mpm/config.m4 +++ b/server/mpm/config.m4 @@ -6,10 +6,12 @@ AC_ARG_WITH(mpm, mpm_explicit="yes" ],[ APACHE_MPM=mpmt_pthread - case "`uname -sr`" in - "BeOS"*) + PLAT=`$ac_config_guess` + PLAT=`$ac_config_sub $PLAT` + case "$PLAT" in + *beos*) APACHE_MPM=mpmt_beos;; - "OS/2"*) + *os2_emx*) APACHE_MPM=spmt_os2;; esac mpm_explicit="no"