Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 1881C7A46C for ; Tue, 19 Jul 2016 07:30:29 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id BC17985FAD; Tue, 19 Jul 2016 07:30:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4A1C985FAE for ; Tue, 19 Jul 2016 07:30:28 +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 rhNFdAlt0j35 for ; Tue, 19 Jul 2016 07:30:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CB87A85E75 for ; Tue, 19 Jul 2016 07:30:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C5A09FBB5; Tue, 19 Jul 2016 07:30:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_146891342797830" MIME-Version: 1.0 Date: Tue, 19 Jul 2016 07:30:27 +0000 From: "Matthias Scheler" Subject: CVS commit: pkgsrc/sysutils/cdrtools To: pkgsrc-changes@NetBSD.org Reply-To: tron@netbsd.org X-Mailer: log_accum Message-Id: <20160719073027.C5A09FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_146891342797830 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tron Date: Tue Jul 19 07:30:27 UTC 2016 Added Files: pkgsrc/sysutils/cdrtools: hacks.mk Log Message: Work around PR pkg/51257 by disabling cwrappers for Mac OS X 64bit. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/cdrtools/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_146891342797830 Content-Disposition: inline Content-Length: 520 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/sysutils/cdrtools/hacks.mk diff -u /dev/null pkgsrc/sysutils/cdrtools/hacks.mk:1.1 --- /dev/null Tue Jul 19 07:30:27 2016 +++ pkgsrc/sysutils/cdrtools/hacks.mk Tue Jul 19 07:30:27 2016 @@ -0,0 +1,12 @@ +# $NetBSD: hacks.mk,v 1.1 2016/07/19 07:30:27 tron Exp $ + +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "Darwin" && ${ABI} == "64" +# +# PR pkg/51257: "sysutils/cdrtools" fails to build under Mac OS X 64bit +# when cwrappers are used +# +USE_CWRAPPERS= no + +.endif --_----------=_146891342797830--