From b0a5b5242612f31b31982929abca50c4b8fb5a0a Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Fri, 7 Mar 2003 12:23:00 +0000 Subject: [PATCH] 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 --- server/mpm/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mpm/config.m4 b/server/mpm/config.m4 index 3ea80163ff..c86a624ec4 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) -- 2.40.0