svn commit: r544812 - head/games/zaz

Piotr Kubaj pkubaj at FreeBSD.org
Thu Aug 13 14:50:23 UTC 2020


Author: pkubaj
Date: Thu Aug 13 14:50:22 2020
New Revision: 544812
URL: https://svnweb.freebsd.org/changeset/ports/544812

Log:
  games/zaz: 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/zaz/Makefile

Modified: head/games/zaz/Makefile
==============================================================================
--- head/games/zaz/Makefile	Thu Aug 13 13:46:33 2020	(r544811)
+++ head/games/zaz/Makefile	Thu Aug 13 14:50:22 2020	(r544812)
@@ -18,7 +18,8 @@ LIB_DEPENDS=	libfreetype.so:print/freetype2 \
 		libvorbis.so:audio/libvorbis \
 		libftgl.so:graphics/ftgl
 
-USES=		desktop-file-utils gl pkgconfig sdl tar:bzip2
+USES=		compiler:c++11-lang desktop-file-utils gl pkgconfig sdl \
+		tar:bzip2
 GNU_CONFIGURE=	yes
 USE_SDL=	sdl image
 USE_GL=		gl glu


More information about the svn-ports-head mailing list