aboutsummaryrefslogtreecommitdiff
path: root/net/nng
Commit message (Collapse)AuthorAgeFilesLines
* net/nng: update to 1.3.2Steve Wills2020-08-095-15/+363
| | | | Notes: svn path=/head/; revision=544539
* net/nng: update to 1.3.1Steve Wills2020-08-023-4/+15
| | | | Notes: svn path=/head/; revision=543995
* net/nng: update to 1.3.0Steve Wills2020-07-213-7/+12
| | | | Notes: svn path=/head/; revision=542689
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-0/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* net/nng: fix build with GCC-based architecturesPiotr Kubaj2019-05-041-1/+1
| | | | | | | | | | 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: svn path=/head/; revision=500813
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* net/nng: update to 1.1.1Steve Wills2018-11-273-6/+8
| | | | Notes: svn path=/head/; revision=485981
* net/nng: create portSteve Wills2018-07-194-0/+74
NNG, like its predecessors nanomsg (and to some extent ZeroMQ), is a lightweight, broker-less library, offering a simple API to solve common recurring messaging problems, such as publish/subscribe, RPC-style request/reply, or service discovery. The API frees the programmer from worrying about details like connection management, retries, and other common considerations, so that they can focus on the application instead of the plumbing. NNG is implemented in C, requiring only C99 and CMake to build. It can be built as a shared or a static library, and is readily embeddable. It is also designed to be easy to port to new platforms if your platform is not already supported. WWW: https://nanomsg.github.io/nng/ Notes: svn path=/head/; revision=474973