diff options
| author | Khem Raj <raj.khem@gmail.com> | 2021-06-04 18:27:21 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-06-05 06:06:27 -0700 |
| commit | 109700fc61f7fb377dccabe87830b1f15eb0131b (patch) | |
| tree | 5a5996d7f940aa055532c34ef396f80b1f863ca1 | |
| parent | 0b15f800126cca6c90183e8a13d26d2504c4461f (diff) | |
| download | meta-openembedded-109700fc61f7fb377dccabe87830b1f15eb0131b.tar.gz | |
libwebsockets: Update to latest on v4.2-stable
Remove unused variable which is flagged by clang
License-Update: copy secondary license texts into LICENSE as a convenience
Add Apache-2.0 as well since lib/tls/mbedtls/wrapper is using it
[1] https://github.com/warmcat/libwebsockets/commit/a12d5ebed672a28c16484d983885474be606cc21#diff-c693279643b8cd5d248172d9c22cb7cf4ed163a3c98c8a3f69c2717edd3eacb7
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-connectivity/libwebsockets/libwebsockets/0001-core-net-Remove-unused-variable.patch | 54 | ||||
| -rw-r--r-- | meta-oe/recipes-connectivity/libwebsockets/libwebsockets_4.2.0.bb | 10 |
2 files changed, 60 insertions, 4 deletions
diff --git a/meta-oe/recipes-connectivity/libwebsockets/libwebsockets/0001-core-net-Remove-unused-variable.patch b/meta-oe/recipes-connectivity/libwebsockets/libwebsockets/0001-core-net-Remove-unused-variable.patch new file mode 100644 index 0000000000..d648c284b5 --- /dev/null +++ b/meta-oe/recipes-connectivity/libwebsockets/libwebsockets/0001-core-net-Remove-unused-variable.patch | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | From cfa40cc1c2df6c64fb53bb4a2a56eb09e3e1309c Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Fri, 4 Jun 2021 18:21:58 -0700 | ||
| 4 | Subject: [PATCH] core-net: Remove unused variable | ||
| 5 | |||
| 6 | variable 'n' is being set but it is not used anywhere, latest clang is | ||
| 7 | able to detect this and flags it | ||
| 8 | |||
| 9 | Fixes | ||
| 10 | |||
| 11 | lib/core-net/route.c:41:6: error: variable 'n' set but not used [-Werror,-Wunused-but-set-variable] | ||
| 12 | | int n = 0; | ||
| 13 | | ^ | ||
| 14 | |||
| 15 | Upstream-Status: Submitted [https://github.com/warmcat/libwebsockets/pull/2320] | ||
| 16 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 17 | --- | ||
| 18 | lib/core-net/route.c | 7 +++---- | ||
| 19 | 1 file changed, 3 insertions(+), 4 deletions(-) | ||
| 20 | |||
| 21 | diff --git a/lib/core-net/route.c b/lib/core-net/route.c | ||
| 22 | index efe08ba1..6be93d62 100644 | ||
| 23 | --- a/lib/core-net/route.c | ||
| 24 | +++ b/lib/core-net/route.c | ||
| 25 | @@ -38,23 +38,22 @@ void | ||
| 26 | _lws_routing_entry_dump(lws_route_t *rou) | ||
| 27 | { | ||
| 28 | char sa[48], fin[192], *end = &fin[sizeof(fin)]; | ||
| 29 | - int n = 0; | ||
| 30 | |||
| 31 | if (rou->dest.sa4.sin_family) { | ||
| 32 | lws_sa46_write_numeric_address(&rou->dest, sa, sizeof(sa)); | ||
| 33 | - n += lws_snprintf(fin, lws_ptr_diff_size_t(end, fin), | ||
| 34 | + lws_snprintf(fin, lws_ptr_diff_size_t(end, fin), | ||
| 35 | "dst: %s/%d, ", sa, rou->dest_len); | ||
| 36 | } | ||
| 37 | |||
| 38 | if (rou->src.sa4.sin_family) { | ||
| 39 | lws_sa46_write_numeric_address(&rou->src, sa, sizeof(sa)); | ||
| 40 | - n += lws_snprintf(fin, lws_ptr_diff_size_t(end, fin), | ||
| 41 | + lws_snprintf(fin, lws_ptr_diff_size_t(end, fin), | ||
| 42 | "src: %s/%d, ", sa, rou->src_len); | ||
| 43 | } | ||
| 44 | |||
| 45 | if (rou->gateway.sa4.sin_family) { | ||
| 46 | lws_sa46_write_numeric_address(&rou->gateway, sa, sizeof(sa)); | ||
| 47 | - n += lws_snprintf(fin, lws_ptr_diff_size_t(end, fin), | ||
| 48 | + lws_snprintf(fin, lws_ptr_diff_size_t(end, fin), | ||
| 49 | "gw: %s, ", sa); | ||
| 50 | } | ||
| 51 | |||
| 52 | -- | ||
| 53 | 2.31.1 | ||
| 54 | |||
diff --git a/meta-oe/recipes-connectivity/libwebsockets/libwebsockets_4.2.0.bb b/meta-oe/recipes-connectivity/libwebsockets/libwebsockets_4.2.0.bb index 89c98fec02..18b72ae8f5 100644 --- a/meta-oe/recipes-connectivity/libwebsockets/libwebsockets_4.2.0.bb +++ b/meta-oe/recipes-connectivity/libwebsockets/libwebsockets_4.2.0.bb | |||
| @@ -1,13 +1,15 @@ | |||
| 1 | SUMMARY = "Canonical libwebsockets.org websocket library" | 1 | SUMMARY = "Canonical libwebsockets.org websocket library" |
| 2 | HOMEPAGE = "https://libwebsockets.org/" | 2 | HOMEPAGE = "https://libwebsockets.org/" |
| 3 | LICENSE = "MIT & Zlib & BSD-3-Clause" | 3 | LICENSE = "MIT & Zlib & BSD-3-Clause & Apache-2.0" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8c47b078124308a4e1354e8d59f606b7" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c8bea43a2eb5d713c338819a0be07797" |
| 5 | 5 | ||
| 6 | DEPENDS = "zlib" | 6 | DEPENDS = "zlib" |
| 7 | 7 | ||
| 8 | S = "${WORKDIR}/git" | 8 | S = "${WORKDIR}/git" |
| 9 | SRCREV = "1367c11e1ee44d9e19daa50e1d015365bae17354" | 9 | SRCREV = "4b6a7982b6833c8ccac1f35caaf9e8ccc605ff9a" |
| 10 | SRC_URI = "git://github.com/warmcat/libwebsockets.git;protocol=https;branch=v4.2-stable" | 10 | SRC_URI = "git://github.com/warmcat/libwebsockets.git;protocol=https;branch=v4.2-stable \ |
| 11 | file://0001-core-net-Remove-unused-variable.patch \ | ||
| 12 | " | ||
| 11 | 13 | ||
| 12 | UPSTREAM_CHECK_URI = "https://github.com/warmcat/${BPN}/releases" | 14 | UPSTREAM_CHECK_URI = "https://github.com/warmcat/${BPN}/releases" |
| 13 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" | 15 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" |
