[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r1337478 - /subversion/trunk/subversion/libsvn_ra_serf/util.c

From: Greg Stein <gstein_at_gmail.com>
Date: Sat, 12 May 2012 04:30:58 -0400

On May 11, 2012 10:11 PM, <rhuijben_at_apache.org> wrote:
>...
> +++ subversion/trunk/subversion/libsvn_ra_serf/util.c Sat May 12 08:11:02
2012
> @@ -58,7 +58,15 @@
> #define XML_STATUS_ERROR 0
> #endif
>
> -#if XML_MAJOR_VERSION >= 2 || XML_MINOR_VERSION >= 95 ||
XML_MICRO_VERSION >= 8
> +#ifndef XML_VERSION_AT_LEAST
> +#define XML_VERSION_AT_LEAST(major,minor,patch) \
> +(((major) < XML_MAJOR_VERSION) \
> + || ((major) == XML_MAJOR_VERSION && (minor) < XML_MINOR_VERSION) \
> + || ((major) == XML_MAJOR_VERSION && (minor) == XML_MINOR_VERSION && \
> + (patch) <= XML_PATCH_VERSION))
> +#endif /* APR_VERSION_AT_LEAST */
> +
> +#if XML_VERSION_AT_LEAST(2, 95, 8)

s/2/1/
Received on 2012-05-12 10:31:36 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.