Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 May 2020 21:02:33 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r536657 - head/devel/libopentracing
Message-ID:  <202005262102.04QL2X1t069735@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue May 26 21:02:33 2020
New Revision: 536657
URL: https://svnweb.freebsd.org/changeset/ports/536657

Log:
  devel/libopentracing: fix build on GCC architectures
  
  Use C++11 compiler:
  /wrkdirs/usr/ports/devel/libopentracing/work/opentracing-cpp-1.6.0/include/opentracing/value.h:9:25: error: unordered_map: No such file or directory

Modified:
  head/devel/libopentracing/Makefile

Modified: head/devel/libopentracing/Makefile
==============================================================================
--- head/devel/libopentracing/Makefile	Tue May 26 21:01:04 2020	(r536656)
+++ head/devel/libopentracing/Makefile	Tue May 26 21:02:33 2020	(r536657)
@@ -16,7 +16,7 @@ USE_GITHUB=	yes
 GH_ACCOUNT=	opentracing
 GH_PROJECT=	opentracing-cpp
 
-USES=		cmake compiler
+USES=		cmake compiler:c++11-lang
 
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005262102.04QL2X1t069735>