Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Apr 2020 17:43:59 +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: r530389 - head/net/libarcus
Message-ID:  <202004021743.032HhxtI056388@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Thu Apr  2 17:43:59 2020
New Revision: 530389
URL: https://svnweb.freebsd.org/changeset/ports/530389

Log:
  net/libarcus: fix build on GCC architectures
  
  C++11 compiler is necessary:
  /usr/local/include/google/protobuf/arena_impl.h:323: error: ISO C++ forbids declaration of 'atomic' with no type
  
  MFH:		2020Q2 (fix build blanket)

Modified:
  head/net/libarcus/Makefile

Modified: head/net/libarcus/Makefile
==============================================================================
--- head/net/libarcus/Makefile	Thu Apr  2 17:39:14 2020	(r530388)
+++ head/net/libarcus/Makefile	Thu Apr  2 17:43:59 2020	(r530389)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 BUILD_DEPENDS=	sip:devel/py-sip@${PY_FLAVOR}
 LIB_DEPENDS=	libprotobuf.so:devel/protobuf
 
-USES=		cmake python:3.4+
+USES=		cmake compiler:c++11-lang python:3.4+
 USE_GITHUB=	yes
 GH_ACCOUNT=	Ultimaker
 USE_LDCONFIG=	yes



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