summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-08-29 11:08:28 -0700
committerKhem Raj <raj.khem@gmail.com>2022-08-30 00:14:58 -0700
commitb7a1a02d5630af988642034d9eae952289c651f4 (patch)
treeb6fac61b58296384150e50b29aaad8dc86a88ee0
parentfb232b368b0d92ac7222b2a004326821f529baa6 (diff)
downloadmeta-openembedded-b7a1a02d5630af988642034d9eae952289c651f4.tar.gz
dlm: Upgrade to 4.1.1
Forward port patches and add a patch to fix compiler warnings Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-networking/recipes-extended/dlm/dlm/0001-dlm-fix-compile-error-since-xml2-config-should-not-b.patch13
-rw-r--r--meta-networking/recipes-extended/dlm/dlm/0004-include-string.h-for-memset-prototype.patch23
-rw-r--r--meta-networking/recipes-extended/dlm/dlm_4.1.1.bb (renamed from meta-networking/recipes-extended/dlm/dlm_4.0.9.bb)4
3 files changed, 31 insertions, 9 deletions
diff --git a/meta-networking/recipes-extended/dlm/dlm/0001-dlm-fix-compile-error-since-xml2-config-should-not-b.patch b/meta-networking/recipes-extended/dlm/dlm/0001-dlm-fix-compile-error-since-xml2-config-should-not-b.patch
index f56359a473..3d1551574e 100644
--- a/meta-networking/recipes-extended/dlm/dlm/0001-dlm-fix-compile-error-since-xml2-config-should-not-b.patch
+++ b/meta-networking/recipes-extended/dlm/dlm/0001-dlm-fix-compile-error-since-xml2-config-should-not-b.patch
@@ -1,4 +1,4 @@
1From ad207a6f83dac390b2d95e3a8262d27292921863 Mon Sep 17 00:00:00 2001 1From da08f5ec5e553bd43f92a0b0f7476179b0b74502 Mon Sep 17 00:00:00 2001
2From: Changqing Li <changqing.li@windriver.com> 2From: Changqing Li <changqing.li@windriver.com>
3Date: Wed, 26 Jun 2019 11:49:33 +0800 3Date: Wed, 26 Jun 2019 11:49:33 +0800
4Subject: [PATCH] dlm: fix compile error since xml2-config should not be used 4Subject: [PATCH] dlm: fix compile error since xml2-config should not be used
@@ -9,28 +9,27 @@ to find libxml2.
9Upstream-Status: Inappropriate [oe-specific] 9Upstream-Status: Inappropriate [oe-specific]
10 10
11Signed-off-by: Changqing Li <changqing.li@windriver.com> 11Signed-off-by: Changqing Li <changqing.li@windriver.com>
12
12--- 13---
13 fence/Makefile | 4 ++-- 14 fence/Makefile | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-) 15 1 file changed, 2 insertions(+), 2 deletions(-)
15 16
16diff --git a/fence/Makefile b/fence/Makefile 17diff --git a/fence/Makefile b/fence/Makefile
17index b927879..6e16078 100644 18index 2b080468..ff2eda3f 100644
18--- a/fence/Makefile 19--- a/fence/Makefile
19+++ b/fence/Makefile 20+++ b/fence/Makefile
20@@ -18,11 +18,11 @@ CFLAGS += -D_GNU_SOURCE -O2 -ggdb \ 21@@ -18,12 +18,12 @@ CFLAGS += -D_GNU_SOURCE -O2 -ggdb \
21 -fstack-clash-protection -Wl,-z,now 22 -fstack-clash-protection -Wl,-z,now
22 23
23 CFLAGS += -fPIE -DPIE 24 CFLAGS += -fPIE -DPIE
24-CFLAGS += `xml2-config --cflags` 25-CFLAGS += `xml2-config --cflags`
25+CFLAGS += `pkg-config libxml-2.0 --cflags` 26+CFLAGS += `pkg-config libxml-2.0 --cflags`
26 CFLAGS += -I../include 27 CFLAGS += -I../include
28 CFLAGS += $(shell pkg-config --cflags pacemaker-fencing)
27 29
28 LDFLAGS += -Wl,-z,relro -pie 30 LDFLAGS += -Wl,-z,relro -Wl,-z,defs -pie
29-LDFLAGS += `xml2-config --libs` 31-LDFLAGS += `xml2-config --libs`
30+LDFLAGS += `pkg-config libxml-2.0 --libs` 32+LDFLAGS += `pkg-config libxml-2.0 --libs`
31 LDFLAGS += -ldl 33 LDFLAGS += -ldl
32 34
33 all: $(BIN_TARGET) 35 all: $(BIN_TARGET)
34--
352.7.4
36
diff --git a/meta-networking/recipes-extended/dlm/dlm/0004-include-string.h-for-memset-prototype.patch b/meta-networking/recipes-extended/dlm/dlm/0004-include-string.h-for-memset-prototype.patch
new file mode 100644
index 0000000000..257c5d02ff
--- /dev/null
+++ b/meta-networking/recipes-extended/dlm/dlm/0004-include-string.h-for-memset-prototype.patch
@@ -0,0 +1,23 @@
1From 9652e6b3c43b4c051f2ff0e000d7ebf5fbab418e Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 29 Aug 2022 10:54:51 -0700
4Subject: [PATCH] include string.h for memset prototype
5
6Upstream-Status: Submitted [https://pagure.io/dlm/pull-request/3]
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 dlm_controld/lib.c | 1 +
10 1 file changed, 1 insertion(+)
11
12diff --git a/dlm_controld/lib.c b/dlm_controld/lib.c
13index 8cbdd27f..a7502fcd 100644
14--- a/dlm_controld/lib.c
15+++ b/dlm_controld/lib.c
16@@ -10,6 +10,7 @@
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <stdint.h>
20+#include <string.h>
21 #include <errno.h>
22 #include <time.h>
23 #include <sys/types.h>
diff --git a/meta-networking/recipes-extended/dlm/dlm_4.0.9.bb b/meta-networking/recipes-extended/dlm/dlm_4.1.1.bb
index 3e699d2ff6..bb33890ec9 100644
--- a/meta-networking/recipes-extended/dlm/dlm_4.0.9.bb
+++ b/meta-networking/recipes-extended/dlm/dlm_4.1.1.bb
@@ -9,10 +9,10 @@ SRC_URI = "https://pagure.io/dlm/archive/dlm-${PV}/dlm-dlm-${PV}.tar.gz \
9 file://0001-dlm-fix-compile-error-since-xml2-config-should-not-b.patch \ 9 file://0001-dlm-fix-compile-error-since-xml2-config-should-not-b.patch \
10 file://0001-Include-sys-sysmacros.h-for-major-minor-macros-in-gl.patch \ 10 file://0001-Include-sys-sysmacros.h-for-major-minor-macros-in-gl.patch \
11 file://0001-make-Replace-cp-a-with-mode-preserving-options.patch \ 11 file://0001-make-Replace-cp-a-with-mode-preserving-options.patch \
12 file://0004-include-string.h-for-memset-prototype.patch \
12 " 13 "
13 14
14SRC_URI[md5sum] = "4c57a941a15547859cd38fd55f66388e" 15SRC_URI[sha256sum] = "f12c0056b9196dfcecbec2fa8930feb87c605a86ef0f3d7bd6fb0b77cd7f45ca"
15SRC_URI[sha256sum] = "d59142e067cbd603aaf66151a04e9fa34330219680b8827c953d20821b951991"
16 16
17UPSTREAM_CHECK_URI = "https://pagure.io/dlm/releases" 17UPSTREAM_CHECK_URI = "https://pagure.io/dlm/releases"
18UPSTREAM_CHECK_REGEX = "dlm-(?P<pver>\d+(\.\d+)+)" 18UPSTREAM_CHECK_REGEX = "dlm-(?P<pver>\d+(\.\d+)+)"