From: Rainer Jung Date: Mon, 7 Jun 2010 19:32:04 +0000 (+0000) Subject: Building DSOs by default should set MOD_SO_ENABLED. X-Git-Tag: 2.3.6~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4797c8193e8956b0c49bdb572a4f222c1e9a1d3f;p=thirdparty%2Fapache%2Fhttpd.git Building DSOs by default should set MOD_SO_ENABLED. Without this patch apxs doesn't recognize we have DSO support. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@952384 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 9ee5b5b58b0..252a3599cf7 100644 --- a/configure.in +++ b/configure.in @@ -584,7 +584,7 @@ fi dnl enable_so tells us if *any* modules can be built as DSOs -if test "$enable_so" = "yes"; then +if test "$enable_so" = "yes" -o "$enable_so" = "static"; then case $host in *-ibm-aix*) APR_ADDTO(HTTPD_LDFLAGS, [-Wl,-uXML_Parse -Wl,-bE:$abs_builddir/server/httpd.exp])