svn commit: r518824 - head/graphics/kqtquickcharts

Mark Linimon linimon at FreeBSD.org
Mon Dec 2 05:34:50 UTC 2019


Author: linimon
Date: Mon Dec  2 05:34:49 2019
New Revision: 518824
URL: https://svnweb.freebsd.org/changeset/ports/518824

Log:
  Fix build on GCC-based systems:
  
    The compiler feature "cxx_decltype" is not known to CXX compiler "GNU" version 4.2.1.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/graphics/kqtquickcharts/Makefile

Modified: head/graphics/kqtquickcharts/Makefile
==============================================================================
--- head/graphics/kqtquickcharts/Makefile	Mon Dec  2 04:03:04 2019	(r518823)
+++ head/graphics/kqtquickcharts/Makefile	Mon Dec  2 05:34:49 2019	(r518824)
@@ -10,7 +10,7 @@ COMMENT=	QtQuick plugin to render interactive charts
 LICENSE=	LGPL21+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		cmake kde:5 qt:5 tar:xz
+USES=		cmake compiler:c++11-lang kde:5 qt:5 tar:xz
 USE_KDE=	ecm
 USE_QT=		core declarative network gui \
 		buildtools_build qmake_build


More information about the svn-ports-all mailing list