svn commit: r495431 - head/sysutils/kdirstat

Mark Linimon linimon at FreeBSD.org
Tue Mar 12 04:58:10 UTC 2019


Author: linimon
Date: Tue Mar 12 04:58:09 2019
New Revision: 495431
URL: https://svnweb.freebsd.org/changeset/ports/495431

Log:
  Fix build on gcc-based architectures:
  
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/sysutils/kdirstat/Makefile

Modified: head/sysutils/kdirstat/Makefile
==============================================================================
--- head/sysutils/kdirstat/Makefile	Tue Mar 12 04:50:28 2019	(r495430)
+++ head/sysutils/kdirstat/Makefile	Tue Mar 12 04:58:09 2019	(r495431)
@@ -13,7 +13,8 @@ COMMENT=	KDE utility that sums up disk usage for direc
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		cmake cpe desktop-file-utils gettext-tools kde:5 qt:5 tar:bzip2
+USES=		cmake compiler:c++11-lang cpe desktop-file-utils gettext-tools \
+		kde:5 qt:5 tar:bzip2
 
 WRKSRC=		${WRKDIR}/jeromerobert-k4dirstat-0fd87f361645
 


More information about the svn-ports-head mailing list