diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2022-03-28 17:39:41 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-03-29 08:28:38 -0700 |
commit | a842c0d0b4e86cc5247f30ad46cfdd512413054d (patch) | |
tree | bbc42a11075403b1fa33e71f996779f3b79d9f13 /meta-oe/recipes-extended/libqb/libqb_2.0.6.bb | |
parent | 82fa05b36a15621a1a7cec5f407947e190e93920 (diff) | |
download | meta-openembedded-a842c0d0b4e86cc5247f30ad46cfdd512413054d.tar.gz |
libqb: upgrade 2.0.4 -> 2.0.6
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/libqb/libqb_2.0.6.bb')
-rw-r--r-- | meta-oe/recipes-extended/libqb/libqb_2.0.6.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/libqb/libqb_2.0.6.bb b/meta-oe/recipes-extended/libqb/libqb_2.0.6.bb new file mode 100644 index 000000000..ce3606d77 --- /dev/null +++ b/meta-oe/recipes-extended/libqb/libqb_2.0.6.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SUMMARY = "An IPC library for high performance servers" | ||
2 | DESCRIPTION = "libqb is a library with the primary purpose of providing high performance client server reusable features. \ | ||
3 | It provides high performance logging, tracing, ipc, and poll." | ||
4 | |||
5 | HOMEPAGE = "https://github.com/clusterlabs/libqb/wiki" | ||
6 | SECTION = "libs" | ||
7 | LICENSE = "LGPL-2.1-only" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785" | ||
9 | |||
10 | inherit autotools pkgconfig | ||
11 | |||
12 | SRCREV = "758044bed5f615c90818aa5431d00303288888e5" | ||
13 | SRC_URI = "git://github.com/ClusterLabs/${BPN}.git;branch=main;protocol=https \ | ||
14 | " | ||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | DEPENDS += "libxml2" | ||
18 | |||
19 | CFLAGS += "-pthread -D_REENTRANT" | ||
20 | |||
21 | do_configure:prepend() { | ||
22 | ( cd ${S} | ||
23 | ${S}/autogen.sh ) | ||
24 | } | ||
25 | |||
26 | BBCLASSEXTEND = "native" | ||