diff options
Diffstat (limited to 'meta-networking/recipes-support/libmemcached/libmemcached_1.0.18.bb')
-rw-r--r-- | meta-networking/recipes-support/libmemcached/libmemcached_1.0.18.bb | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/meta-networking/recipes-support/libmemcached/libmemcached_1.0.18.bb b/meta-networking/recipes-support/libmemcached/libmemcached_1.0.18.bb index 56778c0483..561308b33d 100644 --- a/meta-networking/recipes-support/libmemcached/libmemcached_1.0.18.bb +++ b/meta-networking/recipes-support/libmemcached/libmemcached_1.0.18.bb | |||
@@ -1,6 +1,11 @@ | |||
1 | require libmemcached.inc | 1 | DESCRIPTION = "open source C/C++ client library and tools for the memcached server" |
2 | DEPENDS = "libevent util-linux" | ||
3 | SECTION = "libdevel" | ||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=865490941c91ba790f0ea78dec93bd60" | ||
2 | 6 | ||
3 | SRC_URI += "\ | 7 | SRC_URI = "\ |
8 | http://launchpad.net/libmemcached/1.0/${PV}/+download/libmemcached-${PV}.tar.gz \ | ||
4 | file://crosscompile.patch \ | 9 | file://crosscompile.patch \ |
5 | file://0001-configure.ac-Do-not-configure-build-aux.patch \ | 10 | file://0001-configure.ac-Do-not-configure-build-aux.patch \ |
6 | file://0001-Fix-comparison-types.patch \ | 11 | file://0001-Fix-comparison-types.patch \ |
@@ -8,3 +13,15 @@ SRC_URI += "\ | |||
8 | " | 13 | " |
9 | SRC_URI[md5sum] = "b3958716b4e53ddc5992e6c49d97e819" | 14 | SRC_URI[md5sum] = "b3958716b4e53ddc5992e6c49d97e819" |
10 | SRC_URI[sha256sum] = "e22c0bb032fde08f53de9ffbc5a128233041d9f33b5de022c0978a2149885f82" | 15 | SRC_URI[sha256sum] = "e22c0bb032fde08f53de9ffbc5a128233041d9f33b5de022c0978a2149885f82" |
16 | |||
17 | UPSTREAM_CHECK_URI = "https://launchpad.net/libmemcached" | ||
18 | |||
19 | CVE_STATUS[CVE-2023-27478] = "fixed-version: this problem was not yet introduced in 1.0.18" | ||
20 | |||
21 | TARGET_LDFLAGS += "-luuid" | ||
22 | TARGET_CFLAGS += "-D__USE_GNU -D_GNU_SOURCE" | ||
23 | |||
24 | PACKAGECONFIG ??= "" | ||
25 | PACKAGECONFIG[sasl] = "--enable-sasl,--disable-sasl,cyrus-sasl" | ||
26 | |||
27 | inherit autotools gettext pkgconfig | ||