Skip to content

Commit a942a45

Browse files
committed
vendor: Update cpp-netlib requires openssl/1.1.1s
1 parent 98d1132 commit a942a45

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

vendor/cpp-netlib/conanfile.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ class CppNetlib(ConanFile):
2020
options = {
2121
"shared": [True, False],
2222
}
23-
no_copy_source = True
2423
default_options = {
2524
"shared": False,
2625
}
26+
generators = "CMakeDeps"
27+
no_copy_source = True
2728
requires = [
2829
# CppNetlib does not work with a boost that is newer than 1.69
2930
"boost/[>=1.65.0 <1.70]",
30-
"openssl/1.1.1g",
31+
"openssl/1.1.1s",
3132
]
3233

3334
def source(self):
@@ -46,12 +47,8 @@ def generate(self):
4647
tc.cache_variables["CPP-NETLIB_ENABLE_HTTPS"] = True
4748
tc.cache_variables["CPP-NETLIB_STATIC_BOOST"] = True
4849
tc.cache_variables["CPP-NETLIB_STATIC_OPENSSL"] = True
49-
tc.cache_variables["Boost_NO_BOOST_CMAKE"] = True
5050
tc.generate()
5151

52-
deps = cmake.CMakeDeps(self)
53-
deps.generate()
54-
5552
def build(self):
5653
cm = cmake.CMake(self)
5754
#cm.configure(build_script_folder=self.recipe_folder + "/src")

0 commit comments

Comments
 (0)