cppzmq-dev expects /usr/lib/libzmq.a#803
Closed
chadrockey wants to merge 1 commit intoopenembedded:masterfrom
Closed
cppzmq-dev expects /usr/lib/libzmq.a#803chadrockey wants to merge 1 commit intoopenembedded:masterfrom
chadrockey wants to merge 1 commit intoopenembedded:masterfrom
Conversation
Contributor
|
applied to master with decc39d |
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 15, 2025
Changelog: https://github.com/c-ares/c-ares/releases/tag/v1.32.0 Features: Add support for DNS 0x20 to help prevent cache poisoning attacks, enabled by specifying ARES_FLAG_DNS0x20. Disabled by default. PR openembedded#800 Rework query timeout logic to automatically adjust timeouts based on network conditions. The timeout specified now is only used as a hint until there is enough history to calculate a more valid timeout. PR openembedded#794 Changes: DNS RR TXT strings should not be automatically concatenated as there are use cases outside of RFC 7208. In order to maintain ABI compliance, the ability to retrieve TXT strings concatenated is retained as well as a new API to retrieve the individual strings. This restores behavior from c-ares 1.20.0. PR openembedded#801 Clean up header inclusion logic to make hacking on code easier. PR openembedded#797 GCC/Clang: Enable even more strict warnings to catch more coding flaws. 253bdee MSVC: Enable /W4 warning level. PR openembedded#792 Bugfixes: Tests: Fix thread race condition in test cases for EventThread. PR openembedded#803 Windows: Fix building with UNICODE. PR openembedded#802 Thread Saftey: ares_timeout() was missing lock. 74a64e4 Fix building with DJGPP (32bit protected mode DOS). PR openembedded#789 Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When following the build instructions for cppzmq, it's recommended to use cmake and find_package
https://github.com/zeromq/cppzmq?tab=readme-ov-file#build-instructions
#find cppzmq wrapper, installed by make of cppzmq find_package(cppzmq) target_link_libraries(*Your Project Name* cppzmq)When including this recipe as cppzmq-dev, it does include the base c library zeromq-dev, shared but doesn't include the static lib dependency that this header only library seems to expect:
`CMake Error at /usr/lib/cmake/ZeroMQ/ZeroMQTargets.cmake:97 (message):
The imported target "libzmq-static" references the file
but this file does not exist. Possible reasons include:`
This change ensures that the build instructions for cppzmq work as expected if you request cppzmq-dev. Without this, the user would need to also include zeromq-staticdev on their own or modify the upstream cmake file/create their own cmake file.