svn commit: r448219 - head/benchmarks/polygraph

Raphael Kubo da Costa rakuco at FreeBSD.org
Fri Aug 18 12:05:41 UTC 2017


Author: rakuco
Date: Fri Aug 18 12:05:39 2017
New Revision: 448219
URL: https://svnweb.freebsd.org/changeset/ports/448219

Log:
  Explicitly build with -std=gnu++03.
  
  The port does not build with C++11 or later (GCC 6 defaults to -std=gnu++14
  instead of -std=gnu++03).
  
  PR:		219275

Modified:
  head/benchmarks/polygraph/Makefile

Modified: head/benchmarks/polygraph/Makefile
==============================================================================
--- head/benchmarks/polygraph/Makefile	Fri Aug 18 10:53:56 2017	(r448218)
+++ head/benchmarks/polygraph/Makefile	Fri Aug 18 12:05:39 2017	(r448219)
@@ -21,6 +21,9 @@ SHEBANG_FILES=	tools/*.pl
 USE_GCC=	any
 GNU_CONFIGURE=	yes
 
+# The port does not build with C++11 or later (bug 219275).
+USE_CXXSTD=	gnu++03
+
 CONFLICTS=	ltrace-0*
 
 OPTIONS_DEFINE=		DOCS GNUPLOT GSSAPI LDNS PERL SSL ZLIB


More information about the svn-ports-all mailing list