-
Notifications
You must be signed in to change notification settings - Fork 477
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
configure.ac: fix --with-net-snmp #3180
Conversation
The option '--with-net-snmp' did not work, because later checks were using the variable '$with_netsnmp' rather than '$with_net_snmp'. There are two possible solutions: - make the option '--with-netsnmp' - change the internal variables Opt for the second option so the user-visible options remain the same. Signed-off-by: Thomas De Schampheleire <[email protected]>
This user does not have permission to start the build. Can one of the admins verify this patch and start the build? |
2 similar comments
This user does not have permission to start the build. Can one of the admins verify this patch and start the build? |
This user does not have permission to start the build. Can one of the admins verify this patch and start the build? |
@kira-syslogng ok to test |
Build SUCCESS |
Thank you for the fix! I would prefer to see a changenote . Users might have not used it either because they were unaware of this option, in which case advertizing would help. Or they workarounded it, in which case they may be interested in the change. Either way, I think it worths a simple entry in the packaging category. |
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.
Thank you for your patch!
Thanks! |
The option '--with-net-snmp' did not work, because later checks were using
the variable '$with_netsnmp' rather than '$with_net_snmp'.
As a result, the net-snmp-config option was always searched in the PATH.
There are two possible solutions:
Opt for the second option so the user-visible options remain the same.
Signed-off-by: Thomas De Schampheleire [email protected]
(Note: I did not add a news item as I think very few people actually use this, and it was broken for almost a year, let me know if you would prefer one)