Matt Kraai <[email protected]> writes:
> From: Matt Kraai <[email protected]>
>
> expat 1.1 and 1.2 provide xmlparse.h instead of expat.h. Include the
> former on systems that define the EXPAT_NEEDS_XMLPARSE_H variable and
> define that variable on QNX systems, which ship with expat 1.1.
>
> Signed-off-by: Matt Kraai <[email protected]>
> ---
> ...
> diff --git a/http-push.c b/http-push.c
> index 9923441..7202e2d 100644
> --- a/http-push.c
> +++ b/http-push.c
> @@ -11,7 +11,11 @@
> #include "list-objects.h"
> #include "sigchain.h"
>
> +#ifndef EXPAT_NEEDS_XMLPARSE_H
> #include <expat.h>
> +#else
> +#include <xmlparse.h>
> +#endif
Thanks for a quick re-roll.
Is it just me who finds the above hard to read and find the below
much more natural?
#ifdef NEEDS_FOO_H
#include <foo.h>
#else
#include <bar.h>
#endif
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html