diff options
author | Alexey Zelkin <phantom@FreeBSD.org> | 2005-01-20 08:41:13 +0000 |
---|---|---|
committer | Alexey Zelkin <phantom@FreeBSD.org> | 2005-01-20 08:41:13 +0000 |
commit | cfb6727090ff154db26b1f99a9b09ac6b1aed38b (patch) | |
tree | 4bede44b6a6e39069f8cba85d1014e62523f36e2 /java/jdk16/files/disable-ipv6.patch | |
parent | Update to 0.92, reset maintainer to perl. (diff) |
Please welcome new participant of FreeBSD ports tree and Java ports
family -- first public patchset of native Sun JDK 1.5.0 port.
Most valuable addition of this patchset is native amd64 support.
And special thanks goes to Daniel Seuffert <ds@freeBSD.org> for
making it possible by providing amd64 hardware.
This patchset was tested on following configurations: i386/4.10,
i386/5.3, amd64/5.3. 5.3-RELEASE support is quite strong and
shown no huge visible problems over last week.
But even mentioning above note, keep in mind -- THIS IS ALPHA
PATCHSET and suitable for testers/developers ONLY!
Known issues are including (but for sure not limited to):
. Browser plugin support is missing
. JVMTI, JDWP and JMX are not tested yet
. FreeBSD i386/4.10 support is suffering from hidden memory
allocation failres (ideas and patches are welcome)
NOTE ABOUT BOOTSTRAPING: It's possible to bootstrap jdk 1.5.0 using
jdk 1.4.2 (either native or linux one). There's no need to have
java/linux_jdk15 installed and working.
Supported by: FreeBSD Foundation
Notes
Notes:
svn path=/head/; revision=126909
Diffstat (limited to 'java/jdk16/files/disable-ipv6.patch')
-rw-r--r-- | java/jdk16/files/disable-ipv6.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/java/jdk16/files/disable-ipv6.patch b/java/jdk16/files/disable-ipv6.patch deleted file mode 100644 index 00ecbef516f5..000000000000 --- a/java/jdk16/files/disable-ipv6.patch +++ /dev/null @@ -1,15 +0,0 @@ -$FreeBSD$ - ---- ../../j2se/src/solaris/native/java/net/net_util_md.c.orig Tue Jan 27 17:31:03 2004 -+++ ../../j2se/src/solaris/native/java/net/net_util_md.c Tue Jan 27 17:31:38 2004 -@@ -166,6 +166,10 @@ - int fd; - void *ipv6_fn; - -+#ifdef __FreeBSD__ -+ return JNI_FALSE; -+#endif -+ - fd = JVM_Socket(AF_INET6, SOCK_STREAM, 0) ; - if (fd < 0) { - /* |