Fix perl build on Digital UNIX after JDK installs libnet.so
Spider Boardman [Fri, 5 Sep 1997 00:00:00 +0000 (00:00 +0000)]
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

hints/dec_osf.sh

index 0ba4dad..255505b 100644 (file)
@@ -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>