@@ -16,8 +16,8 @@ class kubernetes_client_cRecipe(ConanFile):
1616
1717 # Binary configuration
1818 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" }
2121
2222 # Sources are located in the same place as this recipe, copy them to the recipe
2323 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):
6161
6262 def requirements (self ):
6363 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