gst-plugins: move 'inherit gobject-introspection' to recipes supporting GI

Now that whitelisting for unknown configure options was removed in
gobject-introspection.bbclass gst-plugins-good starts complaining

| ERROR: gst-plugins-good-0.10.31-r8 do_configure: QA Issue: gst-plugins-good: configure was passed unrecognised options: --disable-introspection [unknown-configure-option]

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
Andreas Müller
2019-04-03 19:22:43 +02:00
parent 30e3a3514a
commit 721de0c32f
2 changed files with 5 additions and 4 deletions

View File

@@ -19,7 +19,9 @@ SRC_URI[sha256sum] = "2cd3b0fa8e9b595db8f514ef7c2bdbcd639a0d63d154c00f8c9b609321
PR = "r8"
inherit gettext
inherit gettext gobject-introspection
GI_DATA_ENABLED = 'False'
EXTRA_OECONF += "--disable-freetypetest"

View File

@@ -4,13 +4,12 @@ BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer"
SECTION = "multimedia"
DEPENDS = "gstreamer"
# gobject-introspection to get --disable-introspection into UNKNOWN_CONFIGURE_WHITELIST
inherit autotools pkgconfig gobject-introspection
inherit autotools pkgconfig
SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2"
GSTREAMER_DEBUG ?= "--disable-debug"
EXTRA_OECONF = "--disable-valgrind ${GSTREAMER_DEBUG} --disable-examples --disable-introspection"
EXTRA_OECONF = "--disable-valgrind ${GSTREAMER_DEBUG} --disable-examples"
acpaths = "-I ${S}/common/m4 -I ${S}/m4"