mirror of
https://git.yoctoproject.org/poky
synced 2026-07-03 20:13:42 +02:00
The gstreamer framework has a very useful debugging setup which is essential for debugging pipelines and plugins. This patch makes it simple to enable this (disabled by default). To enable debugging, just add this line to local.conf GSTREAMER_DEBUG = "--enable-debug" (From OE-Core rev: 947c00c78732da48a111228e1325ad42cf57a370) Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
575 B
PHP
22 lines
575 B
PHP
DESCRIPTION = "Plugins for GStreamer"
|
|
HOMEPAGE = "http://gstreamer.freedesktop.org/"
|
|
BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer"
|
|
SECTION = "multimedia"
|
|
DEPENDS = "gstreamer"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
FILESPATH =. "${FILE_DIRNAME}/gst-plugins:"
|
|
|
|
SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2"
|
|
|
|
GSTREAMER_DEBUG ?= "--disable-debug"
|
|
EXTRA_OECONF = "--disable-valgrind ${GSTREAMER_DEBUG} --disable-examples "
|
|
|
|
acpaths = "-I ${S}/common/m4 -I ${S}/m4"
|
|
|
|
require gst-plugins-package.inc
|
|
|
|
PACKAGES_DYNAMIC = "${PN}-*"
|
|
|