svn commit: r504803 - head/games/brikx

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri Jun 21 16:13:27 UTC 2019


Author: amdmi3
Date: Fri Jun 21 16:13:26 2019
New Revision: 504803
URL: https://svnweb.freebsd.org/changeset/ports/504803

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

Modified:
  head/games/brikx/Makefile

Modified: head/games/brikx/Makefile
==============================================================================
--- head/games/brikx/Makefile	Fri Jun 21 15:57:28 2019	(r504802)
+++ head/games/brikx/Makefile	Fri Jun 21 16:13:26 2019	(r504803)
@@ -12,13 +12,12 @@ DISTNAME=	${PORTNAME}-${PORTVERSION}-src
 MAINTAINER=	amdmi3 at FreeBSD.org
 COMMENT=	Puzzle game - remove all tiles from the table
 
-USES=		compiler:c++11-lang tar:bzip2
+USES=		tar:bzip2
 GNU_CONFIGURE=	yes
 USE_SDL=	sdl mixer image ttf
+USE_CXXSTD=	c++98
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
-
-CXXFLAGS+=	-Wno-reserved-user-defined-literal
 
 PLIST_FILES=	bin/${PORTNAME}
 PORTDATA=	*


More information about the svn-ports-all mailing list