aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMax Horn2006-04-17 08:38:26 +0000
committerMax Horn2006-04-17 08:38:26 +0000
commitde250812e5e2a15fc3a1dddc9faae09f1c2df6d6 (patch)
treea612e6479a9a3e78e43b68f88d23cbf9f725dbdb /configure
parent092893a16d021a2391a3adfbb07db5f8bf9ee073 (diff)
downloadscummvm-rg350-de250812e5e2a15fc3a1dddc9faae09f1c2df6d6.tar.gz
scummvm-rg350-de250812e5e2a15fc3a1dddc9faae09f1c2df6d6.tar.bz2
scummvm-rg350-de250812e5e2a15fc3a1dddc9faae09f1c2df6d6.zip
Removed my Altivec version of the hqx blitters, since it (a) didn't work with newer GCC versions, (b) speed was improved on some systems, but actually slower on others, and (c) even on my old 400 Mhz G4 hqx is fast enough w/o it
svn-id: r21961
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure26
1 files changed, 0 insertions, 26 deletions
diff --git a/configure b/configure
index cdb1548ff0..93c47ed234 100755
--- a/configure
+++ b/configure
@@ -62,7 +62,6 @@ _build_cine=no
_need_memalign=no
_build_plugins=no
_nasm=auto
-_altivec=auto
_build_hq_scalers=yes
_build_scalers=yes
# more defaults
@@ -400,7 +399,6 @@ for ac_option in $@; do
--enable-plugins) _build_plugins=yes ;;
--enable-mt32emu) _mt32emu=yes ;;
--disable-mt32emu) _mt32emu=no ;;
- --disable-altivec) _altivec=no ;;
--with-fluidsynth-prefix=*)
arg=`echo $ac_option | cut -d '=' -f 2`
FLUIDSYNTH_CFLAGS="-I$arg/include"
@@ -1233,30 +1231,6 @@ test -z "$_bindir" && _bindir="$_prefix/bin"
test -z "$_mandir" && _mandir="$_prefix/man"
#
-# Check for Altivec, if on MacOS X
-#
-case $_host_os in
- darwin*)
- echocheck "Altivec"
- if test "$_altivec" = auto ; then
- _altivec=no
- cat > $TMPC << EOF
-int main(void) { return 0; }
-EOF
- cc_check $LDFLAGS $CXXFLAGS -maltivec && _altivec=yes
- fi
- if test "$_altivec" = yes ; then
- DEFINES="$DEFINES -DHAS_ALTIVEC"
- CXXFLAGS="$CXXFLAGS -faltivec"
- CFLAGS="$CFLAGS -faltivec"
- fi
- echo "$_altivec"
- rm -f $TMPC $TMPO$EXEEXT
- ;;
-esac
-
-
-#
# Check which engines ("frontends") are to be built
#
echo