diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2001-07-17 15:21:19 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2001-07-17 15:21:19 +0000 |
commit | 4074f2f9c2e10341408cfe0301a543b618aac6e0 (patch) | |
tree | 8e4142792e924e8ba7d26f13bd1918678b6c3e67 | |
parent | 7d3f2046508548f82c0a1ecb31e0e04f2c055df7 (diff) | |
download | xine-lib-4074f2f9c2e10341408cfe0301a543b618aac6e0.tar.gz xine-lib-4074f2f9c2e10341408cfe0301a543b618aac6e0.tar.bz2 |
Recognize linux/powerpc and linux/sparc in configure script
CVS patchset: 295
CVS date: 2001/07/17 15:21:19
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 1e3beb59e..b75812b8e 100644 --- a/configure.in +++ b/configure.in @@ -409,11 +409,11 @@ case $host in GLOBAL_CFLAGS="$GLOBAL_CFLAGS -O3 -mieee" DEBUG_CFLAGS="$DEBUG_CFLAGS -O3 -mieee" ;; - powerpc-*) + ppc-*-linux-* | powerpc-*) GLOBAL_CFLAGS="$GLOBAL_CFLAGS -O3 -pipe -fomit-frame-pointer $m_wm $m_psb -fexpensive-optimizations $f_si $f_nsa -ffast-math -funroll-loops -funroll-all-loops -finline-functions" DEBUG_CFLAGS="$DEBUG_CFLAGS -O3" ;; - sparc-*) + sparc64-*-linux-* | sparc-*) dnl hard code cpu target as sparcv8, hopefully no one wants to watch dnl mpeg videos on his old SPARCstation2 :-) GLOBAL_CFLAGS="$GLOBAL_CFLAGS -O3 -mcpu=v8 -mtune=ultrasparc -funroll-loops -funroll-all-loops -finline-functions" |