Skip to content

Commit 2534aa2

Browse files
committed
build: configure Conan OpenSSL with no_module:True
Fixes DES encryption when using the Conan-built OpenSSL. re conan-io/conan-center-index#10409
1 parent 7104290 commit 2534aa2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

conanfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ def requirements(self):
1414

1515
if self.settings.os in ["Windows", "Macos"]:
1616
self.requires("libjpeg-turbo/3.1.2")
17-
self.requires("openssl/3.5.4")
17+
self.requires("openssl/3.5.4", options = {
18+
"no_module": True
19+
})
1820
self.requires("libssh2/1.11.1", options = {
1921
"with_zlib": False
2022
})

0 commit comments

Comments
 (0)