svn commit: r519650 - head/net/kpeoplevcard

Mark Linimon linimon at FreeBSD.org
Tue Dec 10 08:05:53 UTC 2019


Author: linimon
Date: Tue Dec 10 08:05:52 2019
New Revision: 519650
URL: https://svnweb.freebsd.org/changeset/ports/519650

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/net/kpeoplevcard/Makefile

Modified: head/net/kpeoplevcard/Makefile
==============================================================================
--- head/net/kpeoplevcard/Makefile	Tue Dec 10 08:01:12 2019	(r519649)
+++ head/net/kpeoplevcard/Makefile	Tue Dec 10 08:05:52 2019	(r519650)
@@ -11,7 +11,7 @@ COMMENT=	Datasource plugin for KPeople to read vCard f
 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=	contacts coreaddons ecm i18n people
 USE_QT=		core gui widgets \
 		buildtools_build qmake_build


More information about the svn-ports-head mailing list