RE: [syslog-ng]syslog-ng 1.5.16 released
It was solaris 8, configure options don't really matter (in my case, I didn't use any, just ./configure), the problem is that going from 1.5.15 to 1.5.16, the make_log_info function now takes 3 arguments rather than 2 and this call only had 2. I'm using gcc-2.95.3 (same problem with 3.0.4). The compiler complained about mismatch in number of arguments. ---Jim -----Original Message----- From: Ed Ravin [mailto:eravin@panix.com] Sent: Friday, April 12, 2002 2:51 PM To: syslog-ng@lists.balabit.hu Subject: Re: [syslog-ng]syslog-ng 1.5.16 released "Clausing, James A (Jim), SOLCM" writes:
syslog-ng 1.5.16 didn't build for me without the following patch. I'm not sure what the prefix should be so I just used NULL.
And what operating system and platform are you running? What were your arguments to ./configure?
--- syslog-ng-1.5.16/src/afstreams.c Sun Jul 8 17:04:21 2001 +++ syslog-ng-1.5.16-patched/src/afstreams.c Fri Apr 12 18:09:01 2002 @@ -145,7 +145,7 @@
length = eol - bol; if (length) { - li = make_log_info(length, bol); + li = make_log_info(length, bol, NULL); li->pri = pri; HANDLE_LOG(self->pipe, li); }
_______________________________________________ syslog-ng maillist - syslog-ng@lists.balabit.hu https://lists.balabit.hu/mailman/listinfo/syslog-ng
participants (1)
-
Clausing, James A (Jim), SOLCM