From 28cc55be0a8d062ef1b82b4cf2863ff06e3cf135 Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Sun, 12 Dec 2004 23:06:06 +0000 Subject: [PATCH] - Apply the same fix to apache2filter too. --- sapi/apache2filter/config.m4 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sapi/apache2filter/config.m4 b/sapi/apache2filter/config.m4 index decdd803cf..d3e95afc87 100644 --- a/sapi/apache2filter/config.m4 +++ b/sapi/apache2filter/config.m4 @@ -90,11 +90,11 @@ AC_ARG_WITH(apxs2filter, dnl the linker does not recursively look at the bundle loader and dnl pull in its dependencies. Therefore, we must pull in the APR dnl and APR-util libraries. - if test -x "$APR_BINDIR/apr-config"; then - MH_BUNDLE_FLAGS="`$APR_BINDIR/apr-config --ldflags --link-ld --libs`" + if test -x "$APR_CONFIG"; then + MH_BUNDLE_FLAGS="`$APR_CONFIG --ldflags --link-ld --libs`" fi - if test -x "$APU_BINDIR/apu-config"; then - MH_BUNDLE_FLAGS="`$APU_BINDIR/apu-config --ldflags --link-ld --libs` $MH_BUNDLE_FLAGS" + if test -x "$APU_CONFIG"; then + MH_BUNDLE_FLAGS="`$APU_CONFIG --ldflags --link-ld --libs` $MH_BUNDLE_FLAGS" fi MH_BUNDLE_FLAGS="-bundle -bundle_loader $APXS_HTTPD $MH_BUNDLE_FLAGS" PHP_SUBST(MH_BUNDLE_FLAGS) -- 2.50.1