From: Brian Havard Date: Tue, 21 Dec 2004 12:52:17 +0000 (+0000) Subject: The current config.guess in APR outputs i386-pc-os2-emx on OS/2 rather than X-Git-Tag: 2.1.3~221 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8b62fcf936d8e5ebc54b3efebc611b748a742bb0;p=thirdparty%2Fapache%2Fhttpd.git The current config.guess in APR outputs i386-pc-os2-emx on OS/2 rather than i386-pc-os2_emx (dash instead of underscore), adjust the tests to match. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@122967 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 84b53d05b74..12a53b6be28 100644 --- a/configure.in +++ b/configure.in @@ -202,7 +202,7 @@ case $host in APR_SETVAR(APACHE_MPM, [beos]) APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1]) ;; - *os2_emx*) + *os2-emx*) APR_SETVAR(APACHE_MPM, [mpmt_os2]) APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1]) ;; diff --git a/os/config.m4 b/os/config.m4 index e4757b0891f..336f360d752 100644 --- a/os/config.m4 +++ b/os/config.m4 @@ -5,7 +5,7 @@ case $host in OS="beos" OS_DIR=$OS ;; -*pc-os2_emx*) +*pc-os2-emx*) OS="os2" OS_DIR=$OS ;;