svn commit: r480990 - branches/2018Q3/devel/googletest

Jan Beich jbeich at FreeBSD.org
Mon Oct 1 00:31:45 UTC 2018


Author: jbeich
Date: Mon Oct  1 00:31:43 2018
New Revision: 480990
URL: https://svnweb.freebsd.org/changeset/ports/480990

Log:
  MFH: r480989
  
  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
  Approved by:	ports-secteam blanket

Modified:
  branches/2018Q3/devel/googletest/Makefile
Directory Properties:
  branches/2018Q3/   (props changed)

Modified: branches/2018Q3/devel/googletest/Makefile
==============================================================================
--- branches/2018Q3/devel/googletest/Makefile	Mon Oct  1 00:31:09 2018	(r480989)
+++ branches/2018Q3/devel/googletest/Makefile	Mon Oct  1 00:31:43 2018	(r480990)
@@ -16,7 +16,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


More information about the svn-ports-all mailing list