Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A5FB18500F for ; Tue, 27 Jun 2023 20:40:35 +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 o2SJkhq8QuYh for ; Tue, 27 Jun 2023 20:40:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F109A84EDD for ; Tue, 27 Jun 2023 20:40:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E1198FA89; Tue, 27 Jun 2023 20:40:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1687898434290170" MIME-Version: 1.0 Date: Tue, 27 Jun 2023 20:40:34 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/sysutils/cdrtools To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20230627204034.E1198FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1687898434290170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Tue Jun 27 20:40:34 UTC 2023 Modified Files: pkgsrc/sysutils/cdrtools: hacks.mk Log Message: cdrtools: remove ABI check on Darwin hack The ABI==64 check is redundant, since the problem that is being worked around is not specific to the exact ABI. This fixes the build on systems such as mine, where the bootstrap is not run with "--abi 64". Update PR pkg/51257 To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/sysutils/cdrtools/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1687898434290170 Content-Disposition: inline Content-Length: 718 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/cdrtools/hacks.mk diff -u pkgsrc/sysutils/cdrtools/hacks.mk:1.5 pkgsrc/sysutils/cdrtools/hacks.mk:1.6 --- pkgsrc/sysutils/cdrtools/hacks.mk:1.5 Fri Oct 7 13:22:10 2016 +++ pkgsrc/sysutils/cdrtools/hacks.mk Tue Jun 27 20:40:34 2023 @@ -1,9 +1,8 @@ -# $NetBSD: hacks.mk,v 1.5 2016/10/07 13:22:10 joerg Exp $ +# $NetBSD: hacks.mk,v 1.6 2023/06/27 20:40:34 bsiegert Exp $ .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == "Darwin" && defined(ABI) && ${ABI} == "64" && \ - ${_USE_CWRAPPERS} == "yes" +.if ${OPSYS} == "Darwin" && ${_USE_CWRAPPERS} == "yes" # # PR pkg/51257: "sysutils/cdrtools" fails to build under Mac OS X 64bit # when cwrappers are used --_----------=_1687898434290170--