diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-03-10 13:51:20 +0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-03-10 17:10:51 -0800 |
commit | 5b675f91b17eb9d01a4552506518cc0f7de4eba4 (patch) | |
tree | 313e0222b9f66c5e1e1943d8db1ea86d6e219502 | |
parent | 868f8d3dd04e3c6dbbce154742cf877fda460a3e (diff) | |
download | openembedded-core-5b675f91b17eb9d01a4552506518cc0f7de4eba4.tar.gz openembedded-core-5b675f91b17eb9d01a4552506518cc0f7de4eba4.tar.bz2 openembedded-core-5b675f91b17eb9d01a4552506518cc0f7de4eba4.zip |
gst-plugins-bad: add missing dependency librsvg
Defaultly gst-plugins-bad will configured with option --enable-rsvg.
Besides, it will check if librsvg really exists by certain configure
code.
Therefore there will be a certain race condition that, during
librsvg's populate_sysroot, gst-plugins-bad's do_compile will find
some header files are still not exists though its configure says the
library is supported.
Explicitly add librsvg as gst-plugins-bad's dependency could solve
this issue.
This fixes [YOCTO #831]
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.20.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.20.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.20.bb index 59e127c859..239072d03e 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.20.bb +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.20.bb @@ -7,9 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ file://gst/qtmux/gstqtmuxmap.h;beginline=1;endline=19;md5=2da8f56a44697c1527c5a4bcf8d5d69b \ file://gst/tta/crc32.h;beginline=12;endline=29;md5=71a904d99ce7ae0c1cf129891b98145c" -DEPENDS += "gst-plugins-base libmusicbrainz tremor" +DEPENDS += "gst-plugins-base libmusicbrainz tremor librsvg" -PR = "r0" +PR = "r1" inherit gettext |