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

[PATCH] svn enabled to use neon 0.19.[2-3]

From: Blair Zajac <blair_at_orcaware.com>
Date: 2002-02-27 06:44:01 CET

Given the previous discussion on svn's requirements on different
versions of neon, this patch allows neon 0.19.[2-3].

Best,
Blair

-- 
Blair Zajac <blair@orcaware.com>
Web and OS performance plots - http://www.orcaware.com/orca/
2002-02-26  Blair Zajac  <blair@orcaware.com>
	* INSTALL (Contents): Mention that svn compiles against both neon
	0.19.2 and neon 0.19.3.  Update the URL to download neon to use
	0.19.3.
	* CHANGES: Update to mention 0.19.[2-3].
	* build/buildcheck.sh (NEON_WANTED): Enable compiling against neon
	0.19.2 and neon 0.19.3.
	* packages/rpm/README: Update to mention neon 0.19.[2-3].
	Index: ./build/buildcheck.sh
===================================================================
--- ./build/buildcheck.sh
+++ ./build/buildcheck.sh	Tue Feb 26 21:29:16 2002
@@ -53,15 +53,18 @@
 #--------------------------------------------------------------------------
 # check for the correct version of Neon
 #
-NEON_WANTED=0.19.2
+NEON_WANTED=0.19.[2-3]
 if test -d ./neon; then
   NEON_VERSION="`./ac-helpers/get-neon-ver.sh neon`"
-  if test "$NEON_WANTED" != "$NEON_VERSION"; then
-    echo "buildcheck: neon version $NEON_VERSION found in ./neon/."
-    echo "            You need neon $NEON_WANTED."
-    exit 1
-  fi
-
+  case "$NEON_VERSION" in
+    $NEON_WANTED)
+      ;;
+    *)
+      echo "buildcheck: neon version $NEON_VERSION found in ./neon/."
+      echo "            You need neon $NEON_WANTED."
+      exit 1
+      ;;
+  esac
   echo "buildcheck: neon version $NEON_VERSION (ok)"
 fi
 
Index: ./INSTALL
===================================================================
--- ./INSTALL
+++ ./.svn/tmp/INSTALL.59132.00001.tmp	Tue Feb 26 21:37:10 2002
@@ -132,7 +132,7 @@
       Build.
 
 
-      5.  Neon library 0.19.2
+      5.  Neon library 0.19.[2-3]
 
       The Neon library allows a Subversion client to interact with remote
       repositories over the Internet. Although in theory you could have
@@ -144,10 +144,10 @@
       want Subversion to build it. The source code is included with the
       latest Subversion tarball, and it can also be obtained from:
 
-          http://www.webdav.org/neon/neon-0.19.2.tar.gz
+          http://www.webdav.org/neon/neon-0.19.3.tar.gz
 
       Unpack the archive using tar/gunzip and rename the resulting
-      directory from "./neon-0.19.2/" to "./neon/".
+      directory from "./neon-0.19.3/" to "./neon/".
 
       Without source code, a previously compiled library can be picked up
       from the standard locations. If you want to specify a nonstandard
@@ -362,7 +362,7 @@
           apache*.i386.rpm (Version 2.0.32 or greater)
           db*.i386.rpm     (Version 4.0.14 or greater)
           expat            (Comes with RedHat)
-          neon             (Version 0.19.2 or greater)
+          neon             (Version 0.19.[2-3])
 
       After downloading, install it (as root user):
 
@@ -537,8 +537,8 @@
       supported at this time.
 
       To build the client components, you'll need a copy of neon
-      0.19.2.  See section I.5 for details on where to get one and what
-      to do with it when you get it.
+      0.19.[2-3].  See section I.5 for details on where to get one and
+      what to do with it when you get it.
 
       [NOTE: The neon library supports secure connections with OpenSSL
           and on-the-wire compression with zlib. If you want to use
Index: ./CHANGES
===================================================================
--- ./CHANGES
+++ ./CHANGES	Tue Feb 26 21:30:21 2002
@@ -1,6 +1,6 @@
 Version 0.10
  * build system evolution
-     - upgrade to neon 0.19.2
+     - upgrade to neon 0.19.[2-3]
 
 Version 0.9 (released 15 Feb 2002, revision 1302)
 
Index: ./packages/rpm/README
===================================================================
--- ./packages/rpm/README
+++ ./packages/rpm/README	Tue Feb 26 21:31:01 2002
@@ -15,7 +15,7 @@
 
        db >= 4.0.14
        expat (comes with RedHat)
-       neon = 0.19.2
+       neon = 0.19.[2-3]
        apache >= 2.0.32 (for subversion-server)
 
     B. To compile:
@@ -25,7 +25,7 @@
        apache-devel >= 2.0.32
        expat-devel
        libtool >= 1.4.2
-       neon = 0.19.2
+       neon = 0.19.[2-3]
        python >= 1.5.2 (2.0 or greater to run check programs)
 
     The non-standard packages apache-2.0.32, db, and neon, can be found at:
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:37:10 2006

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.