Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Feb 2020 12:46:16 +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: r525034 - head/graphics/lensfun
Message-ID:  <202002031246.013CkGvX020374@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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