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 B822C7A490 for ; Thu, 21 Jul 2016 19:38:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 69ED685EC7; Thu, 21 Jul 2016 19:38:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EA5AB85ECC for ; Thu, 21 Jul 2016 19:38:31 +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 EJyiUGKx72ct for ; Thu, 21 Jul 2016 19:38:31 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 82E3B85EC7 for ; Thu, 21 Jul 2016 19:38:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 73F87FBB5; Thu, 21 Jul 2016 19:38:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1469129911287380" MIME-Version: 1.0 Date: Thu, 21 Jul 2016 19:38:31 +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: <20160721193831.73F87FBB5@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. --_----------=_1469129911287380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tron Date: Thu Jul 21 19:38:31 UTC 2016 Added Files: pkgsrc/sysutils/cdrtools: hacks.mk Log Message: Second attempt for a work around for PR pkg/51257. This time it actually seems to work. To generate a diff of this commit: cvs rdiff -u -r0 -r1.4 pkgsrc/sysutils/cdrtools/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1469129911287380 Content-Disposition: inline Content-Length: 589 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.4 --- /dev/null Thu Jul 21 19:38:31 2016 +++ pkgsrc/sysutils/cdrtools/hacks.mk Thu Jul 21 19:38:31 2016 @@ -0,0 +1,13 @@ +# $NetBSD: hacks.mk,v 1.4 2016/07/21 19:38:31 tron Exp $ + +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "Darwin" && defined(ABI) && ${ABI} == "64" && \ + ${USE_CWRAPPERS:tl} != "no" +# +# PR pkg/51257: "sysutils/cdrtools" fails to build under Mac OS X 64bit +# when cwrappers are used +# +LDFLAGS+= -L${PREFIX}/lib -lintl + +.endif --_----------=_1469129911287380--