summaryrefslogtreecommitdiffstats
path: root/recipes-extended/glusterfs/files/0001-configure-pass-SSL_CERTS.-Don-t-discover-it.patch
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2024-01-25 18:20:53 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2024-01-25 18:20:53 +0000
commitee56997e85a68575bc7bb8a8ee6945d77cf5fe02 (patch)
tree6900bb068e61ff3d1df54f53041f41c177f73a49 /recipes-extended/glusterfs/files/0001-configure-pass-SSL_CERTS.-Don-t-discover-it.patch
parentd02fe61c35a7c5dcec5f4e7e6b9f89eae0da8440 (diff)
downloadmeta-cloud-services-ee56997e85a68575bc7bb8a8ee6945d77cf5fe02.tar.gz
glusterfs: update to 11.1
Updating to 11.1, which requires the following changes: - patch context refreshes - SSL certification patch to configure.ac - drop obselete packageconfigs - package new outputs of the build - drop backported patches Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-extended/glusterfs/files/0001-configure-pass-SSL_CERTS.-Don-t-discover-it.patch')
-rw-r--r--recipes-extended/glusterfs/files/0001-configure-pass-SSL_CERTS.-Don-t-discover-it.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes-extended/glusterfs/files/0001-configure-pass-SSL_CERTS.-Don-t-discover-it.patch b/recipes-extended/glusterfs/files/0001-configure-pass-SSL_CERTS.-Don-t-discover-it.patch
new file mode 100644
index 0000000..d139ea2
--- /dev/null
+++ b/recipes-extended/glusterfs/files/0001-configure-pass-SSL_CERTS.-Don-t-discover-it.patch
@@ -0,0 +1,30 @@
1From 526b64958b8aabcbad48ffb61f6855b374a68da6 Mon Sep 17 00:00:00 2001
2From: Bruce Ashfield <bruce.ashfield@gmail.com>
3Date: Thu, 25 Jan 2024 18:08:01 +0000
4Subject: [PATCH] configure: pass SSL_CERTS. Don't discover it
5
6Executing the ssl binary to locate the certificates doesn't work
7in our environment. Pass it to the build instead.
8
9Upstream-Status: Inappropriate [embedded specific]
10
11Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
12---
13 configure.ac | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/configure.ac b/configure.ac
17index 1cda220..fe14134 100644
18--- a/configure.ac
19+++ b/configure.ac
20@@ -814,6 +814,7 @@ AS_IF([test "x$enable_fuse_notifications" != "xno"], [
21 dnl Find out OpenSSL trusted certificates path
22 AC_MSG_CHECKING([for OpenSSL trusted certificates path])
23 SSL_CERT_PATH=$(openssl version -d | sed -e 's|OPENSSLDIR: "\(.*\)".*|\1|')
24+SSL_CERT_PATH="${SSL_CERTS_DIR}"
25 if test -d "${SSL_CERT_PATH}" 1>/dev/null 2>&1; then
26 AC_MSG_RESULT([$SSL_CERT_PATH])
27 AC_DEFINE_UNQUOTED(SSL_CERT_PATH, ["$SSL_CERT_PATH"], [Path to OpenSSL trusted certificates.])
28--
292.39.2
30