svn commit: r509941 - head/graphics/fractgen
Piotr Kubaj
pkubaj at FreeBSD.org
Mon Aug 26 12:59:19 UTC 2019
Author: pkubaj
Date: Mon Aug 26 12:59:18 2019
New Revision: 509941
URL: https://svnweb.freebsd.org/changeset/ports/509941
Log:
graphics/fractgen: 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/graphics/fractgen/Makefile
Modified: head/graphics/fractgen/Makefile
==============================================================================
--- head/graphics/fractgen/Makefile Mon Aug 26 12:46:10 2019 (r509940)
+++ head/graphics/fractgen/Makefile Mon Aug 26 12:59:18 2019 (r509941)
@@ -12,7 +12,7 @@ COMMENT= Fractal Generator
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/COPYING
-USES= tar:xz cmake qt:5
+USES= compiler:c++11-lang tar:xz cmake qt:5
USE_QT= core xml widgets printsupport buildtools_build qmake_build
CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR=${PREFIX}/man
More information about the svn-ports-head
mailing list