Received: by mail.netbsd.org (Postfix, from userid 605) id 2187484F44; Tue, 28 Feb 2023 14:51:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4EE6C84D6F for ; Tue, 28 Feb 2023 14:51:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id AKOJ1N50kMGI for ; Tue, 28 Feb 2023 14:51:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 898D084D3D for ; Tue, 28 Feb 2023 14:51:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 87456FA90; Tue, 28 Feb 2023 14:51:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1677595878238750" MIME-Version: 1.0 Date: Tue, 28 Feb 2023 14:51:18 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/lang/openjdk11 To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20230228145118.87456FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1677595878238750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Tue Feb 28 14:51:18 UTC 2023 Modified Files: pkgsrc/lang/openjdk11: Makefile Log Message: openjdk11: Fix per-pixel translucency * Per-pixel translucency problem is reported and analyzed by abs@. Thank you. * Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/lang/openjdk11/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1677595878238750 Content-Disposition: inline Content-Length: 1141 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/openjdk11/Makefile diff -u pkgsrc/lang/openjdk11/Makefile:1.49 pkgsrc/lang/openjdk11/Makefile:1.50 --- pkgsrc/lang/openjdk11/Makefile:1.49 Sat Feb 25 18:06:47 2023 +++ pkgsrc/lang/openjdk11/Makefile Tue Feb 28 14:51:18 2023 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.49 2023/02/25 18:06:47 ryoon Exp $ +# $NetBSD: Makefile,v 1.50 2023/02/28 14:51:18 ryoon Exp $ DISTNAME= jdk11u-${GITHUB_TAG:C/\+/-/} PKGNAME= openjdk11-1.${GITHUB_TAG:C/\+/./:C/jdk-([.0-9]+).*/\1/} +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GITHUB:=battleblow/} GITHUB_PROJECT= jdk11u @@ -59,8 +60,7 @@ CONFIGURE_ARGS+= --with-num-cores=${MAKE CONFIGURE_ARGS+= --disable-precompiled-headers CONFIGURE_ARGS+= --disable-ccache CONFIGURE_ARGS+= --disable-javac-server -# Do not include ${PREFIX} (/usr/pkg) for internal libraries. -#CONFIGURE_ARGS+= --with-extra-ldflags=${LDFLAGS:Q} +CONFIGURE_ARGS+= --with-extra-ldflags="${COMPILER_RPATH_FLAG}${X11BASE}/lib" CONFIGURE_ARGS+= --with-extra-cflags=${CFLAGS:Q} CONFIGURE_ARGS+= --with-extra-cxxflags=${CXXFLAGS:Q} CONFIGURE_ARGS+= --disable-warnings-as-errors --_----------=_1677595878238750--