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

Re: [PATCH] configure-script change to allow compiling against Neon 0.25.2

From: <kfogel_at_collab.net>
Date: 2005-08-22 22:31:09 CEST

Erik Huelsmann <ehuels@gmail.com> writes:
> I'd like configure wizzards to look at this patch.

This looks correct to me. If you tested that it can build, say, Neon
0.25.0 and 0.25.2, then +1 on committing it. And thanks!

Your log message should mention the symbol names for the changes to
NEON_ALLOWED_LIST and NEON_LATEST_WORKING_VER (minor nit).

-Karl

> Log:
> [[[
> Allow compilation against neon 0.25.x
>
> * configure.in: Allow all neon 0.25 series releases.
>
> * build/ac-macros/neon.m4 (SVN_LIB_NEON): Don't check explicitly for
> neon 0.25.0
> ]]]
>
> Thanks!
>
> bye,
>
> Erik.
>
>
> Index: configure.in
> ===================================================================
> --- configure.in (revision 15793)
> +++ configure.in (working copy)
> @@ -227,8 +227,8 @@
>
> # Either a space-separated list of allowable Neon versions, or "any" to
> # mean allow anything.
> -NEON_ALLOWED_LIST="0.24.7 0.25.0"
> -NEON_LATEST_WORKING_VER=0.25.0
> +NEON_ALLOWED_LIST="0.24.7 0.25.0 0.25.1 0.25.2"
> +NEON_LATEST_WORKING_VER=0.25.2
> NEON_URL="http://www.webdav.org/neon/neon-${NEON_LATEST_WORKING_VER}.tar.gz"
> dnl You can skip the neon version check only if you know what you are doing
> AC_ARG_ENABLE(neon-version-check,
> Index: build/ac-macros/neon.m4
> ===================================================================
> --- build/ac-macros/neon.m4 (revision 15793)
> +++ build/ac-macros/neon.m4 (working copy)
> @@ -50,9 +50,9 @@
> NEON_VERSION=`cat $abs_srcdir/neon/.version`
> AC_MSG_RESULT([$NEON_VERSION])
>
> - if test $NEON_VERSION = "0.25.0" ; then
> + if -n "`echo \"$NEON_VERSION\" | grep '^0\.25\.`" ; then
> AC_DEFINE_UNQUOTED([SVN_NEON_0_25_0], [1],
> - [Defined if have Neon 0.25.0 instead of 0.24.7.])
> + [Defined if have Neon 0.25.x instead of 0.24.7.])
> fi
>
> for svn_allowed_neon in $NEON_ALLOWED_LIST; do
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org
>

-- 
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Aug 22 23:30:12 2005

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.