Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Aug 2020 14:50:23 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r544812 - head/games/zaz
Message-ID:  <202008131450.07DEoNSB021835@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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