conan-io / conan-center-index

Recipes for the ConanCenter repository
https://conan.io/center
MIT License
958 stars 1.76k forks source link

[request] wolfssl/4.4.0 : support more configuration options like opensslextra #2154

Open kirandivekar opened 4 years ago

kirandivekar commented 4 years ago

Package Details

The existing recipe for wolfssl supports only "shared" and "fPIC" options. Need support for option to enable openssl extra compatibility layer. The default value can be set to false.

Something like the following:-

options = { "shared": [True, False], "fPIC": [True, False], "opensslextra": [True, False], } default_options = { "shared": False, "fPIC": True, "opensslextra": False, }

kirandivekar commented 4 years ago

Thanks @madebr. Although the status of PR in https://github.com/conan-io/conan-center-index/pull/2027 shows "Merged", I don't see that in the master branch. Am I missing something?

madebr commented 4 years ago

No, it's closed because the branch got deleted. This may have happened by accident.

kirandivekar commented 4 years ago

Thanks. I recreated a new PR here: https://github.com/conan-io/conan-center-index/pull/2167