Received: by mail.netbsd.org (Postfix, from userid 605) id 03DCB84DE3; Tue, 10 Apr 2018 03:39:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E971484CFB for ; Tue, 10 Apr 2018 03:39: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 2b-b5-Tnf0cy for ; Tue, 10 Apr 2018 03:39:18 +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 2392D84CD5 for ; Tue, 10 Apr 2018 03:39:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 10508FBEC; Tue, 10 Apr 2018 03:39:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1523331558206670" MIME-Version: 1.0 Date: Tue, 10 Apr 2018 03:39:18 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/games/xmahjongg To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20180410033918.10508FBEC@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. --_----------=_1523331558206670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Tue Apr 10 03:39:18 UTC 2018 Modified Files: pkgsrc/games/xmahjongg: Makefile Log Message: xmahjongg: force c++03. Fixes build issue (GCC 6.4) permstr.cc: In function 'bool operator==(PermString, const char*)': permstr.cc:163:26: error: no matching function for call to 'operator==(PermString&, bool)' if (operator==(a, false) || !b) ^ In file included from permstr.cc:19:0: ../include/lcdf/permstr.hh:113:1: note: candidate: bool operator==(PermString, PermString) operator==(PermString a, PermString b) ^~~~~~~~ To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/games/xmahjongg/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1523331558206670 Content-Disposition: inline Content-Length: 696 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/xmahjongg/Makefile diff -u pkgsrc/games/xmahjongg/Makefile:1.29 pkgsrc/games/xmahjongg/Makefile:1.30 --- pkgsrc/games/xmahjongg/Makefile:1.29 Sat Oct 6 11:55:01 2012 +++ pkgsrc/games/xmahjongg/Makefile Tue Apr 10 03:39:17 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2012/10/06 11:55:01 asau Exp $ +# $NetBSD: Makefile,v 1.30 2018/04/10 03:39:17 maya Exp $ # DISTNAME= xmahjongg-3.7 @@ -11,7 +11,7 @@ HOMEPAGE= http://www.lcdf.org/~eddietwo/ COMMENT= The Chinese game of Mah Jongg for X11 GNU_CONFIGURE= YES -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++03 .include "../../mk/bsd.prefs.mk" # XXX: hack - work round an ICE with GCC 3.3 on sparc --_----------=_1523331558206670--