diff --git a/packages/mediacenter/xbmc/build b/packages/mediacenter/xbmc/build index 40b8ed4b54..a04d435cbb 100755 --- a/packages/mediacenter/xbmc/build +++ b/packages/mediacenter/xbmc/build @@ -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 \ diff --git a/projects/ION/options b/projects/ION/options index 9f492b16e9..117fc344b9 100644 --- a/projects/ION/options +++ b/projects/ION/options @@ -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" diff --git a/projects/generic/options b/projects/generic/options index 8dfe247278..d28e61af1f 100644 --- a/projects/generic/options +++ b/projects/generic/options @@ -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" diff --git a/projects/intel/options b/projects/intel/options index 8117b50817..aab7bc094c 100644 --- a/projects/intel/options +++ b/projects/intel/options @@ -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"