Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=zPmYTbHh; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=PL2ytr/2 Received: by mail.netbsd.org (Postfix, from userid 605) id AE7C984EF9; Fri, 10 May 2024 22:52:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715381569; bh=jOkSSoxQvvC0CxS45JHdPosCZAKfEjst+H5PNomAYsc=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=zPmYTbHhKuvMt+xvxNnInJfY5XfVzIaBX65fOGOYZDmf+kqKw9dFGgQvq7FrXIj32 8ibueP+HRK8RC9NitSFVvlQ+7rmQXO/K0fNzqHiuPKKLOf7iHYVpyHFaq0t1jdG5ya 6yx4lZlb/m76cEEyxkiJ5ZMo3b4qbpFBfC4jZcYA= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9DE3A84EED for ; Fri, 10 May 2024 22:52:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Ny40P-GXbUcX for ; Fri, 10 May 2024 22:52:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DE5B584E6F for ; Fri, 10 May 2024 22:52:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715381568; bh=jOkSSoxQvvC0CxS45JHdPosCZAKfEjst+H5PNomAYsc=; h=Date:From:Subject:To:Reply-To; b=PL2ytr/2nQcJmCCLdgWnHZmdYbfaD0JIKjRPBMEzpCG0uutB+YeStijOtvHwUIpPs ca2mtur7zHPbUfx/Y9Bw2BqIEvSWy98cYD8sYvgrROypcHiC5lbkQdN9E17+EmB4zp 13Wj9MxJlCgKY4zKV+17nXNoEI8u8A0HPb7BOqy8= Received: by cvs.NetBSD.org (Postfix, from userid 500) id CCF07FA2C; Fri, 10 May 2024 22:52:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_17153815673330" MIME-Version: 1.0 Date: Fri, 10 May 2024 22:52:47 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/lang/openjdk8 To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20240510225247.CCF07FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_17153815673330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Fri May 10 22:52:47 UTC 2024 Modified Files: pkgsrc/lang/openjdk8: Makefile Log Message: lang/openjdk8: Set IGNORE_CCCACHE= openjdk has a scheme to figure out if the compiler is gcc or clang. While it tries to see through ccache, using PKGSRC_COMPILER=ccache gcc fails. Set IGNORE_CCCACHE=yes as documented in mk/compiler/ccache.mk to avoid using ccache, until someone fixes this better. To generate a diff of this commit: cvs rdiff -u -r1.126 -r1.127 pkgsrc/lang/openjdk8/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_17153815673330 Content-Disposition: inline Content-Length: 1017 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/openjdk8/Makefile diff -u pkgsrc/lang/openjdk8/Makefile:1.126 pkgsrc/lang/openjdk8/Makefile:1.127 --- pkgsrc/lang/openjdk8/Makefile:1.126 Mon Mar 18 15:42:34 2024 +++ pkgsrc/lang/openjdk8/Makefile Fri May 10 22:52:47 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.126 2024/03/18 15:42:34 ryoon Exp $ +# $NetBSD: Makefile,v 1.127 2024/05/10 22:52:47 gdt Exp $ DISTNAME= jdk8u-${GITHUB_TAG} PKGNAME= openjdk8-1.8.${GITHUB_TAG:C/.*u([0-9]+).*/\1/} @@ -36,6 +36,9 @@ CONFIG_GUESS_OVERRIDE+= common/autoconf/ CONFIG_SUB_OVERRIDE+= common/autoconf/build-aux/autoconf-config.sub CONFIG_GUESS_OVERRIDE+= common/autoconf/build-aux/autoconf-config.guess USE_LANGUAGES= c c++ +# openjdk8's build system objects to wrapper which invokes ccache, +# when trying to decide if it is gcc or clang, resulting in failure. +IGNORE_CCACHE= yes USE_TOOLS+= bash gmake pax pkg-config unzip:run zip:run UNLIMIT_RESOURCES= datasize stacksize virtualsize cputime PLIST_SRC+= ${PLIST_SRC_DFLT} --_----------=_17153815673330--