pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/gstreamer0.10 Fixed the version comparison ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/34dbb09d6e7b
branches:  trunk
changeset: 551394:34dbb09d6e7b
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Dec 14 18:34:45 2008 +0000

description:
Fixed the version comparison in the AG_GST_BISON_CHECK macro.

diffstat:

 multimedia/gstreamer0.10/distinfo         |   4 ++--
 multimedia/gstreamer0.10/patches/patch-ac |  22 ++++++++++++++++++----
 2 files changed, 20 insertions(+), 6 deletions(-)

diffs (44 lines):

diff -r 4ef2a53eeaaa -r 34dbb09d6e7b multimedia/gstreamer0.10/distinfo
--- a/multimedia/gstreamer0.10/distinfo Sun Dec 14 18:22:10 2008 +0000
+++ b/multimedia/gstreamer0.10/distinfo Sun Dec 14 18:34:45 2008 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.17 2008/10/16 16:20:38 drochner Exp $
+$NetBSD: distinfo,v 1.18 2008/12/14 18:34:45 rillig Exp $
 
 SHA1 (gstreamer-0.10.21.tar.bz2) = 892daa9517dd7603e80b009dc059e20f4daea66f
 RMD160 (gstreamer-0.10.21.tar.bz2) = d801ff66390ef41880cf0be1fee6f7aebf177876
 Size (gstreamer-0.10.21.tar.bz2) = 2662621 bytes
 SHA1 (patch-aa) = bc10562292a005ec43d64401964eddf50d9aa1d5
-SHA1 (patch-ac) = 4783e3c8468f58a162815bea429f796044b5102c
+SHA1 (patch-ac) = daa156bca3d4b8d5d0e24a317e094c9485865645
 SHA1 (patch-ad) = e37dcc2de746d7b2cf3c97acd5a55325640822c4
diff -r 4ef2a53eeaaa -r 34dbb09d6e7b multimedia/gstreamer0.10/patches/patch-ac
--- a/multimedia/gstreamer0.10/patches/patch-ac Sun Dec 14 18:22:10 2008 +0000
+++ b/multimedia/gstreamer0.10/patches/patch-ac Sun Dec 14 18:34:45 2008 +0000
@@ -1,8 +1,22 @@
-$NetBSD: patch-ac,v 1.5 2008/04/10 11:54:40 drochner Exp $
+$NetBSD: patch-ac,v 1.6 2008/12/14 18:34:45 rillig Exp $
+
+http://bugzilla.gnome.org/show_bug.cgi?id=564507
 
---- configure.orig     2008-03-21 00:11:16.000000000 +0100
-+++ configure
-@@ -31016,7 +31016,7 @@ rm -f core conftest.err conftest.$ac_obj
+--- configure.orig     2008-10-02 23:54:25.000000000 +0200
++++ configure  2008-12-14 19:26:26.000000000 +0100
+@@ -25178,10 +25178,7 @@
+   { echo "$as_me:$LINENO: checking bison version $bison_version >= $bison_min_version" >&5
+ echo $ECHO_N "checking bison version $bison_version >= $bison_min_version... $ECHO_C" >&6; }
+ 
+-  if perl -w <<EOF
+-    exit ($bison_version < $bison_min_version) ? 0 : 1;
+-EOF
+-  then
++  if perl -we "exit ((v$bison_version ge v$bison_min_version) ? 0 : 1)"; then
+     { echo "$as_me:$LINENO: result: yes" >&5
+ echo "${ECHO_T}yes" >&6; }
+   else
+@@ -31985,7 +31982,7 @@
  echo "${ECHO_T}$flag_ok" >&6; }
  
  



Home | Main Index | Thread Index | Old Index