svn commit: r500802 - head/graphics/hdr_tools

Piotr Kubaj pkubaj at FreeBSD.org
Sat May 4 10:30:28 UTC 2019


Author: pkubaj
Date: Sat May  4 10:30:27 2019
New Revision: 500802
URL: https://svnweb.freebsd.org/changeset/ports/500802

Log:
  graphics/hdr_tools: fix build with GCC-based architectures
  
  Replace USES=compiler:features with USES=compiler:c++11-lang. c++11-lang includes features anyway.
  
  This fixes linking errors when base GCC is used:
  /usr/local/lib/libIlmImf.so: undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::resize(unsigned long, char)@GLIBCXX_3.4.21'
  Approved by:	mentors (implicit approval)

Modified:
  head/graphics/hdr_tools/Makefile

Modified: head/graphics/hdr_tools/Makefile
==============================================================================
--- head/graphics/hdr_tools/Makefile	Sat May  4 09:50:37 2019	(r500801)
+++ head/graphics/hdr_tools/Makefile	Sat May  4 10:30:27 2019	(r500802)
@@ -19,7 +19,7 @@ LIB_DEPENDS=	libpopt.so:devel/popt \
 		libIlmImf.so:graphics/openexr \
 		libMagick++-6.so:graphics/ImageMagick6
 
-USES=		compiler:features gmake pkgconfig tar:tgz
+USES=		compiler:c++11-lang gmake pkgconfig tar:tgz
 NO_WRKSUBDIR=	yes
 
 PROGRAMS=	hdr_adjust hdr_convert hdr_create hdr_denoise hdr_fix_ca \


More information about the svn-ports-all mailing list