Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=TYMhPOAS; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=j763K0kr Received: by mail.netbsd.org (Postfix, from userid 605) id 2D99D84D50; Mon, 6 May 2024 14:37:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715006236; bh=aG15kshEONrjg3aG1bGPF6pq144kJUjzrkGzeuSz4OM=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=TYMhPOAShl6Be5i9n+kgG3Cc+AgyaqYsvZF5p+3Pglh0z3Je2SrP9CC6kuVGx6KL6 VNHkksa2wbQhcgTCC2IY9keV6DST6eahhhYB7giMHlYakQpKwKsUfTlmlgmSFpqNJx iszDAzzW/0Aco4qWn36zjujfXAWsWXu3t4rcCJts= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1CA1F84D2D for ; Mon, 6 May 2024 14:37:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 Gu49trM4nzOM for ; Mon, 6 May 2024 14:37:14 +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 522FC84CF3 for ; Mon, 6 May 2024 14:37:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715006234; bh=aG15kshEONrjg3aG1bGPF6pq144kJUjzrkGzeuSz4OM=; h=Date:From:Subject:To:Reply-To; b=j763K0krofpMF35Gg79RvYzx16Nt9ABkC0Tzt8UTFp5+j0+uCDk9TbThqhLHq24cL nASHc1c4gDsAgvsbAbFaSAxXAMY39AVTWwS/AEntAf9jWzPapCi9DY0Ebn2VmOvAEp ssXWrfAXg3cbaJW434JGTyd7fY33m3EI710o1ox4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3E54BFA2C; Mon, 6 May 2024 14:37:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715006234133190" MIME-Version: 1.0 Date: Mon, 6 May 2024 14:37:14 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/abbayedesmorts To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20240506143714.3E54BFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715006234133190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon May 6 14:37:14 UTC 2024 Modified Files: pkgsrc/games/abbayedesmorts: Makefile Log Message: abbayedesmorts: Assumes compiler default to c99 To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/games/abbayedesmorts/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715006234133190 Content-Disposition: inline Content-Length: 757 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/abbayedesmorts/Makefile diff -u pkgsrc/games/abbayedesmorts/Makefile:1.10 pkgsrc/games/abbayedesmorts/Makefile:1.11 --- pkgsrc/games/abbayedesmorts/Makefile:1.10 Sat Apr 6 08:05:22 2024 +++ pkgsrc/games/abbayedesmorts/Makefile Mon May 6 14:37:14 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2024/04/06 08:05:22 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2024/05/06 14:37:14 nia Exp $ DISTNAME= abbayedesmorts-gpl-2.0.2 PKGNAME= ${DISTNAME:S/-gpl//1} @@ -15,6 +15,9 @@ LICENSE= gnu-gpl-v3 USE_TOOLS+= gmake +# src/drawing.c:10: error: 'for' loop initial declaration used outside C99 mode +FORCE_C_STD= gnu99 + INSTALLATION_DIRS+= bin INSTALLATION_DIRS+= share/applications INSTALLATION_DIRS+= share/pixmaps --_----------=_1715006234133190--