Date: Tue, 17 Sep 2019 12:35:40 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512206 - head/graphics/nomacs Message-ID: <201909171235.x8HCZea9037684@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909171235.x8HCZea9037684>