Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id E6D4C1A9239 for ; Sun, 14 Nov 2021 08:50:05 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 23D1684E58; Sun, 14 Nov 2021 08:50:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5E9B384DA9 for ; Sun, 14 Nov 2021 08:50:04 +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 R5Eet_eyJ9QE for ; Sun, 14 Nov 2021 08:50:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AEE9E84DA4 for ; Sun, 14 Nov 2021 08:50:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ABA26FAEC; Sun, 14 Nov 2021 08:50:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163687980310870" MIME-Version: 1.0 Date: Sun, 14 Nov 2021 08:50:03 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/emulators/hercules4sdl To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20211114085003.ABA26FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163687980310870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Sun Nov 14 08:50:03 UTC 2021 Modified Files: pkgsrc/emulators/hercules4sdl: Makefile Log Message: hercules4sdl: Fix syntax error. OPSYS can't be tested against until after bsd.prefs.mk has been included, but using OPSYSVARS is better anyway. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/emulators/hercules4sdl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163687980310870 Content-Disposition: inline Content-Length: 1051 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/hercules4sdl/Makefile diff -u pkgsrc/emulators/hercules4sdl/Makefile:1.2 pkgsrc/emulators/hercules4sdl/Makefile:1.3 --- pkgsrc/emulators/hercules4sdl/Makefile:1.2 Sat Nov 13 12:44:39 2021 +++ pkgsrc/emulators/hercules4sdl/Makefile Sun Nov 14 08:50:03 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2021/11/13 12:44:39 rhialto Exp $ +# $NetBSD: Makefile,v 1.3 2021/11/14 08:50:03 jperkin Exp $ PKGNAME= hercules4sdl-4.3 DISTNAME= Release_${PKGVERSION_NOREV} @@ -33,12 +33,10 @@ SUBST_FILES.prefix= hercules.cnf SUBST_SED.prefix= -e 's,/usr/local,${PREFIX},g' CONFIGURE_ARGS+= --enable-extpkgs=${PREFIX}/lib/hercules4sdl -.if ${OPSYS} == "Darwin" # There is a configure check that uses C++ to check if the compiler is # GNU, and on Darwin it thinks GNU C++ is needed to create shared # libraries, even though no actual C++ is used. Or something. -CONFIGURE_ENV+= ac_cv_cxx_compiler_gnu=yes -.endif +CONFIGURE_ENV.Darwin+= ac_cv_cxx_compiler_gnu=yes INSTALLATION_DIRS+= share/examples/hercules --_----------=_163687980310870--