-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
openssl: Make debug build renaming optional #10939
Conversation
It comes from an old commit: conan-community/conan-openssl@e565e05 /cc @SSE4 Anyway this |
It is already deleted for versions where it is not used. Deleting it for other compilers, will make it more complicated to use the option, as conan will complain about the option not existing when you simply specify that as an option in a consumer conanfile. One would have to replicate the checks, or could possibly check if the option exists before setting it. In any case it would require a configure function, rather than just being able to use default_options |
57f73a4
to
159d5a1
Compare
well, it came from the bug in the |
I don't really care either way, was just trying to go for "as little impact as required" which in this instance is basically no impact for those who continue to want to run it the way it has been. Ultimately I don't care much about how this is solved, so long as it is (and continues to be with future updates) possible to have output files that are named exactly the same regardless of configuration. Unless I missed something it seems like conan provides its own FindOpenSSL.cmake file anyway that is then used by cmake? Happy to do changes that help reach the goal. |
This comment has been minimized.
This comment has been minimized.
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I detected other pull requests that are modifying openssl/1.x.x recipe:
This message is automatically generated by https://github.com/ericLemanissier/conan-center-conflicting-prsso don't hesitate to report issues/improvements there. |
Any update on this? |
There's a lot of PRs open, you can see prince-chrismc/conan-center-index-pending-review#1 to track the status of CCI there's a few minor things out of date with the bot so the results are not perfect 🤞 we can get those fixed soon ish |
The original behavior matches upstream and the official find module https://gitlab.kitware.com/cmake/cmake/-/blob/master/Modules/FindOpenSSL.cmake#L282
If you are installing the binaries built by conan center why not just use conan to consume them? as you point the generators provide the correct targets so you should not have any problems. 🤔 |
It doesn't match upstream actually. |
…h it was explicitly added despite it not being there in upstream
159d5a1
to
66bee89
Compare
All green in build 5 (
|
there are some conflicts as notified by github |
This branch has conflicts that must be resolved |
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This pull request has been automatically closed because it has not had recent activity. Thank you for your contributions. |
Specify library name and version: openssl/>=1.1.0
Make debug build library renaming optional for openssl >= 1.1.0 which for some inexplicable reason was explicitly added despite it not being there in upstream.
It's especially useless in a conan environment as every build has its own directory and actually makes it extremely painful to work with such libraries.