Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Aug 2020 13:20:34 +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: r545112 - head/games/duel
Message-ID:  <202008161320.07GDKYof085989@repo.freebsd.org>

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



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