Received: by mail.netbsd.org (Postfix, from userid 605) id DFCBA84E90; Sat, 24 Sep 2022 08:31:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1943684E83 for ; Sat, 24 Sep 2022 08:31:25 +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 MlgLoufZXG_W for ; Sat, 24 Sep 2022 08:31:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 16F3E84D58 for ; Sat, 24 Sep 2022 08:31:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0B67FFA90; Sat, 24 Sep 2022 08:31:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1664008284200730" MIME-Version: 1.0 Date: Sat, 24 Sep 2022 08:31:24 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/warzone2100 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220924083124.0B67FFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1664008284200730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Sep 24 08:31:23 UTC 2022 Modified Files: pkgsrc/games/warzone2100: Makefile Log Message: warzone2100: Needs gnu standard variant to get alloca builtin To generate a diff of this commit: cvs rdiff -u -r1.63 -r1.64 pkgsrc/games/warzone2100/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1664008284200730 Content-Disposition: inline Content-Length: 711 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/warzone2100/Makefile diff -u pkgsrc/games/warzone2100/Makefile:1.63 pkgsrc/games/warzone2100/Makefile:1.64 --- pkgsrc/games/warzone2100/Makefile:1.63 Sun Sep 11 12:51:49 2022 +++ pkgsrc/games/warzone2100/Makefile Sat Sep 24 08:31:23 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.63 2022/09/11 12:51:49 wiz Exp $ +# $NetBSD: Makefile,v 1.64 2022/09/24 08:31:23 nia Exp $ DISTNAME= warzone2100_src PKGNAME= warzone2100-4.2.7 @@ -44,6 +44,9 @@ LDFLAGS.DragonFly+= -lX11 -lintl BUILDLINK_TRANSFORM+= rm:-Werror +# Needs gnu standard variant to get alloca builtin. +BUILDLINK_TRANSFORM+= opt:-std=c++11:-std=gnu++11 + pre-configure: ${RUN}${MKDIR} ${WRKSRC}/build --_----------=_1664008284200730--