Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Sep 2019 06:20:40 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r512611 - head/graphics/scantailor
Message-ID:  <201909230620.x8N6KebX030722@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Mon Sep 23 06:20:40 2019
New Revision: 512611
URL: https://svnweb.freebsd.org/changeset/ports/512611

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

Modified:
  head/graphics/scantailor/Makefile

Modified: head/graphics/scantailor/Makefile
==============================================================================
--- head/graphics/scantailor/Makefile	Mon Sep 23 05:50:53 2019	(r512610)
+++ head/graphics/scantailor/Makefile	Mon Sep 23 06:20:40 2019	(r512611)
@@ -16,7 +16,8 @@ LIB_DEPENDS=	libjbig.so:graphics/jbigkit \
 		libpng.so:graphics/png \
 		libtiff.so:graphics/tiff
 
-USES=		cmake desktop-file-utils jpeg qt:5 shared-mime-info xorg
+USES=		cmake compiler:c++11-lang desktop-file-utils jpeg qt:5 \
+		shared-mime-info xorg
 USE_CXXSTD=	gnu++98
 USE_GITHUB=	yes
 USE_QT=		core gui network opengl widgets xml buildtools_build \



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