summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-networking/recipes-connectivity/nanomsg/nng_1.4.0.bb (renamed from meta-networking/recipes-connectivity/nanomsg/nng_1.2.5.bb)11
1 files changed, 7 insertions, 4 deletions
diff --git a/meta-networking/recipes-connectivity/nanomsg/nng_1.2.5.bb b/meta-networking/recipes-connectivity/nanomsg/nng_1.4.0.bb
index 77be27ffaa..f61aa0549d 100644
--- a/meta-networking/recipes-connectivity/nanomsg/nng_1.2.5.bb
+++ b/meta-networking/recipes-connectivity/nanomsg/nng_1.4.0.bb
@@ -2,20 +2,23 @@ SUMMARY = "nanomsg-next-generation -- light-weight brokerless messaging"
2DESCRIPTION = "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." 2DESCRIPTION = "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."
3HOMEPAGE = "https://github.com/nanomsg/nng" 3HOMEPAGE = "https://github.com/nanomsg/nng"
4LICENSE = "MIT" 4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a19b15be6e844b39a54de2ef665bd6de" 5LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a41e579bb4326c21c774f8e51e41d8a3"
6 6
7SECTION = "libs/networking" 7SECTION = "libs/networking"
8 8
9SRCREV = "53ae1a5ab37fdfc9ad5c236df3eaf4dd63f0fee9" 9SRCREV = "d020adda8f0348d094790618703b8341a26007a3"
10 10
11SRC_URI = "git://github.com/nanomsg/nng.git;branch=v1.2.x" 11SRC_URI = "git://github.com/nanomsg/nng.git"
12 12
13S = "${WORKDIR}/git" 13S = "${WORKDIR}/git"
14 14
15inherit cmake pkgconfig 15inherit cmake pkgconfig
16 16
17EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON" 17EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON -DNNG_ENABLE_NNGCAT=ON"
18 18
19PACKAGECONFIG ??= "" 19PACKAGECONFIG ??= ""
20 20
21PACKAGECONFIG[mbedtls] = "-DNNG_ENABLE_TLS=ON,-DNNG_ENABLE_TLS=OFF,mbedtls" 21PACKAGECONFIG[mbedtls] = "-DNNG_ENABLE_TLS=ON,-DNNG_ENABLE_TLS=OFF,mbedtls"
22
23PACKAGES =+ "${PN}-tools"
24FILES_${PN}-tools = "${bindir}/*"