diff options
author | Sascha Schumann <sas@php.net> | 2001-05-23 21:23:16 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-05-23 21:23:16 +0000 |
commit | 1ad2a710ab9439d87fa2965f06ac0b07e9742cdf (patch) | |
tree | ed481e6e9b4e1f4806758e89801d7caa2d706adc | |
parent | b4ce3a696fdd9f76cc3e88bf709b187c8ccd42e1 (diff) | |
download | php-git-1ad2a710ab9439d87fa2965f06ac0b07e9742cdf.tar.gz |
Use EXTRA_LDFLAGS at this point.
I've confirmed that one can build a working Apache DSO module now
(AIX 4.2 with gcc 2.95.2 and Apache 1.3.12).
-rw-r--r-- | sapi/apache/config.m4 | 2 | ||||
-rw-r--r-- | sapi/apache2filter/config.m4 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sapi/apache/config.m4 b/sapi/apache/config.m4 index 49fd4911b9..69e9580634 100644 --- a/sapi/apache/config.m4 +++ b/sapi/apache/config.m4 @@ -60,7 +60,7 @@ AC_ARG_WITH(apxs, case $host_alias in *aix*) APXS_LIBEXECDIR=`$APXS -q LIBEXECDIR` - LDFLAGS="$LDFLAGS -Wl,-bI:$APXS_LIBEXECDIR/httpd.exp" + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-bI:$APXS_LIBEXECDIR/httpd.exp" ;; esac ],[ diff --git a/sapi/apache2filter/config.m4 b/sapi/apache2filter/config.m4 index ead34d68c3..cb3aeb2997 100644 --- a/sapi/apache2filter/config.m4 +++ b/sapi/apache2filter/config.m4 @@ -45,7 +45,7 @@ AC_ARG_WITH(apxs2, case $host_alias in *aix*) APXS_SBINDIR=`$APXS -q SBINDIR` - LDFLAGS="$LDFLAGS -Wl,-bI:$APXS_SBINDIR/httpd.exp" + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-bI:$APXS_SBINDIR/httpd.exp" ;; esac ],[ |