diff options
author | Anton Berezin <tobez@tobez.org> | 1999-01-21 18:07:28 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-21 16:11:46 +0000 |
commit | a10dc3f494965a782b5e7eb467cb480dd665411d (patch) | |
tree | e56c188ef7720339046bc9f3b1a49e506a5f0e96 /hints/freebsd.sh | |
parent | 4651cd973dc1927af3b5d1c108970bc03fc01bb1 (diff) | |
download | perl-a10dc3f494965a782b5e7eb467cb480dd665411d.tar.gz |
hints/freebsd.sh - reflect the birth of version 4.0
To: perl5-porters@perl.org
Message-ID: <86emood2yn.fsf@lion.plab.ku.dk>
p4raw-id: //depot/cfgperl@2669
Diffstat (limited to 'hints/freebsd.sh')
-rw-r--r-- | hints/freebsd.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hints/freebsd.sh b/hints/freebsd.sh index 96df283579..e341de4107 100644 --- a/hints/freebsd.sh +++ b/hints/freebsd.sh @@ -99,7 +99,8 @@ esac case "$osvers" in 0.*|1.0*) ;; -3.0*) objformat=`/usr/bin/objformat` +3.*|4.0*) + objformat=`/usr/bin/objformat` if [ x$objformat = xelf ]; then libpth="/usr/lib /usr/local/lib" glibpth="/usr/lib /usr/local/lib" @@ -145,7 +146,7 @@ cat > UU/usethreads.cbu <<'EOCBU' case "$usethreads" in $define|true|[yY]*) case "$osvers" in - [34].*) ldflags="-pthread $ldflags" + 3.*|4.0*) ldflags="-pthread $ldflags" ;; 2.2*) if [ ! -r /usr/lib/libc_r ]; then cat <<'EOM' >&4 |