]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Default to use -flat_namespace on Darwin expect for v1.3 and prior (including rhapsody).
authorWilfredo Sanchez <wsanchez@apache.org>
Mon, 26 Nov 2001 08:07:17 +0000 (08:07 +0000)
committerWilfredo Sanchez <wsanchez@apache.org>
Mon, 26 Nov 2001 08:07:17 +0000 (08:07 +0000)
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

index 99940f4d765cc8e98030a65443a068f4271c38a8..94289ce44f0b861d9ed976bc33e1cd766b8c2432 100755 (executable)
@@ -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