svn commit: r512696 - head/devel/nextpnr

Mark Linimon linimon at FreeBSD.org
Tue Sep 24 03:10:37 UTC 2019


Author: linimon
Date: Tue Sep 24 03:10:37 2019
New Revision: 512696
URL: https://svnweb.freebsd.org/changeset/ports/512696

Log:
  Fix build on GCC-based systems:
  
    The compiler feature "cxx_decltype" is not known to CXX compiler "GNU" version 4.2.1.
  
  While here, pet portlint (USES order).
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/nextpnr/Makefile

Modified: head/devel/nextpnr/Makefile
==============================================================================
--- head/devel/nextpnr/Makefile	Tue Sep 24 02:34:48 2019	(r512695)
+++ head/devel/nextpnr/Makefile	Tue Sep 24 03:10:37 2019	(r512696)
@@ -18,7 +18,7 @@ LIB_DEPENDS=	libboost_thread.so:devel/boost-libs \
 		libboost_program_options.so:devel/boost-libs \
 		${PY_BOOST}
 
-USES=		cmake qt:5 eigen:3 python:3.5+ gl
+USES=		compiler:c++11-lang cmake qt:5 eigen:3 python:3.5+ gl
 
 USE_QT=		buildtools_build core gui opengl qmake_build widgets
 USE_GL=		gl


More information about the svn-ports-head mailing list