diff options
author | Jeff Trawick <trawick@apache.org> | 2001-12-21 17:18:02 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-12-21 17:18:02 +0100 |
commit | cd61627d3dbe95bc766a71084be96a89d803a6a2 (patch) | |
tree | 0fd4627998adadb041c8af247a86944706495428 /configure.in | |
parent | Clean up a compiler emit for signedness (diff) | |
download | apache2-cd61627d3dbe95bc766a71084be96a89d803a6a2.tar.xz apache2-cd61627d3dbe95bc766a71084be96a89d803a6a2.zip |
On AIX, DSOs which reference external libraries need those libraries
available to ld when the DSO is linked.
This gets mod_deflate, which needs zlib, to work as a DSO on AIX.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92565 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 6057a56641..1cccd442d3 100644 --- a/configure.in +++ b/configure.in @@ -299,6 +299,7 @@ if test "$enable_so" = "yes"; then case $host in *-ibm-aix*) HTTPD_LDFLAGS="$HTTPD_LDFLAGS -Wl,-uXML_Parse -Wl,-bE:$abs_builddir/server/httpd.exp" + SH_LDFLAGS="$SH_LDFLAGS \$(EXTRA_LDFLAGS) \$(EXTRA_LIBS)" UTIL_LDFLAGS="$UTIL_LDFLAGS -Wl,-uXML_Parse" ;; *beos) |