Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Mar 2020 21:35:38 +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: r528601 - head/graphics/ikona
Message-ID:  <202003172135.02HLZcp9055852@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Tue Mar 17 21:35:38 2020
New Revision: 528601
URL: https://svnweb.freebsd.org/changeset/ports/528601

Log:
  Fix build on GCC-based systems by adding the following to USES:
  
    compiler:c++11-lang iconv
  
  The former:
  
    The compiler feature "cxx_decltype" is not known to CXX compiler "GNU" version 4.2.1.
  
  The latter:
  
    /usr/local/bin/ld: release/deps/libgettext_sys-b0dd51871dcd53eb.rlib(dcigettext.o): undefined reference to symbol 'libiconv'
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/graphics/ikona/Makefile

Modified: head/graphics/ikona/Makefile
==============================================================================
--- head/graphics/ikona/Makefile	Tue Mar 17 20:02:38 2020	(r528600)
+++ head/graphics/ikona/Makefile	Tue Mar 17 21:35:38 2020	(r528601)
@@ -16,7 +16,8 @@ LICENSE_FILE=		${WRKSRC}/LICENSE
 
 BUILD_DEPENDS=		rustc:lang/${RUST_DEFAULT}
 
-USES=			cmake:noninja desktop-file-utils gmake gnome kde:5 pkgconfig qt:5 tar:xz
+USES=			cmake:noninja compiler:c++11-lang desktop-file-utils \
+			gmake gnome iconv kde:5 pkgconfig qt:5 tar:xz
 USE_GNOME=		cairo gdkpixbuf2 glib20 libxml2 pango
 USE_KDE=		auth codecs config configwidgets coreaddons i18n \
 			kirigami2 widgetsaddons



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