svn commit: r545112 - head/games/duel

Piotr Kubaj pkubaj at FreeBSD.org
Sun Aug 16 13:20:34 UTC 2020


Author: pkubaj
Date: Sun Aug 16 13:20:33 2020
New Revision: 545112
URL: https://svnweb.freebsd.org/changeset/ports/545112

Log:
  games/duel: fix build on GCC architectures
  
  Use C++11 compiler:
  /usr/local/include/FTGL/FTLibrary.h:137: error: ISO C++ forbids declaration of 'atomic' with no type

Modified:
  head/games/duel/Makefile

Modified: head/games/duel/Makefile
==============================================================================
--- head/games/duel/Makefile	Sun Aug 16 13:16:38 2020	(r545111)
+++ head/games/duel/Makefile	Sun Aug 16 13:20:33 2020	(r545112)
@@ -17,7 +17,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libfreetype.so:print/freetype2 \
 		libftgl.so:graphics/ftgl
 
-USES=		gl libtool sdl tar:bzip2
+USES=		compiler:c++11-lang gl libtool sdl tar:bzip2
 USE_GL=		gl
 USE_SDL=	sdl
 GNU_CONFIGURE=	yes


More information about the svn-ports-head mailing list