svn commit: r525034 - head/graphics/lensfun

Piotr Kubaj pkubaj at FreeBSD.org
Mon Feb 3 12:46:16 UTC 2020


Author: pkubaj
Date: Mon Feb  3 12:46:16 2020
New Revision: 525034
URL: https://svnweb.freebsd.org/changeset/ports/525034

Log:
  graphics/lensfun: fix build on GCC architectures
  
  C++11 compiler is necessary:
  cc1plus: error: unrecognized command line option "-std=c++11"

Modified:
  head/graphics/lensfun/Makefile

Modified: head/graphics/lensfun/Makefile
==============================================================================
--- head/graphics/lensfun/Makefile	Mon Feb  3 12:45:49 2020	(r525033)
+++ head/graphics/lensfun/Makefile	Mon Feb  3 12:46:16 2020	(r525034)
@@ -17,7 +17,8 @@ LICENSE_FILE_CC-BY-SA-3.0=	${WRKSRC}/docs/cc-by-sa-3.0
 
 LIB_DEPENDS=	libpng.so:graphics/png
 
-USES=		cmake gettext-runtime gnome pathfix pkgconfig shebangfix
+USES=		cmake compiler:c++11-lang gettext-runtime gnome pathfix \
+		pkgconfig shebangfix
 SHEBANG_FILES=	apps/lensfun-add-adapter apps/lensfun-convert-lcp \
 		apps/lensfun-update-data
 USE_GNOME=	glib20


More information about the svn-ports-all mailing list