From: Jeff Trawick Date: Fri, 7 Mar 2003 12:23:00 +0000 (+0000) Subject: clean up the invocation of APR_CHECK_APR_DEFINE()... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0a5b5242612f31b31982929abca50c4b8fb5a0a;p=thirdparty%2Fapache%2Fhttpd.git clean up the invocation of APR_CHECK_APR_DEFINE()... it no longer references the second parameter, which was incorrectly specified with out-of-tree APR anyway (which resulted in prefork being selected on Unix since we didn't ever think APR had thread support) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98917 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/config.m4 b/server/mpm/config.m4 index 3ea80163ffb..c86a624ec40 100644 --- a/server/mpm/config.m4 +++ b/server/mpm/config.m4 @@ -13,7 +13,7 @@ AC_MSG_RESULT($APACHE_MPM) apache_cv_mpm=$APACHE_MPM if test "$apache_cv_mpm" = "worker" -o "$apache_cv_mpm" = "perchild" -o "$apache_cv_mpm" = "leader" -o "$apache_cv_mpm" = "threadpool" ; then - APR_CHECK_APR_DEFINE(APR_HAS_THREADS, srclib/apr) + APR_CHECK_APR_DEFINE(APR_HAS_THREADS) if test "x$ac_cv_define_APR_HAS_THREADS" = "xno"; then AC_MSG_RESULT(The currently selected MPM requires threads which your system seems to lack)