Skip to content

Commit 43c34ad

Browse files
committed
[depends] Update OpenSSL to 3.0.18
1 parent 3a3003e commit 43c34ad

File tree

8 files changed

+14
-28
lines changed

8 files changed

+14
-28
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
cmake_minimum_required(VERSION 3.5)
1+
cmake_minimum_required(VERSION 3.15)
2+
23
project(audiodecoder.sacd)
34

45
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR})

audiodecoder.sacd/addon.xml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<addon
33
id="audiodecoder.sacd"
4-
version="22.0.1"
4+
version="22.0.2"
55
name="SACD ISO support"
66
provider-name="Team Kodi, AlwinEsch">
77
<requires>@ADDON_DEPENDS@</requires>

audiodecoder.sacd/changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v22.0.2
2+
- Update openssl to 3.0.18
3+
14
v20.3.0:
25
- Update openssl to 1.1.1n
36
- Fix build for macOS arm64

depends/windows/openssl/01-quote-cc.patch

Lines changed: 0 additions & 14 deletions
This file was deleted.

depends/windows/openssl/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
cmake_minimum_required(VERSION 3.5)
1+
cmake_minimum_required(VERSION 3.15)
22

3-
project(openssl VERSION 1.1.1 LANGUAGES C)
3+
project(openssl VERSION 3.0.18 LANGUAGES C)
44

55
find_package(StrawberryPerl REQUIRED)
66

@@ -17,7 +17,7 @@ elseif(_AMD64_)
1717
set(OPENSSL_PLATFORM VC-WIN64A)
1818
elseif(_ARM64_)
1919
message(STATUS "arm64")
20-
set(OPENSSL_PLATFORM VC-WIN64-ARM)
20+
set(OPENSSL_PLATFORM VC-WIN64-ARM)
2121
else()
2222
message(FATAL_ERROR "Unsupported target architecture")
2323
endif()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0686897afd3a08223760db73d8034550401b53ffc545798d7ca476564f80315e
1+
8037cdcb2a932d2db4f2fad79eda7e379c10bf17c5b3c8cb4ce9d084ad269a67
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
openssl https://github.com/openssl/openssl/archive/OpenSSL_1_1_1q.tar.gz
1+
openssl https://github.com/openssl/openssl/archive/openssl-3.0.18.tar.gz

depends/windowsstore/openssl/CMakeLists.txt

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5)
1+
cmake_minimum_required(VERSION 3.15)
22
project(openssl)
33

44
include(CheckSymbolExists)
@@ -8,13 +8,9 @@ check_symbol_exists(_ARM_ "Windows.h" _ARM_)
88
check_symbol_exists(_ARM64_ "Windows.h" _ARM64_)
99

1010
if(_X86_)
11-
set(OPENSSL_ARCHIVE_NAME openssl-1.1.1d-win10-win32-v141-20200105)
11+
set(OPENSSL_ARCHIVE_NAME openssl-3.0.18-win10-win32-v143-20251018)
1212
elseif(_X64_)
13-
set(OPENSSL_ARCHIVE_NAME openssl-1.1.1d-win10-x64-v141-20200105)
14-
elseif(_ARM_)
15-
set(OPENSSL_ARCHIVE_NAME openssl-1.1.1d-win10-arm-v141-20200105)
16-
elseif(_ARM64_)
17-
set(OPENSSL_ARCHIVE_NAME openssl-1.1.1d-win10-arm64-v141-20200105)
13+
set(OPENSSL_ARCHIVE_NAME openssl-3.0.18-win10-x64-v143-20251018)
1814
else()
1915
message(FATAL_ERROR "Unsupported architecture")
2016
endif()

0 commit comments

Comments
 (0)