Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Aug 2019 12:59:18 +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: r509941 - head/graphics/fractgen
Message-ID:  <201908261259.x7QCxIcZ060633@repo.freebsd.org>

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



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