svn commit: r562289 - head/graphics/frei0r

Mark Linimon linimon at FreeBSD.org
Fri Jan 22 10:10:10 UTC 2021


Author: linimon
Date: Fri Jan 22 10:10:10 2021
New Revision: 562289
URL: https://svnweb.freebsd.org/changeset/ports/562289

Log:
  Add compiler:c++11-lang to USES to fix build on GCC-based systems:
  
    frei0r-plugins-1.7.0/src/filter/elastic_scale/elastic_scale.cpp:152: error: ISO C++ forbids initialization of member 'm_transformationCalculations'
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/graphics/frei0r/Makefile

Modified: head/graphics/frei0r/Makefile
==============================================================================
--- head/graphics/frei0r/Makefile	Fri Jan 22 10:09:04 2021	(r562288)
+++ head/graphics/frei0r/Makefile	Fri Jan 22 10:10:10 2021	(r562289)
@@ -16,7 +16,7 @@ COMMENT?=	Minimalistic plugin API for video effects
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING.txt
 
-USES=		cmake pkgconfig
+USES=		cmake compiler:c++11-lang pkgconfig
 
 .if defined(BUILDING_FREI0R_OPENCV) && defined(BUILDING_FREI0R_GAVL)
 IGNORE=		cannot build OpenCV and gavl plugins simultaneously


More information about the svn-ports-all mailing list