svn commit: r530391 - branches/2020Q2/net/libarcus

Piotr Kubaj pkubaj at FreeBSD.org
Thu Apr 2 18:20:58 UTC 2020


Author: pkubaj
Date: Thu Apr  2 17:45:05 2020
New Revision: 530391
URL: https://svnweb.freebsd.org/changeset/ports/530391

Log:
  MFH: r530389
  
  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
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q2/net/libarcus/Makefile
Directory Properties:
  branches/2020Q2/   (props changed)

Modified: branches/2020Q2/net/libarcus/Makefile
==============================================================================
--- branches/2020Q2/net/libarcus/Makefile	Thu Apr  2 17:44:32 2020	(r530390)
+++ branches/2020Q2/net/libarcus/Makefile	Thu Apr  2 17:45:05 2020	(r530391)
@@ -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


More information about the svn-ports-all mailing list