svn commit: r495539 - head/devel/pure-stldict

Mark Linimon linimon at FreeBSD.org
Wed Mar 13 04:20:43 UTC 2019


Author: linimon
Date: Wed Mar 13 04:20:42 2019
New Revision: 495539
URL: https://svnweb.freebsd.org/changeset/ports/495539

Log:
  Fix build on gcc-based architectures:
  
    cc1plus: unrecognized command line option "-std=c++0x"
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/pure-stldict/Makefile

Modified: head/devel/pure-stldict/Makefile
==============================================================================
--- head/devel/pure-stldict/Makefile	Wed Mar 13 03:22:29 2019	(r495538)
+++ head/devel/pure-stldict/Makefile	Wed Mar 13 04:20:42 2019	(r495539)
@@ -13,9 +13,7 @@ COMMENT=	Pure interface to C++ STL map/unordered_map
 LICENSE=	LGPL3+
 LICENSE_FILE=	${WRKSRC}/COPYING.LESSER
 
-BROKEN_powerpc64=	fails to compile: cc1plus: unrecognized command line option "-std=c++0x"
-
-USES=		pkgconfig pure
+USES=		compiler:c++0x pkgconfig pure
 
 CXXFLAGS+=	-std=c++0x -DHAVE_STD_IS_PERMUTATION
 


More information about the svn-ports-all mailing list