@@ -16,8 +16,8 @@ class kubernetes_client_cRecipe(ConanFile):
16
16
17
17
# Binary configuration
18
18
settings = "os" , "compiler" , "build_type" , "arch"
19
- options = {"shared" : [True , False ], "fPIC" : [True , False ], "openssl_shared" :[True , False ], "openssl_version" : [ "1" , "3" ], " curl_version" : ["7" , "8" ]}
20
- default_options = {"shared" : False , "fPIC" : True , "openssl_shared" : True , "openssl_version" : "3" , " curl_version" : "8" }
19
+ options = {"shared" : [True , False ], "fPIC" : [True , False ], "openssl_shared" :[True , False ], "curl_version" : ["7" , "8" ]}
20
+ default_options = {"shared" : False , "fPIC" : True , "openssl_shared" : True , "curl_version" : "8" }
21
21
22
22
# Sources are located in the same place as this recipe, copy them to the recipe
23
23
exports_sources = "config.h.in" , "ConfigureChecks.cmake" , "PreTarget.cmake" , "PostTarget.cmake" , "CMakeLists.txt" , "src/*" , "external/*" , "api/*" , "model/*" , "include/*" , "config/*" , "watch/*" , "websocket/*"
@@ -61,6 +61,6 @@ def package_info(self):
61
61
62
62
def requirements (self ):
63
63
self .requires ("libcurl/[~{}]" .format (self .options .curl_version ), transitive_headers = True )
64
- self .requires ("openssl/[~{}]" . format ( self . options . openssl_version ) , force = True )
65
- self .requires ("libwebsockets/[^4]" , transitive_headers = True )
66
- self .requires ("libyaml/[^0.2]" )
64
+ self .requires ("openssl/[^3]" , force = True )
65
+ self .requires ("libwebsockets/[^4.2 ]" , transitive_headers = True )
66
+ self .requires ("libyaml/[^0.2.5 ]" )
0 commit comments