We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
kcat.h
kcat.c
librdkafka version >= 0.9.0
ENABLE_KAFKACONSUMER
configure.self
When building kcat on Windows with ENABLE_KAFKACONSUMER=1, error "E0020: identifier "LOG_DEBUG" is undefined" occurs.
ENABLE_KAFKACONSUMER=1
E0020: identifier "LOG_DEBUG" is undefined
LOG_DEBUG
syslog.h
In win32_config.h (well, or somewhere else; it seems to me that since the problem occurs under Windows, it is best here)
win32_config.h
LOG_*
librdkafka
>= 0.9.0
The text was updated successfully, but these errors were encountered:
Possible solution for edenhill#425
b9120ac
Merge pull request #2 from drlsdee/windows_enable_kafkaconsumer
e37b5e4
Successfully merging a pull request may close this issue.
Steps to reproduce
Cause
kcat.h
andkcat.c
.librdkafka version >= 0.9.0
to enableENABLE_KAFKACONSUMER
that is done inconfigure.self
(lines 28..33).ENABLE_KAFKACONSUMER
remains unset.Related problem
When building kcat on Windows with
ENABLE_KAFKACONSUMER=1
, error "E0020: identifier "LOG_DEBUG" is undefined
" occurs.Cause
LOG_DEBUG
is defined insyslog.h
.syslog.h
is not included (seekcat.c
, lines 29..38) because there is no version for Windows.Possible solution
In
win32_config.h
(well, or somewhere else; it seems to me that since the problem occurs under Windows, it is best here)LOG_*
as insyslog.h
;librdkafka
version check>= 0.9.0
and definition ofENABLE_KAFKACONSUMER
identifierThe text was updated successfully, but these errors were encountered: