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

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

From: Erik Huelsmann <ehuels_at_gmail.com>
Date: 2005-08-20 01:01:03 CEST

I'd like configure wizzards to look at this patch.

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
Received on Sat Aug 20 01:01:59 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.