xbmc: make Waveform/Spectrum/FishBMC visualisations optional

This commit is contained in:
Stefan Saraev 2013-11-30 18:18:55 +02:00
parent ec23ba9501
commit 31c98b0649
6 changed files with 69 additions and 0 deletions

View File

@ -132,6 +132,27 @@ else
XBMC_GOOM="--disable-goom"
fi
if [ "$XBMC_VIS_WAVEFORM" = yes ]; then
# for Waveform Visualisation support
XBMC_WAVEFORM="--enable-waveform"
else
XBMC_WAVEFORM="--disable-waveform"
fi
if [ "$XBMC_VIS_SPECTRUM" = yes ]; then
# for Spectrum Visualisation support
XBMC_SPECTRUM="--enable-spectrum"
else
XBMC_SPECTRUM="--disable-spectrum"
fi
if [ "$XBMC_VIS_FISHBMC" = yes ]; then
# for FishBMC Visualisation support
XBMC_FISHBMC="--enable-fishbmc"
else
XBMC_FISHBMC="--disable-fishbmc"
fi
if [ "$JOYSTICK_SUPPORT" = yes ]; then
# for Joystick support
XBMC_JOYSTICK="--enable-joystick"
@ -339,6 +360,9 @@ PKG_CONFIGURE_OPTS_TARGET="gl_cv_func_gettimeofday_clobber=no \
$XBMC_GOOM \
$XBMC_RSXS \
$XBMC_PROJECTM \
$XBMC_WAVEFORM \
$XBMC_SPECTRUM \
$XBMC_FISHBMC \
$XBMC_XORG \
--disable-ccache \
$XBMC_ALSA \

View File

@ -142,6 +142,15 @@
# build and install 'GOOM' Visualization (yes / no)
XBMC_VIS_GOOM="yes"
# build and install 'Waveform' Visualization (yes / no)
XBMC_VIS_WAVEFORM="yes"
# build and install 'Spectrum' Visualization (yes / no)
XBMC_VIS_SPECTRUM="yes"
# build and install 'FishBMC' Visualization (yes / no)
XBMC_VIS_FISHBMC="yes"
# build and install ALSA Audio support (yes / no)
ALSA_SUPPORT="yes"

View File

@ -142,6 +142,15 @@
# build and install 'GOOM' Visualization (yes / no)
XBMC_VIS_GOOM="yes"
# build and install 'Waveform' Visualization (yes / no)
XBMC_VIS_WAVEFORM="yes"
# build and install 'Spectrum' Visualization (yes / no)
XBMC_VIS_SPECTRUM="yes"
# build and install 'FishBMC' Visualization (yes / no)
XBMC_VIS_FISHBMC="yes"
# build and install ALSA Audio support (yes / no)
ALSA_SUPPORT="yes"

View File

@ -142,6 +142,15 @@
# build and install 'GOOM' Visualization (yes / no)
XBMC_VIS_GOOM="yes"
# build and install 'Waveform' Visualization (yes / no)
XBMC_VIS_WAVEFORM="yes"
# build and install 'Spectrum' Visualization (yes / no)
XBMC_VIS_SPECTRUM="yes"
# build and install 'FishBMC' Visualization (yes / no)
XBMC_VIS_FISHBMC="yes"
# build and install ALSA Audio support (yes / no)
ALSA_SUPPORT="yes"

View File

@ -142,6 +142,15 @@
# build and install 'GOOM' Visualization (yes / no)
XBMC_VIS_GOOM="no"
# build and install 'Waveform' Visualization (yes / no)
XBMC_VIS_WAVEFORM="yes"
# build and install 'Spectrum' Visualization (yes / no)
XBMC_VIS_SPECTRUM="yes"
# build and install 'FishBMC' Visualization (yes / no)
XBMC_VIS_FISHBMC="yes"
# build and install ALSA Audio support (yes / no)
ALSA_SUPPORT="no"

View File

@ -137,6 +137,15 @@
# build and install 'GOOM' Visualization (yes / no)
XBMC_VIS_GOOM="yes"
# build and install 'Waveform' Visualization (yes / no)
XBMC_VIS_WAVEFORM="no"
# build and install 'Spectrum' Visualization (yes / no)
XBMC_VIS_SPECTRUM="no"
# build and install 'FishBMC' Visualization (yes / no)
XBMC_VIS_FISHBMC="no"
# build and install ALSA Audio support (yes / no)
ALSA_SUPPORT="yes"