Bitbake依赖性错误

时间:2015-09-14 11:40:39

标签: gstreamer yocto bitbake

我正在尝试在框架中编译和安装gstreamer-1.0,其中gstreamer-0.10已经存在。我已经创建了安装gstremer-1.4.5的配方并成功安装。配置gst-plugins-base-1.4 .5我得到了依赖性错误:  configure:找不到包'gstreamer-1.0'  configure:error:no gstreamer-1.0> = 1.4.0(GStreamer)found

我的食谱如下:

   LICENSE = "CLOSED"


           DEPENDS += "alsa-lib liboil libogg libvorbis libtheora util-linux glib-2.0-native"
DEPENDS += "gstreamer-version-1.4.5"
inherit autotools pkgconfig gettext

SRC_URI[md5sum] = "357165af625c0ca353ab47c5d843920e"
SRC_URI[sha256sum] =     "77bd8199e7a312d3d71de9b7ddf761a3b78560a2c2a80829d0815ca39cbd551d"

SRC_URI = "http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-   plugins-base-1.4.5.tar.xz"


PR = "r11"




LIBV="1.0"
do_setpath() {
export LD_LIBRARY_PATH=/home/ravisht/mayank/amrit_0109/emulator/build-     qemux86hyb/tmp/sysroots/qemux86hyb/usr/lib
}


    do_configure_prepend() {
    # This m4 file contains nastiness which conflicts with libtool 2.2.2
    rm -f ${S}/m4/lib-link.m4
   }

  do_configure() {
 cd ../gst-plugins-base-1.4.5
 ./configure
 }

   do_compile() {
  oe_runmake -all
   }

how should i make changes in above recipe so it doesn't get configure error.

此致 Mayank

0 个答案:

没有答案