From owner-svn-ports-all@freebsd.org Sun Feb 4 16:34:18 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 13F47EDF284; Sun, 4 Feb 2018 16:34:18 +0000 (UTC) (envelope-from martymac@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 B986F870E4; Sun, 4 Feb 2018 16:34:17 +0000 (UTC) (envelope-from martymac@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 B47A21C990; Sun, 4 Feb 2018 16:34:17 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w14GYHtx017654; Sun, 4 Feb 2018 16:34:17 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w14GYHVW017651; Sun, 4 Feb 2018 16:34:17 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201802041634.w14GYHVW017651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Sun, 4 Feb 2018 16:34:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460940 - in head/games: afternoonstalker burgerspace cosmosmash X-SVN-Group: ports-head X-SVN-Commit-Author: martymac X-SVN-Commit-Paths: in head/games: afternoonstalker burgerspace cosmosmash X-SVN-Commit-Revision: 460940 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.25 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: Sun, 04 Feb 2018 16:34:18 -0000 Author: martymac Date: Sun Feb 4 16:34:17 2018 New Revision: 460940 URL: https://svnweb.freebsd.org/changeset/ports/460940 Log: Fix build with Clang 6 (C++14 by default) Modified: head/games/afternoonstalker/Makefile head/games/burgerspace/Makefile head/games/cosmosmash/Makefile Modified: head/games/afternoonstalker/Makefile ============================================================================== --- head/games/afternoonstalker/Makefile Sun Feb 4 16:27:39 2018 (r460939) +++ head/games/afternoonstalker/Makefile Sun Feb 4 16:34:17 2018 (r460940) @@ -16,6 +16,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libflatzebra-0.1.so:devel/flatzebra USES= pkgconfig +USE_CXXSTD= gnu++98 USE_SDL= mixer sdl GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include Modified: head/games/burgerspace/Makefile ============================================================================== --- head/games/burgerspace/Makefile Sun Feb 4 16:27:39 2018 (r460939) +++ head/games/burgerspace/Makefile Sun Feb 4 16:34:17 2018 (r460940) @@ -16,6 +16,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libflatzebra-0.1.so:devel/flatzebra USES= pkgconfig +USE_CXXSTD= gnu++98 USE_SDL= mixer sdl GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include Modified: head/games/cosmosmash/Makefile ============================================================================== --- head/games/cosmosmash/Makefile Sun Feb 4 16:27:39 2018 (r460939) +++ head/games/cosmosmash/Makefile Sun Feb 4 16:34:17 2018 (r460940) @@ -19,6 +19,7 @@ LIB_DEPENDS= libflatzebra-0.1.so:devel/flatzebra \ libaudiofile.so:audio/libaudiofile USES= iconv pkgconfig desktop-file-utils +USE_CXXSTD= gnu++98 USE_SDL= sdl image mixer USE_XORG= x11 xau xdmcp GNU_CONFIGURE= yes