diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2013-10-30 11:58:43 -0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2013-11-06 11:27:16 -0200 |
commit | 55769f1400e2c73472e267c7a18e373e8c84d4d8 (patch) | |
tree | 18637eba11757ae140dcf70e60d68e94d59fab04 | |
parent | b203b6b375453eeafd3c3e08f028af7345696f92 (diff) | |
download | meta-fsl-arm-55769f1400e2c73472e267c7a18e373e8c84d4d8.tar.gz meta-fsl-arm-55769f1400e2c73472e267c7a18e373e8c84d4d8.tar.bz2 meta-fsl-arm-55769f1400e2c73472e267c7a18e373e8c84d4d8.zip |
gst-fsl-plugin.inc: Fix runtime dependencies for special/excluded
The special and excluded plugins require explicit runtime dependencies
so those are add throught PACKAGECONFIG.
Change-Id: I4c87f3ac9f3a9f8d7f5b0b57ebc0bf2e4960d30a
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-multimedia/gst-plugins/gst-fsl-plugin.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/recipes-multimedia/gst-plugins/gst-fsl-plugin.inc b/recipes-multimedia/gst-plugins/gst-fsl-plugin.inc index 11bf70d..1425445 100644 --- a/recipes-multimedia/gst-plugins/gst-fsl-plugin.inc +++ b/recipes-multimedia/gst-plugins/gst-fsl-plugin.inc @@ -35,14 +35,14 @@ PACKAGES += "${PN}-libmfwsconf ${PN}-libgplaycore ${PN}-libgstfsl \ # FIXME: Add all features # feature from excluded mm packages -PACKAGECONFIG[ac3] += "--enable-ac3dec,--disable-ac3dec,libfslac3codec" +PACKAGECONFIG[ac3] += "--enable-ac3dec,--disable-ac3dec,libfslac3codec,libfslac3codec" # feature from special mm packages -PACKAGECONFIG[aacp] += "--enable-aacpdec,--disable-aacpdec,libfslaacpcodec" +PACKAGECONFIG[aacp] += "--enable-aacpdec,--disable-aacpdec,libfslaacpcodec,libfslaacpcodec" MSDEPENDS = "libfslmsparser libfslmscodec" -PACKAGECONFIG[wma10dec] +="--enable-wma10dec,--disable-wma10dec,${MSDEPENDS}" -PACKAGECONFIG[wma8enc] +="--enable-wma8enc,--disable-wma8enc,${MSDEPENDS}" -PACKAGECONFIG[wmv9mpdec] +="--enable-wmv9mpdec,--disable-wmv9mpdec,${MSDEPENDS}" -PACKAGECONFIG[wmv78dec] +="--enable-wmv78dec,--disable-wmv78dec,${MSDEPENDS}" +PACKAGECONFIG[wma10dec] +="--enable-wma10dec,--disable-wma10dec,${MSDEPENDS},${MSDEPENDS}" +PACKAGECONFIG[wma8enc] +="--enable-wma8enc,--disable-wma8enc,${MSDEPENDS},${MSDEPENDS}" +PACKAGECONFIG[wmv9mpdec] +="--enable-wmv9mpdec,--disable-wmv9mpdec,${MSDEPENDS},${MSDEPENDS}" +PACKAGECONFIG[wmv78dec] +="--enable-wmv78dec,--disable-wmv78dec,${MSDEPENDS},${MSDEPENDS}" FILES_${PN} = "${libdir}/gstreamer-0.10/*.so ${datadir}" RDEPENDS_${PN} += "gst-plugins-good-id3demux libfslparser" |