summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorSana Kazi <sanakazi720@gmail.com>2024-10-21 12:17:46 +0530
committerKhem Raj <raj.khem@gmail.com>2024-10-21 20:54:47 -0700
commitc3e4879c5c7abbf57b0c2633a66137e302604e0a (patch)
treef81f2f2a8b2a226b97aa1b89439f04aeba42e1e1 /meta-oe
parent2ed0939c882c5513cbf1a9acc56c98e346375255 (diff)
downloadmeta-openembedded-c3e4879c5c7abbf57b0c2633a66137e302604e0a.tar.gz
libp11: Treat all openssl-3.x releases the same
OpenSSL's soversion will not change for any 3.x minor release. https://www.openssl.org/policies/general/versioning-policy.html Signed-off-by: Sana Kazi <sanakazi720@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-support/libp11/files/0001-detect-correct-openssl-3.x.patch28
-rw-r--r--meta-oe/recipes-support/libp11/libp11_0.4.12.bb5
2 files changed, 32 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/libp11/files/0001-detect-correct-openssl-3.x.patch b/meta-oe/recipes-support/libp11/files/0001-detect-correct-openssl-3.x.patch
new file mode 100644
index 000000000..aa61e9d97
--- /dev/null
+++ b/meta-oe/recipes-support/libp11/files/0001-detect-correct-openssl-3.x.patch
@@ -0,0 +1,28 @@
1From 74497e0fa5b69b15790d6697e1ebce13af842d4c Mon Sep 17 00:00:00 2001
2From: Mike Gilbert <floppym@gentoo.org>
3Date: Thu, 13 Jul 2023 13:52:54 -0400
4Subject: [PATCH] configure: treat all openssl-3.x releases the same
5
6OpenSSL's soversion will not change for any 3.x minor release.
7
8https://www.openssl.org/policies/general/versioning-policy.html
9---
10 configure.ac | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13Upstream-Status: Backport [https://github.com/OpenSC/libp11/commit/74497e0fa5b69b15790d6697e1ebce13af842d4c.patch]
14Signed-off-by: Sana Kazi <sanakazi720@gmail.com>
15
16diff --git a/configure.ac b/configure.ac
17index b96979d9..c344e84a 100644
18--- a/configure.ac
19+++ b/configure.ac
20@@ -33,7 +33,7 @@ AC_C_BIGENDIAN
21 # issues with applications linking to new openssl, old libp11, and vice versa
22 case "`$PKG_CONFIG --modversion --silence-errors libcrypto || \
23 $PKG_CONFIG --modversion openssl`" in
24- 3.0.*) # Predicted engines directory prefix for OpenSSL 3.x
25+ 3.*) # Predicted engines directory prefix for OpenSSL 3.x
26 LIBP11_LT_OLDEST="3"
27 debian_ssl_prefix="openssl-3.0.0";;
28 1.1.*) # Predicted engines directory prefix for OpenSSL 1.1.x
diff --git a/meta-oe/recipes-support/libp11/libp11_0.4.12.bb b/meta-oe/recipes-support/libp11/libp11_0.4.12.bb
index 223778200..cc4a138e2 100644
--- a/meta-oe/recipes-support/libp11/libp11_0.4.12.bb
+++ b/meta-oe/recipes-support/libp11/libp11_0.4.12.bb
@@ -9,7 +9,10 @@ LICENSE = "LGPL-2.0-or-later"
9LIC_FILES_CHKSUM = "file://COPYING;md5=fad9b3332be894bab9bc501572864b29" 9LIC_FILES_CHKSUM = "file://COPYING;md5=fad9b3332be894bab9bc501572864b29"
10DEPENDS = "libtool openssl" 10DEPENDS = "libtool openssl"
11 11
12SRC_URI = "git://github.com/OpenSC/libp11.git;branch=master;protocol=https" 12SRC_URI = "git://github.com/OpenSC/libp11.git;branch=master;protocol=https \
13 file://0001-detect-correct-openssl-3.x.patch \
14"
15
13SRCREV = "53d65dc48cf436694f7edcfc805414e608e8a2bf" 16SRCREV = "53d65dc48cf436694f7edcfc805414e608e8a2bf"
14 17
15UPSTREAM_CHECK_GITTAGREGEX = "libp11-(?P<pver>\d+(\.\d+)+)" 18UPSTREAM_CHECK_GITTAGREGEX = "libp11-(?P<pver>\d+(\.\d+)+)"