diff options
author | Robert Millan <rmh@debian.org> | 2005-01-31 07:37:55 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-01-31 11:33:14 +0000 |
commit | fb2e1bc0638d5a5d7ac552a79a71a996a5d604cc (patch) | |
tree | 67cc07045aabcaf32ffa2c18bbcc4fcc8d8c8efe /Configure | |
parent | 923e8b21a1a52adc9256138e9b2650ce78a10c4b (diff) | |
download | perl-fb2e1bc0638d5a5d7ac552a79a71a996a5d604cc.tar.gz |
[perl #33998] [PATCH] Support for GNU/kFreeBSD
From: "rmh@debian.org (via RT)" <perlbug-followup@perl.org>
Message-ID: <rt-3.0.11-33998-106860.15.2609323921089@perl.org>
p4raw-id: //depot/perl@23909
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Fri Jan 21 16:11:32 MET 2005 [metaconfig 3.0 PL70] +# Generated on Mon Jan 31 12:56:14 CET 2005 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -7105,7 +7105,7 @@ esac : for archive libraries. Thank you, Linux. case "$nm_so_opt" in '') case "$myuname" in - *linux*) + *linux*|gnu*) if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then nm_so_opt='--dynamic' fi @@ -7627,7 +7627,7 @@ EOM '') dflt="$dflt +vnocompatwarnings" ;; esac ;; - linux|irix*) dflt='-shared' ;; + linux|irix*|gnu*) dflt='-shared' ;; next) dflt='none' ;; solaris) dflt='-G' ;; sunos) dflt='-assert nodefinitions' ;; @@ -7674,7 +7674,7 @@ say "none". EOM case "$ccdlflags" in '') case "$osname" in - linux|hpux) dflt='-Wl,-E' ;; + linux|hpux|gnu*) dflt='-Wl,-E' ;; next|sunos) dflt='none' ;; *) dflt='none' ;; esac ;; @@ -7771,7 +7771,7 @@ true) dflt=libperl.5.$so # XXX How handle the --version stuff for MAB? ;; - linux*) # ld won't link with a bare -lperl otherwise. + linux*|gnu*) # ld won't link with a bare -lperl otherwise. dflt=libperl.$so ;; cygwin*) # ld links against an importlib @@ -7858,7 +7858,7 @@ if "$useshrplib"; then freebsd|netbsd|openbsd|interix) xxx="-Wl,-R$shrpdir" ;; - bsdos|linux|irix*|dec_osf) + bsdos|linux|irix*|dec_osf|gnu*) xxx="-Wl,-rpath,$shrpdir" ;; next) |