From owner-svn-ports-all@freebsd.org Fri Nov 2 01:46:26 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED33710E0B22; Fri, 2 Nov 2018 01:46:25 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A391670ABC; Fri, 2 Nov 2018 01:46:25 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8086423F8F; Fri, 2 Nov 2018 01:46:25 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wA21kPAP042922; Fri, 2 Nov 2018 01:46:25 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wA21kPiS042920; Fri, 2 Nov 2018 01:46:25 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201811020146.wA21kPiS042920@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 2 Nov 2018 01:46:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483761 - in head/games/blokish: . files X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/games/blokish: . files X-SVN-Commit-Revision: 483761 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Nov 2018 01:46:26 -0000 Author: linimon Date: Fri Nov 2 01:46:24 2018 New Revision: 483761 URL: https://svnweb.freebsd.org/changeset/ports/483761 Log: This port needs USES=compiler:c++11-lang to build on GCC architectures. To build with GCC, it also needs algorithm and sys/limits.h includes. PR: 232863 Submitted by: Piotr Kubaj Approved by: portmgr (tier-2 blanket) Added: head/games/blokish/files/ head/games/blokish/files/patch-src_ai.cpp (contents, props changed) Modified: head/games/blokish/Makefile Modified: head/games/blokish/Makefile ============================================================================== --- head/games/blokish/Makefile Fri Nov 2 01:39:56 2018 (r483760) +++ head/games/blokish/Makefile Fri Nov 2 01:46:24 2018 (r483761) @@ -15,7 +15,7 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes -USES= gmake localbase tar:tgz +USES= compiler:c++11-lang gl gmake localbase tar:tgz USE_GL= gl USE_WX= 2.8 Added: head/games/blokish/files/patch-src_ai.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/blokish/files/patch-src_ai.cpp Fri Nov 2 01:46:24 2018 (r483761) @@ -0,0 +1,11 @@ +--- src/ai.cpp.orig 2018-10-31 18:46:12 UTC ++++ src/ai.cpp +@@ -22,6 +22,8 @@ + /* This file is contains the AI logic. + */ + ++#include ++#include + #include "ai.h" + + AI::AI(BlokishBoard &board)