svn commit: r504732 - head/games/powder

Dmitry Marakasov amdmi3 at FreeBSD.org
Thu Jun 20 19:16:23 UTC 2019


Author: amdmi3
Date: Thu Jun 20 19:16:20 2019
New Revision: 504732
URL: https://svnweb.freebsd.org/changeset/ports/504732

Log:
  - Switch to more correct way of avoiding C++11 related build errors, by specifying older c++ standard

Modified:
  head/games/powder/Makefile

Modified: head/games/powder/Makefile
==============================================================================
--- head/games/powder/Makefile	Thu Jun 20 19:16:12 2019	(r504731)
+++ head/games/powder/Makefile	Thu Jun 20 19:16:20 2019	(r504732)
@@ -12,14 +12,12 @@ DISTNAME=	${PORTNAME}${PORTVERSION}_src
 MAINTAINER=	amdmi3 at FreeBSD.org
 COMMENT=	Graphical dungeon crawling game
 
-USES=		compiler gmake
+USES=		gmake
 USE_SDL=	sdl
+USE_CXXSTD=	c++98
 MAKE_JOBS_UNSAFE=yes
 
 BUILD_WRKSRC=	${WRKSRC}/port/linux
-
-CXXFLAGS+=	${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
-CXXFLAGS_clang=	-Wno-c++11-narrowing
 
 PLIST_FILES=	bin/powder
 PORTDOCS=	README.TXT LICENSE.TXT CREDITS.TXT


More information about the svn-ports-all mailing list