diff options
author | Rogerio Nunes <ronunes@gmail.com> | 2013-04-02 20:34:44 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-03 17:01:13 +0100 |
commit | ee22db4e6828bed54f5ab7f7e719e7ae31435624 (patch) | |
tree | e13df84dc17d6000ae014ced70294d4c8d816515 /meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bb | |
parent | 70a599a5f188c3d077d23740e762075dec57ffa3 (diff) | |
download | poky-ee22db4e6828bed54f5ab7f7e719e7ae31435624.tar.gz |
gst-plugins-bad: disable librsvg when x11 is disabled
librsvg depends on gtk+, which in turn does not support framebuffer
as backend in current version (2.15.24). This patch disables librsvg
when x11 is not in the distro.
(From OE-Core rev: 022cc0d3f0f7468428d708c27dbc561f619ee841)
Signed-off-by: Rogerio Nunes <ronunes@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bb')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bb index 9039f97804..eb289c70de 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bb +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bb | |||
@@ -6,9 +6,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ | |||
6 | file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605 \ | 6 | file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605 \ |
7 | file://gst/tta/crc32.h;beginline=12;endline=29;md5=71a904d99ce7ae0c1cf129891b98145c" | 7 | file://gst/tta/crc32.h;beginline=12;endline=29;md5=71a904d99ce7ae0c1cf129891b98145c" |
8 | 8 | ||
9 | DEPENDS += "gst-plugins-base tremor librsvg curl" | 9 | DEPENDS += "gst-plugins-base tremor curl" |
10 | 10 | ||
11 | PR = "r3" | 11 | PR = "r4" |
12 | 12 | ||
13 | inherit gettext | 13 | inherit gettext |
14 | 14 | ||
@@ -16,6 +16,9 @@ EXTRA_OECONF += "--disable-examples --disable-experimental --disable-sdl --disab | |||
16 | --with-plugins=wavpack,ivorbis,mpegvideoparse --disable-vdpau --disable-apexsink \ | 16 | --with-plugins=wavpack,ivorbis,mpegvideoparse --disable-vdpau --disable-apexsink \ |
17 | --disable-orc" | 17 | --disable-orc" |
18 | 18 | ||
19 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'librsvg', '', d)}" | ||
20 | PACKAGECONFIG[librsvg] = "--enable-librsvg,--disable-librsvg,librsvg," | ||
21 | |||
19 | ARM_INSTRUCTION_SET = "arm" | 22 | ARM_INSTRUCTION_SET = "arm" |
20 | 23 | ||
21 | do_configure_prepend() { | 24 | do_configure_prepend() { |