svn commit: r500813 - head/net/nng

Piotr Kubaj pkubaj at FreeBSD.org
Sat May 4 15:21:20 UTC 2019


Author: pkubaj
Date: Sat May  4 15:21:19 2019
New Revision: 500813
URL: https://svnweb.freebsd.org/changeset/ports/500813

Log:
  net/nng: fix build with GCC-based architectures
  
  Add USES=compiler:c11 to fix:
  /wrkdirs/usr/ports/net/nng/work/nng-1.1.1/src/platform/posix/posix_impl.h:87: error: expected specifier-qualifier-list before '_Atomic'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/net/nng/Makefile

Modified: head/net/nng/Makefile
==============================================================================
--- head/net/nng/Makefile	Sat May  4 15:09:10 2019	(r500812)
+++ head/net/nng/Makefile	Sat May  4 15:21:19 2019	(r500813)
@@ -11,7 +11,7 @@ COMMENT=	Lightweight, broker-less messaging
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
-USES=		cmake
+USES=		cmake compiler:c11
 USE_GITHUB=	yes
 GH_ACCOUNT=	nanomsg
 


More information about the svn-ports-all mailing list