-
Notifications
You must be signed in to change notification settings - Fork 38.6k
build: Do not define ENABLE_ZMQ when ZMQ is not available
#27696
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
Conversation
A new behavior is consistent with the other optional dependencies. The source code contains `#if ENABLE_ZMQ` lines only.
|
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. ReviewsSee the guideline for information on the review process.
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update. |
sedited
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK fa5831b
Verified that the symbol is not defined when zmq is not available in config.status.
|
hashes: |
jarolrod
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK fa5831b
|
Huh? This looks wrong... |
It does. But when the build system either defines |
A new behavior is consistent with the other optional dependencies.
The source code contains
#if ENABLE_ZMQlines only:Change in description line -- "Define to 1..." --> "Define this symbol.." -- is motivated by the fact that the actual value of the defined
ENABLE_ZMQmacro does not matter at all.Related to:
#if defined(...)#16419