From owner-freebsd-java@FreeBSD.ORG Thu Mar 3 06:57:02 2011 Return-Path: Delivered-To: java@FreeBSD.org Received: from apollo.emma.line.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id 0C1941065670; Thu, 3 Mar 2011 06:57:02 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mandree by apollo.emma.line.org with local (Exim 4.74 (FreeBSD)) (envelope-from ) id 1Pv2RB-0001Kk-PO; Thu, 03 Mar 2011 07:55:01 +0100 To: FreeBSD-gnats-submit@freebsd.org From: Matthias Andree X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: Date: Thu, 03 Mar 2011 07:55:01 +0100 Cc: java@FreeBSD.org Subject: [PATCH] java/openjdk6: propose option changes X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Mar 2011 06:57:02 -0000 >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@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 ---