From: Jarkko Hietaniemi Date: Wed, 14 May 2003 05:11:49 +0000 (+0000) Subject: More Panther moves. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=986530eaa5450b2dbf5535c366851b0170ca3a73;p=p5sagit%2Fp5-mst-13.2.git More Panther moves. p4raw-id: //depot/perl@19522 --- diff --git a/Makefile.SH b/Makefile.SH index e97fc65..51db4ad 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -547,12 +547,17 @@ miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT) !NO!SUBS! ;; darwin*) - case "$ldflags" in - *"-flat_namespace"*) ;; - *) # to allow opmini.o to override stuff in libperl.dylib + case "$osvers" in + [1-6].*) ;; + *) case "$ldflags" in + *"-flat_namespace"*) ;; + *) # to allow opmini.o to override stuff in libperl.dylib $spitshell >>Makefile <>Makefile <<'!NO!SUBS!' miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT) diff --git a/hints/darwin.sh b/hints/darwin.sh index a5e2c26..b50ad77 100644 --- a/hints/darwin.sh +++ b/hints/darwin.sh @@ -118,20 +118,25 @@ dlext='bundle'; dlsrc='dl_dyld.xs'; usedl='define'; cccdlflags=' '; # space, not empty, because otherwise we get -fpic # Perl bundles do not expect two-level namespace, added in Darwin 1.4. +# But starting from perl 5.8.1/Darwin 7 the default is the two-level. case "$osvers" in 1.[0-3].*) - lddlflags="${ldflags} -bundle -undefined suppress" - ;; -1.*|[2-6].*) - ldflags="${ldflags} -flat_namespace" - lddlflags="${ldflags} -bundle -undefined suppress" - ;; -*) - lddlflags="${ldflags} -bundle -undefined dynamic_lookup" - case "$ld" in - *MACOSX_DEVELOPMENT_TARGET*) ;; - *) ld="MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;; - esac + lddlflags="${ldflags} -bundle -undefined suppress" + ;; +1.*) + ldflags="${ldflags} -flat_namespace" + lddlflags="${ldflags} -bundle -undefined suppress" + ;; +[2-6].*) + ldflags="${ldflags} -flat_namespace" + lddlflags="${ldflags} -bundle -undefined suppress" + ;; +*) lddlflags="${ldflags} -bundle -undefined dynamic_lookup" + case "$ld" in + *MACOSX_DEVELOPMENT_TARGET*) ;; + *) ld="MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;; + esac + ;; esac ldlibpthname='DYLD_LIBRARY_PATH'; useshrplib='true'; @@ -140,7 +145,7 @@ cat > UU/archname.cbu <<'EOCBU' # This script UU/archname.cbu will get 'called-back' by Configure # after it has otherwise determined the architecture name. case "$ldflags" in -*"-flat_namespace"*) ;; # Backward compat. +*"-flat_namespace"*) ;; # Backward compat, be flat. # If we are using two-level namespace, we will munge the archname to show it. *) archname="${archname}-2level" ;; esac