Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 90352 invoked from network); 7 Jun 2010 19:32:26 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 7 Jun 2010 19:32:26 -0000 Received: (qmail 11140 invoked by uid 500); 7 Jun 2010 19:32:26 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 11086 invoked by uid 500); 7 Jun 2010 19:32:25 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 11079 invoked by uid 99); 7 Jun 2010 19:32:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Jun 2010 19:32:25 +0000 X-ASF-Spam-Status: No, hits=-1636.4 required=10.0 tests=ALL_TRUSTED,AWL,URIBL_BLACK X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Jun 2010 19:32:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C933623888EA; Mon, 7 Jun 2010 19:32:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r952384 - /httpd/httpd/trunk/configure.in Date: Mon, 07 Jun 2010 19:32:04 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100607193204.C933623888EA@eris.apache.org> 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])