updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / hula / build-fix.patch
blob850157315584c6ab88a5b7c4ee137a5d6db7d547
1 diff -wbBur hula.org/autogen.sh hula/autogen.sh
2 --- hula.org/autogen.sh 2009-02-27 10:55:05.000000000 +0000
3 +++ hula/autogen.sh 2009-02-27 11:09:41.000000000 +0000
4 @@ -7,7 +7,7 @@
6 # default version requirements ...
7 REQUIRED_AUTOCONF_VERSION=${REQUIRED_AUTOCONF_VERSION:-2.53}
8 -REQUIRED_AUTOMAKE_VERSION=${REQUIRED_AUTOMAKE_VERSION:-1.6}
9 +REQUIRED_AUTOMAKE_VERSION=${REQUIRED_AUTOMAKE_VERSION:-1.10}
10 REQUIRED_LIBTOOL_VERSION=${REQUIRED_LIBTOOL_VERSION:-1.4.3}
11 REQUIRED_GETTEXT_VERSION=${REQUIRED_GETTEXT_VERSION:-0.10.40}
12 REQUIRED_GLIB_GETTEXT_VERSION=${REQUIRED_GLIB_GETTEXT_VERSION:-2.2.0}
13 @@ -276,14 +276,7 @@
14 "http://ftp.gnu.org/pub/gnu/autoconf/autoconf-$REQUIRED_AUTOCONF_VERSION.tar.gz" || DIE=1
15 AUTOHEADER=`echo $AUTOCONF | sed s/autoconf/autoheader/`
17 -case $REQUIRED_AUTOMAKE_VERSION in
18 - 1.4*) automake_progs="automake-1.4" ;;
19 - 1.5*) automake_progs="automake-1.5 automake-1.6 automake-1.7 automake-1.8 automake-1.9" ;;
20 - 1.6*) automake_progs="automake-1.6 automake-1.7 automake-1.8 automake-1.9 automake19" ;;
21 - 1.7*) automake_progs="automake-1.7 automake-1.8 automake-1.9" ;;
22 - 1.8*) automake_progs="automake-1.8 automake-1.9" ;;
23 - 1.9*) automake_progs="automake-1.9" ;;
24 -esac
25 +automake_progs="automake"
26 version_check automake AUTOMAKE "$automake_progs" $REQUIRED_AUTOMAKE_VERSION \
27 "http://ftp.gnu.org/pub/gnu/automake/automake-$REQUIRED_AUTOMAKE_VERSION.tar.gz" || DIE=1
28 ACLOCAL=`echo $AUTOMAKE | sed s/automake/aclocal/`
29 diff -wbBur hula.org/src/libs/hula-sharp/Hula.Dav/AddressbookQueryReport.cs hula/src/libs/hula-sharp/Hula.Dav/AddressbookQueryReport.cs
30 --- hula.org/src/libs/hula-sharp/Hula.Dav/AddressbookQueryReport.cs 2009-02-27 10:52:29.000000000 +0000
31 +++ hula/src/libs/hula-sharp/Hula.Dav/AddressbookQueryReport.cs 2009-02-27 11:21:17.000000000 +0000
32 @@ -42,7 +42,7 @@
33 break;
34 case "text-match" :
35 // FIXME: Don't do caseless param filters for now.
36 - TermQuery q = new TermQuery (new Term("vcard." + prop + ".param", + name + "=" + child.InnerText));
37 + TermQuery q = new TermQuery (new Term("vcard." + prop + ".param", name + "=" + child.InnerText));
39 query.Add(q, true, false);
40 break;
41 diff -wbBur hula.org/src/libs/hula-sharp/Hula.Dav/CalQueryReport.cs hula/src/libs/hula-sharp/Hula.Dav/CalQueryReport.cs
42 --- hula.org/src/libs/hula-sharp/Hula.Dav/CalQueryReport.cs 2009-02-27 10:52:29.000000000 +0000
43 +++ hula/src/libs/hula-sharp/Hula.Dav/CalQueryReport.cs 2009-02-27 11:21:45.000000000 +0000
44 @@ -59,7 +59,7 @@
45 break;
46 case "text-match" :
47 // FIXME: Don't do caseless param filters for now.
48 - TermQuery q = new TermQuery (new Term("ical." + prop + ".param", + name + "=" + child.InnerText));
49 + TermQuery q = new TermQuery (new Term("ical." + prop + ".param", name + "=" + child.InnerText));
51 query.Add(q, true, false);
52 break;