Author: jfrederic.clere(a)jboss.com
Date: 2010-03-09 05:11:41 -0500 (Tue, 09 Mar 2010)
New Revision: 2621
Added:
trunk/build/patch/httpd-2.2.15.patch
Log:
Missing patch for macosx.
Added: trunk/build/patch/httpd-2.2.15.patch
===================================================================
--- trunk/build/patch/httpd-2.2.15.patch (rev 0)
+++ trunk/build/patch/httpd-2.2.15.patch 2010-03-09 10:11:41 UTC (rev 2621)
@@ -0,0 +1,17 @@
+--- modules/ssl/config.m4 (revision 793871)
++++ modules/ssl/config.m4 (working copy)
+@@ -120,7 +120,13 @@
+ if test "x$enable_ssl" = "xshared"; then
+ # The only symbol which needs to be exported is the module
+ # structure, so ask libtool to hide everything else:
+- APR_ADDTO(MOD_SSL_LDADD, [-export-symbols-regex ssl_module])
++ case $host in
++ *-apple-darwin*)
++ ;;
++ *)
++ APR_ADDTO(MOD_SSL_LDADD, [-export-symbols-regex ssl_module])
++ ;;
++ esac
+ fi
+ ])
+