- make building and installing of FAAC support optional (default enabled, setup via /projects/*/options)
This commit is contained in:
Stephan Raue 2010-06-09 06:21:27 +02:00
parent 16e8671caa
commit c729b01406
4 changed files with 19 additions and 1 deletions

View File

@ -68,6 +68,12 @@ else
XBMC_DVDCSS="--disable-dvdcss"
fi
if [ "$FAAC_SUPPORT" = yes ]; then
XBMC_FAAC="--enable-faac"
else
XBMC_FAAC="--disable-faac"
fi
if [ "$AVAHI_DAEMON" = yes ]; then
$SCRIPTS/build avahi
XBMC_AVAHI="--enable-avahi"
@ -141,7 +147,7 @@ $AUTORECONF xbmc/lib/libid3tag/libid3tag
--disable-ccache \
--disable-pulse \
--enable-ffmpeg-libvorbis \
--enable-faac \
$XBMC_FAAC \
$XBMC_DVDCSS \
--disable-mid \
$XBMC_AVAHI \

View File

@ -73,6 +73,10 @@
# (DVD decryption support in XBMC) (yes / no)
DVDCSS_SUPPORT="yes"
# build and install with FAAC support in XBMC
# FAAC is an MPEG-4 and MPEG-2 AAC encoder (yes / no)
FAAC_SUPPORT="yes"
# build with network support (yes / no)
NETWORK="yes"

View File

@ -73,6 +73,10 @@
# (DVD decryption support in XBMC) (yes / no)
DVDCSS_SUPPORT="yes"
# build and install with FAAC support in XBMC
# FAAC is an MPEG-4 and MPEG-2 AAC encoder (yes / no)
FAAC_SUPPORT="yes"
# build with network support (yes / no)
NETWORK="yes"

View File

@ -73,6 +73,10 @@
# (DVD decryption support in XBMC) (yes / no)
DVDCSS_SUPPORT="yes"
# build and install with FAAC support in XBMC
# FAAC is an MPEG-4 and MPEG-2 AAC encoder (yes / no)
FAAC_SUPPORT="yes"
# build with network support (yes / no)
NETWORK="yes"