Date: Mon, 1 Oct 2018 00:31:09 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480989 - head/devel/googletest Message-ID: <201810010031.w910V9aD096019@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Mon Oct 1 00:31:09 2018 New Revision: 480989 URL: https://svnweb.freebsd.org/changeset/ports/480989 Log: devel/googletest: oops, builds fine with clang++ -stdlib=libstdc++ -std=gnu++03 FreeBSD 9.x defaulted to GCC 4.2 but could use Clang, so c++11-lang used Clang while c++11-lib use lang/gcc* bun nowadays the difference no longer exists. While testing previous change I forgot to account that newer Clang versions have switched to C++14 by default while libstdc++ 4.2 doesn't support C++11 or newer. PR: 231835 Modified: head/devel/googletest/Makefile (contents, props changed) Modified: head/devel/googletest/Makefile ============================================================================== --- head/devel/googletest/Makefile Mon Oct 1 00:17:59 2018 (r480988) +++ head/devel/googletest/Makefile Mon Oct 1 00:31:09 2018 (r480989) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= google -USES= autoreconf compiler:c++11-lib libtool +USES= autoreconf compiler:c++11-lang libtool WRKSRC_SUBDIR= ${PORTNAME} GNU_CONFIGURE= yes # fused-src python tests are only useful for bundling. There's no point in
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810010031.w910V9aD096019>