Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jul 2020 19:41:12 +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: r541362 - head/print/pdfchain
Message-ID:  <202007061941.066JfC02001539@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Mon Jul  6 19:41:12 2020
New Revision: 541362
URL: https://svnweb.freebsd.org/changeset/ports/541362

Log:
  Add compiler:c++11-lang to USES to fix build on GCC-based systems:
  
    /usr/local/include/sigc++-2.0/sigc++/visit_each.h:22:23: error: type_traits: No such file or directory
  
  Note: I had to be careful about the addition due to the += notation.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/print/pdfchain/Makefile

Modified: head/print/pdfchain/Makefile
==============================================================================
--- head/print/pdfchain/Makefile	Mon Jul  6 19:39:16 2020	(r541361)
+++ head/print/pdfchain/Makefile	Mon Jul  6 19:41:12 2020	(r541362)
@@ -10,7 +10,8 @@ COMMENT=	Graphical user interface for the PDF Toolkit 
 
 LICENSE=	GPLv3
 
-USES=		desktop-file-utils
+USES=		compiler:c++11-lang
+USES+=		desktop-file-utils
 USES+=		gettext-runtime
 USES+=		gnome
 USES+=		pkgconfig



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