Received: by mail.netbsd.org (Postfix, from userid 605) id 1F9A584DA6; Wed, 15 Apr 2020 22:54:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9C46884DA0 for ; Wed, 15 Apr 2020 22:54:39 +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 Y-6SSdu9mC0l for ; Wed, 15 Apr 2020 22:54:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0332D84D76 for ; Wed, 15 Apr 2020 22:54:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F2909FB27; Wed, 15 Apr 2020 22:54:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158699127888480" MIME-Version: 1.0 Date: Wed, 15 Apr 2020 22:54:38 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/emulators/BasiliskII To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200415225438.F2909FB27@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. --_----------=_158699127888480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Wed Apr 15 22:54:38 UTC 2020 Modified Files: pkgsrc/emulators/BasiliskII: Makefile Log Message: Remove c++03 enforcement. Drop semaphore.h on !OSX, it breaks the use in system headers. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/emulators/BasiliskII/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158699127888480 Content-Disposition: inline Content-Length: 994 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/BasiliskII/Makefile diff -u pkgsrc/emulators/BasiliskII/Makefile:1.43 pkgsrc/emulators/BasiliskII/Makefile:1.44 --- pkgsrc/emulators/BasiliskII/Makefile:1.43 Tue Mar 10 22:09:45 2020 +++ pkgsrc/emulators/BasiliskII/Makefile Wed Apr 15 22:54:38 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2020/03/10 22:09:45 wiz Exp $ +# $NetBSD: Makefile,v 1.44 2020/04/15 22:54:38 joerg Exp $ DISTNAME= BasiliskII-20190405 PKGREVISION= 2 @@ -16,7 +16,7 @@ WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${G CONFIGURE_DIRS= src/Unix BUILD_DIRS= src/Unix -USE_LANGUAGES= c c++03 +USE_LANGUAGES= c c++ USE_TOOLS+= aclocal autoheader autoconf automake USE_TOOLS+= msgfmt msgmerge xgettext USE_TOOLS+= pkg-config gmake @@ -35,6 +35,9 @@ CONFIGURE_ARGS+= --without-esd .if ${OPSYS} == "Darwin" CONFIGURE_ARGS+= --enable-macosx-gui CONFIGURE_ARGS+= --enable-macosx-sound +.else +post-extract: + ${RM} ${WRKSRC}/src/Unix/semaphore.h .endif .include "options.mk" --_----------=_158699127888480--