diff options
author | Spider Boardman <spider@orb.nashua.nh.us> | 1997-09-05 00:00:00 +0000 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-09-05 00:00:00 +0000 |
commit | 723e14d4dbe819218d0df2e3a5544f8868d098b3 (patch) | |
tree | d22ad0d36b096b97fcbbd3a3309cefeaa36888fb /hints | |
parent | 7b62b82bd65e5c25c8b1cad9ebeb185d3b61c873 (diff) | |
download | perl-723e14d4dbe819218d0df2e3a5544f8868d098b3.tar.gz |
Fix perl build on Digital UNIX after JDK installs libnet.so
Subject: [PATCH] Perl & JAVA co-existence
It turns out that the JDK on Digital UNIX installs a libnet.so
which gets in the way when building Perl. Back during 5.003_28,
I didn't do anything to remove libnet because there wasn't one,
but now there can be a libnet, and it's wrong. So, here's a
patch to the dec_osf hints file to skip libnet as well as some of
the others we're already ignoring.
p5p-msgid: 199709191826.OAA18040@Orb.Nashua.NH.US
Diffstat (limited to 'hints')
-rw-r--r-- | hints/dec_osf.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hints/dec_osf.sh b/hints/dec_osf.sh index 0ba4dad077..255505b087 100644 --- a/hints/dec_osf.sh +++ b/hints/dec_osf.sh @@ -117,6 +117,9 @@ libswanted="`echo $libswanted | sed -e 's/ dl / /'`" # libPW contains nothing useful for perl libswanted="`echo $libswanted | sed -e 's/ PW / /'`" +# libnet contains nothing useful for perl here, and doesn't work +libswanted="`echo $libswanted | sed -e 's/ net / /'`" + # libbsd contains nothing used by perl that is not already in libc libswanted="`echo $libswanted | sed -e 's/ bsd / /'`" @@ -171,6 +174,13 @@ unset _DEC_uname_r # # History: # +# perl5.004_04: +# +# 19-Sep-1997 Spider Boardman <spider@Orb.Nashua.NH.US> +# +# * libnet on Digital UNIX is for JAVA, not for sockets. +# +# # perl5.003_28: # # 22-Feb-1997 Jarkko Hietaniemi <jhi@iki.fi> |