Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 May 2019 15:21:19 +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: r500813 - head/net/nng
Message-ID:  <201905041521.x44FLJqf063561@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



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