Received: by mail.netbsd.org (Postfix, from userid 605) id 1E5E484DA6; Thu, 20 Feb 2020 21:01:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9BAB984D9D for ; Thu, 20 Feb 2020 21:01:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id fMNsYpkh0jNk for ; Thu, 20 Feb 2020 21:01:10 +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 F274A84CE3 for ; Thu, 20 Feb 2020 21:01:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EB23FFBF4; Thu, 20 Feb 2020 21:01:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1582232469224410" MIME-Version: 1.0 Date: Thu, 20 Feb 2020 21:01:09 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/security/heimdal To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200220210109.EB23FFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1582232469224410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Thu Feb 20 21:01:09 UTC 2020 Modified Files: pkgsrc/security/heimdal: Makefile Log Message: security/heimdal: add back MAKE_JOBS_SAFE=no To generate a diff of this commit: cvs rdiff -u -r1.137 -r1.138 pkgsrc/security/heimdal/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1582232469224410 Content-Disposition: inline Content-Length: 963 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/heimdal/Makefile diff -u pkgsrc/security/heimdal/Makefile:1.137 pkgsrc/security/heimdal/Makefile:1.138 --- pkgsrc/security/heimdal/Makefile:1.137 Thu Feb 13 21:12:21 2020 +++ pkgsrc/security/heimdal/Makefile Thu Feb 20 21:01:09 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.137 2020/02/13 21:12:21 rillig Exp $ +# $NetBSD: Makefile,v 1.138 2020/02/20 21:01:09 rillig Exp $ DISTNAME= heimdal-1.5.3 PKGREVISION= 22 @@ -21,7 +21,14 @@ USE_TOOLS+= bison flex:run PKGCONFIG_OVERRIDE+= tools/heimdal-gssapi.pc.in MAKE_ENV+= INSTALL_CATPAGES=no -.include "../../mk/bsd.prefs.mk" +# heimdal-1.5.3 on NetBSD 8.1 fails with: +# cc [...] -c hxtool.c +# In file included from hxtool.c:34:0: +# hx_locl.h:66:23: fatal error: ocsp_asn1.h: No such file or directory +# +# https://mail-index.netbsd.org/pkgsrc-users/2020/02/20/msg030473.html +MAKE_JOBS_SAFE= no + .include "options.mk" HEIMDAL_HDB_DIR= ${VARBASE}/heimdal --_----------=_1582232469224410--