svn commit: r460940 - in head/games: afternoonstalker burgerspace cosmosmash

Ganael LAPLANCHE martymac at FreeBSD.org
Sun Feb 4 16:34:18 UTC 2018


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


More information about the svn-ports-head mailing list