[PATCH] java/openjdk6: propose option changes
Matthias Andree
mandree at FreeBSD.org
Thu Mar 3 06:57:02 UTC 2011
>Submitter-Id: current-users
>Originator: Matthias Andree
>Organization:
>Confidential: no
>Synopsis: [PATCH] java/openjdk6: propose option changes
>Severity: non-critical
>Priority: low
>Category: ports
>Class: change-request
>Release: FreeBSD 8.2-RELEASE amd64
>Environment:
System: FreeBSD apollo.emma.line.org 8.2-RELEASE FreeBSD 8.2-RELEASE #65: Fri Feb 25 01:47:50 CET 2011
>Description:
Proposed option changes:
- enable WEB option by default for the benefit of www/firefox
- check WEB and IPV6 options, if both are enabled, mark the port BROKEN
(to be removed as soon as the IcedTeaPlugin works with IPV6 enabled -
currently doesn't, at least on amd64).
Also see the relevant UPDATING entry for www/firefox (2010) - just
search for "Iced".
Port maintainer (java at FreeBSD.org) is cc'd.
Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:
--- openjdk6-b22.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/java/openjdk6/Makefile,v
retrieving revision 1.44
diff -u -u -r1.44 Makefile
--- Makefile 1 Mar 2011 19:21:59 -0000 1.44
+++ Makefile 3 Mar 2011 06:26:55 -0000
@@ -45,7 +45,7 @@
FASTDEBUG "Include fastdebug build" off \
IPV6 "Enable IPv6 support" off \
SOUND "Enable sound support" off \
- WEB "Enable the browser plugin and Java Web Start" off \
+ WEB "Enable the browser plugin and Java Web Start" on \
POLICY "Install the Unlimited Strength Policy Files" off \
TEST "Add support for running regression test" off
@@ -81,6 +81,9 @@
.if defined(WITH_IPV6)
CATEGORIES+= ipv6
+.if defined(WITH_WEB)
+BROKEN= WEB option does not work with IPV6 enabled
+.endif
.endif
# avoid ARCH in MAKEFLAGS, breaks build
--- openjdk6-b22.patch ends here ---
More information about the freebsd-java
mailing list