svn commit: r512357 - head/x11-fonts/fontmatrix

Piotr Kubaj pkubaj at FreeBSD.org
Thu Sep 19 16:21:51 UTC 2019


Author: pkubaj
Date: Thu Sep 19 16:21:50 2019
New Revision: 512357
URL: https://svnweb.freebsd.org/changeset/ports/512357

Log:
  x11-fonts/fontmatrix: fix build on GCC architectures
  
  C++11 compiler is necessary:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/x11-fonts/fontmatrix/Makefile

Modified: head/x11-fonts/fontmatrix/Makefile
==============================================================================
--- head/x11-fonts/fontmatrix/Makefile	Thu Sep 19 16:20:02 2019	(r512356)
+++ head/x11-fonts/fontmatrix/Makefile	Thu Sep 19 16:21:50 2019	(r512357)
@@ -13,7 +13,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
 		libfreetype.so:print/freetype2
 
-USES=		cmake qt:5
+USES=		cmake compiler:c++11-lang qt:5
 
 USE_GITHUB=	yes
 USE_QT=		buildtools core gui linguisttools network printsupport \


More information about the svn-ports-all mailing list