diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-01-26 12:10:02 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-01-26 13:36:16 +0100 |
commit | 86d6be0ae44b965415ba38ef23c9184dae45cd1b (patch) | |
tree | 95724975921823e5ea901ec1e8903ca75a7322b9 | |
parent | 237b838e961d957d83449fa9fd9729bffee03b02 (diff) | |
download | meta-openembedded-86d6be0ae44b965415ba38ef23c9184dae45cd1b.tar.gz |
xbmc: fix CEC support
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
-rw-r--r-- | meta-oe/recipes-multimedia/xbmc/xbmc_git.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-oe/recipes-multimedia/xbmc/xbmc_git.bb b/meta-oe/recipes-multimedia/xbmc/xbmc_git.bb index 4e8c9b04f..109b28354 100644 --- a/meta-oe/recipes-multimedia/xbmc/xbmc_git.bb +++ b/meta-oe/recipes-multimedia/xbmc/xbmc_git.bb | |||
@@ -9,7 +9,7 @@ DEPENDS = "libusb1 libcec libplist expat yajl gperf-native libxmu fribidi mpeg2d | |||
9 | SRCREV = "f119e6aa5ff44d8bf8e670d5d7c21e2fc4832a7c" | 9 | SRCREV = "f119e6aa5ff44d8bf8e670d5d7c21e2fc4832a7c" |
10 | 10 | ||
11 | PV = "11.0" | 11 | PV = "11.0" |
12 | PR = "r5" | 12 | PR = "r6" |
13 | PR_append = "+gitr${SRCPV}" | 13 | PR_append = "+gitr${SRCPV}" |
14 | SRC_URI = "git://github.com/xbmc/xbmc.git;branch=eden;protocol=git \ | 14 | SRC_URI = "git://github.com/xbmc/xbmc.git;branch=eden;protocol=git \ |
15 | file://0001-configure-don-t-run-python-distutils-to-find-STAGING.patch \ | 15 | file://0001-configure-don-t-run-python-distutils-to-find-STAGING.patch \ |
@@ -62,6 +62,8 @@ do_compile_prepend() { | |||
62 | FILES_${PN} += "${datadir}/xsessions ${datadir}/icons" | 62 | FILES_${PN} += "${datadir}/xsessions ${datadir}/icons" |
63 | FILES_${PN}-dbg += "${libdir}/xbmc/.debug ${libdir}/xbmc/*/.debug ${libdir}/xbmc/*/*/.debug ${libdir}/xbmc/*/*/*/.debug" | 63 | FILES_${PN}-dbg += "${libdir}/xbmc/.debug ${libdir}/xbmc/*/.debug ${libdir}/xbmc/*/*/.debug ${libdir}/xbmc/*/*/*/.debug" |
64 | 64 | ||
65 | RRECOMMENDS_${PN}_libc-glibc += "glibc-charmap-ibm850 glibc-gconv-ibm850" | 65 | # xbmc uses some kind of dlopen() method for libcec so we need to add it manually |
66 | RRECOMMENDS_${PN}_append = " libcec" | ||
67 | RRECOMMENDS_${PN}_append_libc-glibc = " glibc-charmap-ibm850 glibc-gconv-ibm850" | ||
66 | 68 | ||
67 | 69 | ||