mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 13:49:49 +00:00
Fix crash with gst-inspect
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@705 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -0,0 +1,11 @@
|
|||||||
|
--- gstreamer-0.10.9/tools/gst-inspect.c.old 2006-09-12 11:56:53.000000000 +0100
|
||||||
|
+++ gstreamer-0.10.9/tools/gst-inspect.c 2006-09-12 11:57:27.000000000 +0100
|
||||||
|
@@ -1123,7 +1123,7 @@
|
||||||
|
g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
|
||||||
|
g_option_context_add_group (ctx, gst_init_get_option_group ());
|
||||||
|
if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
|
||||||
|
- g_print ("Error initializing: %s\n", err->message);
|
||||||
|
+ g_print ("Error initializing: %s\n", err ? err->message : "(null)");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
g_option_context_free (ctx);
|
||||||
@@ -5,15 +5,16 @@ PRIORITY = "optional"
|
|||||||
LICENSE = "LGPL"
|
LICENSE = "LGPL"
|
||||||
HOMEPAGE = "http://www.gstreamer.net/"
|
HOMEPAGE = "http://www.gstreamer.net/"
|
||||||
MAINTAINER = "Chris Lord <chris@openedhand.com>"
|
MAINTAINER = "Chris Lord <chris@openedhand.com>"
|
||||||
DEPENDS = "glib-2.0 gettext-native popt libxml2"
|
DEPENDS = "glib-2.0 gettext-native libxml2"
|
||||||
PR = "r1"
|
PR = "r2"
|
||||||
|
|
||||||
inherit autotools pkgconfig
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2"
|
SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2 \
|
||||||
# file://gstregistrybinary.c \
|
file://gst-inspect-check-error.patch;patch=1"
|
||||||
# file://gstregistrybinary.h \
|
# file://gstregistrybinary.c \
|
||||||
# file://gstreamer-0.9-binary-registry.patch;patch=1"
|
# file://gstregistrybinary.h \
|
||||||
|
# file://gstreamer-0.9-binary-registry.patch;patch=1"
|
||||||
EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check=no"
|
EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check=no"
|
||||||
|
|
||||||
#do_compile_prepend () {
|
#do_compile_prepend () {
|
||||||
|
|||||||
Reference in New Issue
Block a user