-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
BUILD(cmake): Find and link Poco::XML #5616
BUILD(cmake): Find and link Poco::XML #5616
Conversation
If this looks good to y'all I'm happy to send the equivalent pull request to the 1.4.x branch. |
Indeed, it appears that I didn't revise the cmake script after having introduced the dependency on Poco::XML 👀 In theory however, everything that we don't use explicitly, should be handled as an implicit dependency of the modules that we do use (Zip and XML). Did you try if specifying those is enough? |
Thanks for the offer, but there is probably no need for that. I have a tool to backport pull-requests semi-automatically, so that should take care of this :) |
Not at first, but I modified my patch locally and that does seem to work. |
Without this, building against the latest poco snapshot results in errors like: /usr/bin/ld: /builddir/build/BUILD/mumble-1.4.230.src/src/mumble/PluginManifest.cpp:72: undefined reference to `typeinfo for Poco::XML::Element'
0d714f5
to
fefdd79
Compare
I've amended this PR to only add |
Thanks for fixing this 👍 |
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation |
Without this, building against the latest poco snapshot results in errors like:
Checks