From: Wilfredo Sanchez Date: Mon, 26 Nov 2001 08:07:17 +0000 (+0000) Subject: Default to use -flat_namespace on Darwin expect for v1.3 and prior (including rhapsody). X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91fade918e75d8dab689be76e107d3db1ac79cb4;p=thirdparty%2Fapache%2Fhttpd.git Default to use -flat_namespace on Darwin expect for v1.3 and prior (including rhapsody). Submitted by: Sander Temme Reviewed by: Wilfredo Sanchez git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92175 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/Configure b/src/Configure index 99940f4d765..94289ce44f0 100755 --- a/src/Configure +++ b/src/Configure @@ -1163,11 +1163,11 @@ if [ "x$using_shlib" = "x1" ] ; then LD_SHLIB="cc" CFLAGS_SHLIB="" case "$PLAT" in - *-apple-darwin1.4 ) - LDFLAGS_SHLIB='$(EXTRA_LDFLAGS) -bundle -undefined suppress -flat_namespace' + *-apple-rhapsody* | *-apple-darwin1.[0-3]* ) + LDFLAGS_SHLIB='$(EXTRA_LDFLAGS) -bundle -undefined suppress' ;; * ) - LDFLAGS_SHLIB='$(EXTRA_LDFLAGS) -bundle -undefined suppress' + LDFLAGS_SHLIB='$(EXTRA_LDFLAGS) -bundle -undefined suppress -flat_namespace' ;; esac LDFLAGS_MOD_SHLIB=$LDFLAGS_SHLIB