You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2010/06/07 21:32:04 UTC

svn commit: r952384 - /httpd/httpd/trunk/configure.in

Author: rjung
Date: Mon Jun  7 19:32:04 2010
New Revision: 952384

URL: http://svn.apache.org/viewvc?rev=952384&view=rev
Log:
Building DSOs by default should set MOD_SO_ENABLED.

Without this patch apxs doesn't recognize we have DSO support.

Modified:
    httpd/httpd/trunk/configure.in

Modified: httpd/httpd/trunk/configure.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/configure.in?rev=952384&r1=952383&r2=952384&view=diff
==============================================================================
--- httpd/httpd/trunk/configure.in (original)
+++ httpd/httpd/trunk/configure.in Mon Jun  7 19:32:04 2010
@@ -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])