Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2F5A584D44 for ; Sun, 9 Jul 2023 22:16:18 +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 0bB3pumv8Zdg for ; Sun, 9 Jul 2023 22:16:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B860A84CFC for ; Sun, 9 Jul 2023 22:16:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B51ADFBDB; Sun, 9 Jul 2023 22:16:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688940977288250" MIME-Version: 1.0 Date: Sun, 9 Jul 2023 22:16:17 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/nanosaur To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230709221617.B51ADFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688940977288250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 9 22:16:17 UTC 2023 Modified Files: pkgsrc/games/nanosaur: Makefile Log Message: nanosaur: require at least gcc 5 for __has_include To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/games/nanosaur/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688940977288250 Content-Disposition: inline Content-Length: 647 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/nanosaur/Makefile diff -u pkgsrc/games/nanosaur/Makefile:1.3 pkgsrc/games/nanosaur/Makefile:1.4 --- pkgsrc/games/nanosaur/Makefile:1.3 Sat May 6 19:09:26 2023 +++ pkgsrc/games/nanosaur/Makefile Sun Jul 9 22:16:17 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2023/05/06 19:09:26 ryoon Exp $ +# $NetBSD: Makefile,v 1.4 2023/07/09 22:16:17 nia Exp $ DISTNAME= nanosaur-1.4.4 PKGREVISION= 2 @@ -20,6 +20,9 @@ USE_CMAKE= yes USE_LANGUAGES= c c++ USE_TOOLS+= pax pkg-config +# __has_include +GCC_REQD+= 5 + INSTALLATION_DIRS+= bin INSTALLATION_DIRS+= libexec INSTALLATION_DIRS+= share/nanosaur/Data --_----------=_1688940977288250--