From f49ffb08bada86c36fcfa02e6f5ee862fe3d5ec3 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Fri, 21 Dec 2001 16:18:02 +0000 Subject: [PATCH] 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 --- configure.in | 1 + 1 file changed, 1 insertion(+) 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) -- 2.50.1