diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-04 15:21:19 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-04 15:21:19 +0000 |
commit | e7a6739362466a55528de680f740baf3761498da (patch) | |
tree | 55313b1086449044dbdb129f682b04246af5c927 /net/nng | |
parent | 861a0890f8bc74e467de2fa863a9cc332bda9bb6 (diff) |
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)
Notes
Notes:
svn path=/head/; revision=500813
Diffstat (limited to 'net/nng')
-rw-r--r-- | net/nng/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nng/Makefile b/net/nng/Makefile index 44799180ebbb..d619d31bacfa 100644 --- a/net/nng/Makefile +++ b/net/nng/Makefile @@ -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 |