-
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
wt: bump dependencies and remove old versions #18401
wt: bump dependencies and remove old versions #18401
Conversation
I detected other pull requests that are modifying wt/all recipe:
This message is automatically generated by https://github.com/ericLemanissier/conan-center-conflicting-prs so don't hesitate to report issues/improvements there. |
This comment has been minimized.
This comment has been minimized.
it's fixed in conan >= 1.54.0
d0cb9ef
to
fb4a21a
Compare
Conan v1 pipeline ✔️All green in build 4 (
Conan v2 pipeline ✔️
All green in build 4 ( |
* wt: bump dependencies and remove old versions * remove CMP0077 workaround it's fixed in conan >= 1.54.0 * add package_type * wt: add transitive_headers = True for boost dependency * wt: fix openssl/zlib linking issues --------- Co-authored-by: SpaceIm <30052553+SpaceIm@users.noreply.github.com> Co-authored-by: Pero Skoko <pero.skoko@gmail.com>
* wt: bump dependencies and remove old versions * remove CMP0077 workaround it's fixed in conan >= 1.54.0 * add package_type * wt: add transitive_headers = True for boost dependency * wt: fix openssl/zlib linking issues --------- Co-authored-by: SpaceIm <30052553+SpaceIm@users.noreply.github.com> Co-authored-by: Pero Skoko <pero.skoko@gmail.com>
Specify library name and version: wt/all
find_package(OpenSSL)
is called - this was somehow commented out in earlier versions of the recipe. When bumping OpenSSL to use a version range that includes >=3, OpenSSL now requires ZLIB and it was not being propagated at link time (in Conan 1.x when buildingwt:shared=True
) becausewt
was not consuming the Conan-generated targets, despite the information in the recipe being correct. This PR fixes that by restoring the call tofind_package(OpenSSL)
and ensuring the Conan config is consumed (for good measure, although it's probably not strictly necessary).From #17512:
From #17615:
wt
headers make transitive inclusions to boost asio.