svn commit: r493531 - head/games/ivan

Dmitry Marakasov amdmi3 at FreeBSD.org
Thu Feb 21 20:50:35 UTC 2019


Author: amdmi3
Date: Thu Feb 21 20:50:33 2019
New Revision: 493531
URL: https://svnweb.freebsd.org/changeset/ports/493531

Log:
  - Switch to more correct way of avoiding C++11 related build errors

Modified:
  head/games/ivan/Makefile

Modified: head/games/ivan/Makefile
==============================================================================
--- head/games/ivan/Makefile	Thu Feb 21 20:50:30 2019	(r493530)
+++ head/games/ivan/Makefile	Thu Feb 21 20:50:33 2019	(r493531)
@@ -16,12 +16,10 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 BROKEN_armv6=		fails to compile: use of overloaded operator '<<' is ambiguous
 BROKEN_armv7=		fails to compile: use of overloaded operator '<<' is ambiguous
 
-USES=		compiler gmake
+USES=		gmake sdl
 USE_SDL=	sdl
+USE_CXXSTD=	c++98
 GNU_CONFIGURE=	yes
-
-CXXFLAGS+=	${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
-CXXFLAGS_clang=	-Wno-c++11-narrowing
 
 CONFIGURE_ARGS=	--localstatedir=/var/games
 


More information about the svn-ports-head mailing list