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
# 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 / /'`"
#
# 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>