mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
51 lines
1.9 KiB
Diff
51 lines
1.9 KiB
Diff
https://github.com/OpenSC/libp11/pull/503
|
|
https://bugs.gentoo.org/910203
|
|
|
|
From 580c12b78b63d88010a6178d7c4c58186938c479 Mon Sep 17 00:00:00 2001
|
|
From: Dominique Leuenberger <dimstar@opensuse.org>
|
|
Date: Tue, 6 Jun 2023 14:27:46 +0200
|
|
Subject: [PATCH] Detect openSSL 3.1; compatible to openSSL 3.0
|
|
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index d6b0ee91..b96979d9 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -33,7 +33,7 @@ AC_C_BIGENDIAN
|
|
# issues with applications linking to new openssl, old libp11, and vice versa
|
|
case "`$PKG_CONFIG --modversion --silence-errors libcrypto || \
|
|
$PKG_CONFIG --modversion openssl`" in
|
|
- 3.0.*) # Predicted engines directory prefix for OpenSSL 3.x
|
|
+ 3.1.*|3.0.*) # Predicted engines directory prefix for OpenSSL 3.x
|
|
LIBP11_LT_OLDEST="3"
|
|
debian_ssl_prefix="openssl-3.0.0";;
|
|
1.1.*) # Predicted engines directory prefix for OpenSSL 1.1.x
|
|
From 0697773b403efb8e7fa9f0c0fddcb499fb9b6337 Mon Sep 17 00:00:00 2001
|
|
From: Mike Gilbert <floppym@gentoo.org>
|
|
Date: Thu, 13 Jul 2023 13:52:54 -0400
|
|
Subject: [PATCH] configure: 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
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index b96979d9..c344e84a 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -33,7 +33,7 @@ AC_C_BIGENDIAN
|
|
# issues with applications linking to new openssl, old libp11, and vice versa
|
|
case "`$PKG_CONFIG --modversion --silence-errors libcrypto || \
|
|
$PKG_CONFIG --modversion openssl`" in
|
|
- 3.1.*|3.0.*) # Predicted engines directory prefix for OpenSSL 3.x
|
|
+ 3.*) # Predicted engines directory prefix for OpenSSL 3.x
|
|
LIBP11_LT_OLDEST="3"
|
|
debian_ssl_prefix="openssl-3.0.0";;
|
|
1.1.*) # Predicted engines directory prefix for OpenSSL 1.1.x
|