mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-30 06:06:43 +00:00
Merge pull request #6679 from heitbaum/openssl
openssl: update to 3.0.5
This commit is contained in:
commit
3cb6a0ad6e
@ -3,8 +3,8 @@
|
|||||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||||
|
|
||||||
PKG_NAME="openssl"
|
PKG_NAME="openssl"
|
||||||
PKG_VERSION="3.0.4"
|
PKG_VERSION="3.0.5"
|
||||||
PKG_SHA256="2831843e9a668a0ab478e7020ad63d2d65e51f72977472dc73efcefbafc0c00f"
|
PKG_SHA256="aa7d8d9bef71ad6525c55ba11e5f4397889ce49c2c9349dcea6d3e4f0b024a7a"
|
||||||
PKG_LICENSE="Apache-2.0"
|
PKG_LICENSE="Apache-2.0"
|
||||||
PKG_SITE="https://www.openssl.org"
|
PKG_SITE="https://www.openssl.org"
|
||||||
PKG_URL="https://www.openssl.org/source/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
PKG_URL="https://www.openssl.org/source/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
||||||
|
@ -1,40 +0,0 @@
|
|||||||
From 65d6793e240643116037b4bb758e40b7db5cc7ee Mon Sep 17 00:00:00 2001
|
|
||||||
From: Bernd Edlinger <bernd.edlinger@hotmail.de>
|
|
||||||
Date: Fri, 17 Jun 2022 10:25:24 +0200
|
|
||||||
Subject: [PATCH] Fix compile issues in test/v3ext.c with no-rfc3779
|
|
||||||
|
|
||||||
There are no ASIdentifiers if OPENSSL_NO_RFC3779 is defined,
|
|
||||||
therefore the test cannot be compiled.
|
|
||||||
---
|
|
||||||
test/v3ext.c | 4 ++++
|
|
||||||
1 file changed, 4 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/test/v3ext.c b/test/v3ext.c
|
|
||||||
index 0d371ec280f1..29e33d16a5fa 100644
|
|
||||||
--- a/test/v3ext.c
|
|
||||||
+++ b/test/v3ext.c
|
|
||||||
@@ -37,6 +37,7 @@ static int test_pathlen(void)
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
+#ifndef OPENSSL_NO_RFC3779
|
|
||||||
static int test_asid(void)
|
|
||||||
{
|
|
||||||
ASN1_INTEGER *val1 = NULL, *val2 = NULL;
|
|
||||||
@@ -113,6 +114,7 @@ static int test_asid(void)
|
|
||||||
ASIdentifiers_free(asid4);
|
|
||||||
return testresult;
|
|
||||||
}
|
|
||||||
+#endif /* OPENSSL_NO_RFC3779 */
|
|
||||||
|
|
||||||
OPT_TEST_DECLARE_USAGE("cert.pem\n")
|
|
||||||
|
|
||||||
@@ -127,6 +129,8 @@ int setup_tests(void)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
ADD_TEST(test_pathlen);
|
|
||||||
+#ifndef OPENSSL_NO_RFC3779
|
|
||||||
ADD_TEST(test_asid);
|
|
||||||
+#endif /* OPENSSL_NO_RFC3779 */
|
|
||||||
return 1;
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user