svn commit: r493534 - head/games/kartofel

Dmitry Marakasov amdmi3 at FreeBSD.org
Thu Feb 21 21:03:06 UTC 2019


Author: amdmi3
Date: Thu Feb 21 21:03:05 2019
New Revision: 493534
URL: https://svnweb.freebsd.org/changeset/ports/493534

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

Modified:
  head/games/kartofel/Makefile

Modified: head/games/kartofel/Makefile
==============================================================================
--- head/games/kartofel/Makefile	Thu Feb 21 20:55:42 2019	(r493533)
+++ head/games/kartofel/Makefile	Thu Feb 21 21:03:05 2019	(r493534)
@@ -13,13 +13,11 @@ COMMENT=	Connect the dots in order without crossing ov
 
 LIB_DEPENDS=	libcurl.so:ftp/curl
 
-USES=		compiler gmake
+USES=		gmake sdl
+USE_CXXSTD=	c++98
 USE_SDL=	sdl gfx mixer image ttf
 
 ALL_TARGET=	default
-
-CXXFLAGS+=	${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
-CXXFLAGS_clang=	-Wno-c++11-narrowing
 
 DATA_DIRS=	sounds fonts music images levels
 


More information about the svn-ports-all mailing list