From 91fade918e75d8dab689be76e107d3db1ac79cb4 Mon Sep 17 00:00:00 2001 From: Wilfredo Sanchez Date: Mon, 26 Nov 2001 08:07:17 +0000 Subject: [PATCH] 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 --- src/Configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.47.2