Date: Fri, 18 Aug 2017 12:25:30 +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: r448222 - head/databases/fastdb Message-ID: <201708181225.v7ICPUJP014230@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rakuco Date: Fri Aug 18 12:25:30 2017 New Revision: 448222 URL: https://svnweb.freebsd.org/changeset/ports/448222 Log: Explicitly pass -std=gnu++03 to the compiler. This fixes the build with GCC 6, which defaults to -std=gnu++14. The port's code does not work with C++11 or later. PR: 219275 Modified: head/databases/fastdb/Makefile Modified: head/databases/fastdb/Makefile ============================================================================== --- head/databases/fastdb/Makefile Fri Aug 18 12:21:43 2017 (r448221) +++ head/databases/fastdb/Makefile Fri Aug 18 12:25:30 2017 (r448222) @@ -25,6 +25,9 @@ DOS2UNIX_FILES= ${MAKEFILE} PORTDOCS= FastDB.htm +# The port does not build with C++11 or later (bug 219275). +USE_CXXSTD= gnu++03 + post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/FastDB.htm ${STAGEDIR}${DOCSDIR}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708181225.v7ICPUJP014230>