From owner-freebsd-java@FreeBSD.ORG Tue May 15 05:40:05 2012 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66D08106564A for ; Tue, 15 May 2012 05:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4C5BE8FC08 for ; Tue, 15 May 2012 05:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4F5e5u8001283 for ; Tue, 15 May 2012 05:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4F5e5Jb001282; Tue, 15 May 2012 05:40:05 GMT (envelope-from gnats) Date: Tue, 15 May 2012 05:40:05 GMT Message-Id: <201205150540.q4F5e5Jb001282@freefall.freebsd.org> To: freebsd-java@FreeBSD.org From: Bryan Drewery Cc: Subject: Re: ports/167903: [PATCH] java/openjdk6: Fix build failure in 8.3 jail running on 9+ system X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bryan Drewery List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2012 05:40:05 -0000 The following reply was made to PR ports/167903; it has been noted by GNATS. From: Bryan Drewery To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/167903: [PATCH] java/openjdk6: Fix build failure in 8.3 jail running on 9+ system Date: Tue, 15 May 2012 00:39:06 -0500 This is a multi-part message in MIME format. --------------060109060400070605040004 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit This should be LIB_DEPENDS+=. This patch is correct. Bryan --------------060109060400070605040004 Content-Type: text/plain; charset=windows-1252; name="patch-openjdk16-compat7.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-openjdk16-compat7.txt" --- Makefile.orig 2012-05-15 00:16:27.000000000 -0500 +++ Makefile 2012-05-15 00:34:09.000000000 -0500 @@ -78,6 +78,10 @@ .include +.if ${OSVERSION} >= 800105 +LIB_DEPENDS+= z.4:${PORTSDIR}/misc/compat7x +.endif + .if defined(WITH_IPV6) CATEGORIES+= ipv6 .endif --------------060109060400070605040004--