diff --git a/config/functions b/config/functions index 58ce6cd9c5..fb74d89ea4 100644 --- a/config/functions +++ b/config/functions @@ -256,6 +256,7 @@ show_config() { config_message="$config_message\n $dashes$dashes" config_message="$config_message\n - Broadcom CrystalHD Decoder:\t\t $CRYSTALHD" + config_message="$config_message\n - OpenMAX Support (provider):\t\t $OPENMAX_SUPPORT ($OPENMAX)" config_message="$config_message\n - VAAPI Support:\t\t\t $VAAPI" config_message="$config_message\n - VDPAU Support:\t\t\t $VDPAU" config_message="$config_message\n - XVBA Support:\t\t\t $XVBA" diff --git a/config/graphic b/config/graphic index e7dd040ea3..fd70ef521e 100644 --- a/config/graphic +++ b/config/graphic @@ -20,6 +20,14 @@ if [ "$SDL_SUPPORT" = no ]; then JOYSTICK_SUPPORT="no" fi +if [ "$OPENMAX" = no ]; then + OPENMAX_SUPPORT="no" + ALSA_SUPPORT=yes +else + OPENMAX_SUPPORT="yes" + ALSA_SUPPORT="no" +fi + if [ "$OPENGL_SUPPORT" = no ]; then XBMC_SCR_RSXS="no" XBMC_VIS_PROJECTM="no"