Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Feb 2019 20:50:30 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r493530 - head/games/chapping
Message-ID:  <201902212050.x1LKoUJ7052605@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Thu Feb 21 20:50:30 2019
New Revision: 493530
URL: https://svnweb.freebsd.org/changeset/ports/493530

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

Modified:
  head/games/chapping/Makefile

Modified: head/games/chapping/Makefile
==============================================================================
--- head/games/chapping/Makefile	Thu Feb 21 20:50:29 2019	(r493529)
+++ head/games/chapping/Makefile	Thu Feb 21 20:50:30 2019	(r493530)
@@ -15,11 +15,9 @@ COMMENT=	Turn based board football game
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		compiler gmake tar:bzip2
+USES=		gmake sdl tar:bzip2
 USE_SDL=	sdl image gfx ttf
-
-CXXFLAGS+=	${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
-CXXFLAGS_clang=	-Wno-c++11-narrowing
+USE_CXXSTD=	c++98
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}-source
 ALL_TARGET=	linux



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902212050.x1LKoUJ7052605>