From: Jeff Trawick Date: Fri, 21 Dec 2001 16:18:02 +0000 (+0000) Subject: On AIX, DSOs which reference external libraries need those libraries X-Git-Tag: 2.0.30~152 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd61627d3dbe95bc766a71084be96a89d803a6a2;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/configure.in b/configure.in index 6057a56641b..1cccd442d38 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)