-
Notifications
You must be signed in to change notification settings - Fork 28
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
Some problems when running zmq destination with syslog-ng 3.7.2 #150
Comments
Hi, Incubator is able to use 3.7.x (e.g.: 3.7.2). The main problem is, that the misc.h is not included in zmq-destination.c If I do the include it seems working |
However, |
Unfortunatelly, we do not support the syslog-ng 3.8 in incubator, yet |
I see now. :) |
Thanks, merged |
Hey destination zmq_des { log { source(s_system); destination(zmq_des); };
syslog-ng documentation: http://www.balabit.com/support/documentation/?product=syslog-ng ` |
@liberatorqjw It looks weird. |
@litterbear I did , but it is also the same error |
I found there are problems when running zmq destination with syslog-ng 3.7.2
It compiles successfully, but it fails when running with the configuration below.
I tried by
Both tries failes with following message
I look into the code and found the reason is that the
init_sequence_number
function is not included. Include "lib/misc.h" solve the problem when it is syslog-ng 3.7.2.However
init_sequence_number
is inlib/misc.h
in syslog-ng 3.7.2, andinit_sequence_number
is in lib/seqnum.h in syslog-ng 3.8How should I include the file?
PS:
If I use the syslog-ng 3.8 in the master version to compile syslog-ng-incubator, problems like #149 will be encountered.
The text was updated successfully, but these errors were encountered: