Date: Sun, 4 Feb 2018 16:34:17 +0000 (UTC) From: Ganael LAPLANCHE <martymac@FreeBSD.org> 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 Message-ID: <201802041634.w14GYHVW017651@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802041634.w14GYHVW017651>