Thanks, but it still doesn't quite build, exiting with the second error in
the previous message. main.c:359 has this:
fd = open (log_file, O_WRONLY | O_APPEND | O_CREAT);
Apparently newer versions of glibc now enforce a third parameter (mode) if
O_CREAT is specified. I changed that line to:
fd = open (log_file, O_WRONLY | O_APPEND | O_CREAT, 0600);
but I'm not sure if 0600 is exactly the right mode needed; it's just a bit
of guesswork.
Anyway, _that_ error is gone with that change, but then I'm left with
"undefined reference to `cherokee_logger_get_error_writer'" - which I made a
shoddy attempt to work around by including logger.h into files that
referenced it - needless to say that didn't work. :)
Thanks again for your work on this, I'm excited to see this all in action.
Jacob
On Sat, Apr 25, 2009 at 1:12 PM, Alvaro Lopez Ortega <[email protected]>wrote:
> Hello Jacob,
>
> I have committed a little patch to fix it (r3171).
> It ought to compile in Linux now.
>
_______________________________________________
Cherokee mailing list
[email protected]
http://lists.octality.com/listinfo/cherokee