aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure20
1 files changed, 18 insertions, 2 deletions
diff --git a/configure b/configure
index bd4933c0dd..061089361b 100755
--- a/configure
+++ b/configure
@@ -110,7 +110,7 @@ _alsa=auto
_zlib=auto
_mpeg2=no
_fluidsynth=auto
-_16bit=yes
+_16bit=auto
_readline=auto
# Default option behaviour yes/no
_text_console=no
@@ -639,7 +639,6 @@ DEBFLAGS="-g"
for ac_option in $@; do
case "$ac_option" in
- --enable-16bit) _16bit=yes ;;
--disable-16bit) _16bit=no ;;
--disable-hq-scalers) _build_hq_scalers=no ;;
--disable-scalers) _build_scalers=no ;;
@@ -1496,6 +1495,23 @@ EOF
fi
#
+# Enable 16bit support only for backends which support it
+#
+case $_backend in
+ sdl)
+ if test "$_16bit" = auto ; then
+ _16bit=yes
+ else
+ _16bit=no
+ fi
+ ;;
+ *)
+ _16bit=no
+ ;;
+esac
+
+
+#
# Add the results of the above checks to config.h
#
case $_endian in