On Tue, Oct 17, 2017 at 12:48 AM, William A Rowe Jr <wr...@rowe-clan.net> wrote:
> Rainer,
>
> https://ci.apache.org/builders/httpd-trunk/builds/1203
>
> would you please re-kick this build from a clean svn checkout? I think we have
> various mistakes in our exports.c preprocessor that become tangled in any
> rebuild scenario.

Hmm, not sure, looks like an issue with the "inline" keyword used in
some system (systemd) header file, and c89.
According to github, systemd's master branch uses __inline__ there
instead (which should be fine with gcc's c89), so dunno if we can do
something like this (when -stdc=c89):

    #undef inline
    #define inline __inline__ /* or APR_INLINE? */
    #include <sd-journal.h>

Nor if it can even work to #undef "inline"...

Reply via email to