Date: Fri, 18 Aug 2017 12:05:39 +0000 (UTC) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448219 - head/benchmarks/polygraph Message-ID: <201708181205.v7IC5dZh005783@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708181205.v7IC5dZh005783>