svn commit: r512206 - head/graphics/nomacs

Piotr Kubaj pkubaj at FreeBSD.org
Tue Sep 17 12:35:40 UTC 2019


Author: pkubaj
Date: Tue Sep 17 12:35:40 2019
New Revision: 512206
URL: https://svnweb.freebsd.org/changeset/ports/512206

Log:
  graphics/nomacs: fix build on GCC architectures
  
  C++11 compiler is necessary:
  -- The compiler /usr/bin/c++ has no C++11 support. Please use a different C++ compiler.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/graphics/nomacs/Makefile

Modified: head/graphics/nomacs/Makefile
==============================================================================
--- head/graphics/nomacs/Makefile	Tue Sep 17 11:36:53 2019	(r512205)
+++ head/graphics/nomacs/Makefile	Tue Sep 17 12:35:40 2019	(r512206)
@@ -17,7 +17,8 @@ LIB_DEPENDS=	libexiv2.so:graphics/exiv2 \
 		liblcms2.so:graphics/lcms2 \
 		libtbb.so:devel/tbb
 
-USES=		cmake desktop-file-utils dos2unix pkgconfig qt:5 tar:bzip2
+USES=		cmake compiler:c++11-lang desktop-file-utils dos2unix \
+		pkgconfig qt:5 tar:bzip2
 USE_QT=		concurrent core gui network printsupport svg widgets \
 		buildtools_build linguisttools_build qmake_build
 


More information about the svn-ports-all mailing list