xbmc-pvr: fix RSXS build if installed without libiconv

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2012-01-16 13:11:35 +01:00
parent 50959cab46
commit 70b95f57b5

View File

@ -24,6 +24,10 @@
if [ "$XBMC_SCR_RSXS" = yes ]; then if [ "$XBMC_SCR_RSXS" = yes ]; then
XBMC_RSXS="--enable-rsxs" XBMC_RSXS="--enable-rsxs"
# fix build of RSXS Screensaver support if not using libiconv
if [ ! "$ICONV" = "libiconv" ]; then
export jm_cv_func_gettimeofday_clobber=no
fi
else else
XBMC_RSXS="--disable-rsxs" XBMC_RSXS="--disable-rsxs"
fi fi