Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Sep 2019 16:21:50 +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: r512357 - head/x11-fonts/fontmatrix
Message-ID:  <201909191621.x8JGLooW076594@repo.freebsd.org>

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



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