From: foobar Date: Mon, 3 Feb 2003 17:35:39 +0000 (+0000) Subject: MFH: Fix bug: #22035 (EXTRA_LDFLAGS for AIX not quite right) X-Git-Tag: php-4.3.2RC1~341 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a51420ddc8955084097b3fdc8ffedc25b3395d32;p=php MFH: Fix bug: #22035 (EXTRA_LDFLAGS for AIX not quite right) --- diff --git a/sapi/apache2filter/config.m4 b/sapi/apache2filter/config.m4 index 1f7fd93398..3520d524a9 100644 --- a/sapi/apache2filter/config.m4 +++ b/sapi/apache2filter/config.m4 @@ -61,8 +61,7 @@ AC_ARG_WITH(apxs2, case $host_alias in *aix*) - APXS_SBINDIR=`$APXS -q SBINDIR` - EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-bI:$APXS_SBINDIR/httpd.exp" + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-brtl -Wl,-bI:$APXS_LIBEXECDIR/httpd.exp" PHP_SELECT_SAPI(apache2filter, shared, sapi_apache2.c apache_config.c php_functions.c) INSTALL_IT="$INSTALL_IT $SAPI_LIBTOOL" ;;