commit gstreamer010-plugins-good
Hello community, here is the log from the commit of package gstreamer010-plugins-good checked in at Thu May 17 11:39:09 CEST 2007. -------- --- GNOME/gstreamer010-plugins-good/gstreamer010-plugins-good.changes 2007-05-12 15:28:01.000000000 +0200 +++ /mounts/work_src_done/STABLE/gstreamer010-plugins-good/gstreamer010-plugins-good.changes 2007-05-16 18:32:34.000000000 +0200 @@ -1,0 +2,6 @@ +Wed May 16 18:15:20 CEST 2007 - sbrabec@suse.cz + +- Use Supplements instead of not yet supported Enhances. +- Fixed invalid comparison. + +------------------------------------------------------------------- New: ---- gst-plugins-good-bad-comparison.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gstreamer010-plugins-good.spec ++++++ --- /var/tmp/diff_new_pack.XS5981/_old 2007-05-17 11:39:01.000000000 +0200 +++ /var/tmp/diff_new_pack.XS5981/_new 2007-05-17 11:39:01.000000000 +0200 @@ -27,17 +27,18 @@ License: GNU Library General Public License v. 2.0 and 2.1 (LGPL) Group: System/GUI/GNOME Version: 0.10.5 -Release: 20 +Release: 23 %define gst_branch 0.10 Source: %{_name}-%{version}.tar.bz2 Patch: gst-plugins-good-flac-1.1.4-fix.diff Patch1: gst-plugins-good-ac.diff +Patch2: gst-plugins-good-bad-comparison.patch URL: http://gstreamer.freedesktop.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Summary: GStreamer Streaming-Media Framework Plug-Ins Obsoletes: gstreamer-plugin-libs %if %suse_version > 1000 -Enhances: gstreamer010 +Supplements: gstreamer010 %endif Requires: gstreamer010 = %(rpm -q --queryformat '%{VERSION}' gstreamer010) @@ -163,6 +164,7 @@ %patch %endif %patch1 +%patch2 %build # FIXME: @@ -261,6 +263,9 @@ %{_libdir}/gstreamer-%{gst_branch}/libgstvideobox.so %changelog +* Wed May 16 2007 - sbrabec@suse.cz +- Use Supplements instead of not yet supported Enhances. +- Fixed invalid comparison. * Sat May 12 2007 - olh@suse.de - remove unneded Buildrequires for libraw1394-devel * Thu Apr 19 2007 - schwab@suse.de ++++++ gst-plugins-good-bad-comparison.patch ++++++ I: Expression compares a char* pointer with a string literal. Usually a strcmp() was intended by the programmer E: stringcompare gstdv1394src.c: 1077 In function 'gst_dv1394src_uri_set_uri': gstdv1394src.c:1077: warning: comparison with string literal results in unspecified behaviour ================================================================================ --- ext/raw1394/gstdv1394src.c +++ ext/raw1394/gstdv1394src.c @@ -1074,7 +1074,7 @@ g_free (protocol); location = gst_uri_get_location (uri); - if (location && (!(location == ""))) + if (location && (!(*location == 0))) gst_dv1394src->port = strtol (location, NULL, 10); else gst_dv1394src->port = DEFAULT_PORT; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de