Sun Dec 14 18:34:45 2008 UTC ()
Fixed the version comparison in the AG_GST_BISON_CHECK macro.


(rillig)
diff -r1.17 -r1.18 pkgsrc/multimedia/gstreamer0.10/distinfo
diff -r1.5 -r1.6 pkgsrc/multimedia/gstreamer0.10/patches/patch-ac

cvs diff -r1.17 -r1.18 pkgsrc/multimedia/gstreamer0.10/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/multimedia/gstreamer0.10/Attic/distinfo 2008/10/16 16:20:38 1.17
+++ pkgsrc/multimedia/gstreamer0.10/Attic/distinfo 2008/12/14 18:34:45 1.18
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.17 2008/10/16 16:20:38 drochner Exp $ 1$NetBSD: distinfo,v 1.18 2008/12/14 18:34:45 rillig Exp $
2 2
3SHA1 (gstreamer-0.10.21.tar.bz2) = 892daa9517dd7603e80b009dc059e20f4daea66f 3SHA1 (gstreamer-0.10.21.tar.bz2) = 892daa9517dd7603e80b009dc059e20f4daea66f
4RMD160 (gstreamer-0.10.21.tar.bz2) = d801ff66390ef41880cf0be1fee6f7aebf177876 4RMD160 (gstreamer-0.10.21.tar.bz2) = d801ff66390ef41880cf0be1fee6f7aebf177876
5Size (gstreamer-0.10.21.tar.bz2) = 2662621 bytes 5Size (gstreamer-0.10.21.tar.bz2) = 2662621 bytes
6SHA1 (patch-aa) = bc10562292a005ec43d64401964eddf50d9aa1d5 6SHA1 (patch-aa) = bc10562292a005ec43d64401964eddf50d9aa1d5
7SHA1 (patch-ac) = 4783e3c8468f58a162815bea429f796044b5102c 7SHA1 (patch-ac) = daa156bca3d4b8d5d0e24a317e094c9485865645
8SHA1 (patch-ad) = e37dcc2de746d7b2cf3c97acd5a55325640822c4 8SHA1 (patch-ad) = e37dcc2de746d7b2cf3c97acd5a55325640822c4

cvs diff -r1.5 -r1.6 pkgsrc/multimedia/gstreamer0.10/patches/Attic/patch-ac (expand / switch to unified diff)

--- pkgsrc/multimedia/gstreamer0.10/patches/Attic/patch-ac 2008/04/10 11:54:40 1.5
+++ pkgsrc/multimedia/gstreamer0.10/patches/Attic/patch-ac 2008/12/14 18:34:45 1.6
@@ -1,13 +1,27 @@ @@ -1,13 +1,27 @@
1$NetBSD: patch-ac,v 1.5 2008/04/10 11:54:40 drochner Exp $ 1$NetBSD: patch-ac,v 1.6 2008/12/14 18:34:45 rillig Exp $
2 2
3--- configure.orig 2008-03-21 00:11:16.000000000 +0100 3http://bugzilla.gnome.org/show_bug.cgi?id=564507
4+++ configure 4
5@@ -31016,7 +31016,7 @@ rm -f core conftest.err conftest.$ac_obj 5--- configure.orig 2008-10-02 23:54:25.000000000 +0200
 6+++ configure 2008-12-14 19:26:26.000000000 +0100
 7@@ -25178,10 +25178,7 @@
 8 { echo "$as_me:$LINENO: checking bison version $bison_version >= $bison_min_version" >&5
 9 echo $ECHO_N "checking bison version $bison_version >= $bison_min_version... $ECHO_C" >&6; }
 10
 11- if perl -w <<EOF
 12- exit ($bison_version < $bison_min_version) ? 0 : 1;
 13-EOF
 14- then
 15+ if perl -we "exit ((v$bison_version ge v$bison_min_version) ? 0 : 1)"; then
 16 { echo "$as_me:$LINENO: result: yes" >&5
 17 echo "${ECHO_T}yes" >&6; }
 18 else
 19@@ -31985,7 +31982,7 @@
6 echo "${ECHO_T}$flag_ok" >&6; } 20 echo "${ECHO_T}$flag_ok" >&6; }
7  21
8  22
9- if test "x$ERROR_CFLAGS" == "x" 23- if test "x$ERROR_CFLAGS" == "x"
10+ if test "x$ERROR_CFLAGS" = "x" 24+ if test "x$ERROR_CFLAGS" = "x"
11 then 25 then
12  26
13 { echo "$as_me:$LINENO: checking to see if compiler understands -errwarn=%all" >&5 27 { echo "$as_me:$LINENO: checking to see if compiler understands -errwarn=%all" >&5