]> git.pld-linux.org Git - packages/subversion.git/blob - subversion-neon.patch
- fix detection
[packages/subversion.git] / subversion-neon.patch
1 --- s/build/ac-macros/neon.m4.org       2006-11-08 13:40:10.387076060 +0000
2 +++ s/build/ac-macros/neon.m4   2006-11-08 13:41:47.125555455 +0000
3 @@ -127,11 +127,13 @@
4        NEON_VERSION=`$neon_config --version | sed -e 's/^neon //'`
5        AC_MSG_RESULT([$NEON_VERSION])
6  
7 -      if test -n "`echo \"$NEON_VERSION\" | grep '^0\.2[[56]]\.'`" ; then
8 +      n_1=`echo "$NEON_VERSION" | grep '^0\.2[[56]]\.'`
9 +      if test -n "$n_1" ; then
10          AC_DEFINE_UNQUOTED([SVN_NEON_0_25], [1],
11                             [Define to 1 if you have Neon 0.25 or later.])
12        fi
13 -      if test -n "`echo \"$NEON_VERSION\" | grep '^0\.26\.'`" ; then
14 +      n_2=`echo "$NEON_VERSION" | grep '^0\.26\.'`
15 +      if test -n "$n_2" ; then
16          AC_DEFINE_UNQUOTED([SVN_NEON_0_26], [1],
17                             [Define to 1 if you have Neon 0.26 or later.])
18        fi
This page took 0.031397 seconds and 4 git commands to generate.