svn commit: r544170 - head/graphics/ftgl

Piotr Kubaj pkubaj at FreeBSD.org
Tue Aug 4 14:25:30 UTC 2020


Author: pkubaj
Date: Tue Aug  4 14:25:29 2020
New Revision: 544170
URL: https://svnweb.freebsd.org/changeset/ports/544170

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

Modified:
  head/graphics/ftgl/Makefile

Modified: head/graphics/ftgl/Makefile
==============================================================================
--- head/graphics/ftgl/Makefile	Tue Aug  4 13:45:50 2020	(r544169)
+++ head/graphics/ftgl/Makefile	Tue Aug  4 14:25:29 2020	(r544170)
@@ -18,7 +18,8 @@ LIB_DEPENDS=	libfreetype.so:print/freetype2
 USE_GITHUB=	yes
 GH_ACCOUNT=	frankheckenbach
 
-USES=		autoreconf gl pathfix gmake libtool pkgconfig xorg
+USES=		autoreconf compiler:c++11-lang gl pathfix gmake libtool \
+		pkgconfig xorg
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-gl-inc="${LOCALBASE}/include" \
 		--without-glut-inc


More information about the svn-ports-head mailing list