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-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f49ffb08bada86c36fcfa02e6f5ee862fe3d5ec3;p=apache 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 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)