diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-12-27 17:42:31 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-12-27 17:42:31 +0000 |
commit | 356f73d5b6c08b7eea16ad0a25927a9b21769722 (patch) | |
tree | 57a4611ebc299e67b5d7dec033dda0017fd29bd9 | |
parent | 9693125d44713c111b7eadf02e4777d1e66a675c (diff) | |
download | xine-lib-356f73d5b6c08b7eea16ad0a25927a9b21769722.tar.gz xine-lib-356f73d5b6c08b7eea16ad0a25927a9b21769722.tar.bz2 |
Re-write the gcc compiler version test on Solaris/SPARC to not use character
ranges [...], [] are interpreted by the auto* m4 programs
CVS patchset: 3695
CVS date: 2002/12/27 17:42:31
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b68698879..98017e50e 100644 --- a/configure.ac +++ b/configure.ac @@ -927,7 +927,7 @@ case "$host_or_hostalias" in sun4m) cpu_cflags="-mcpu=v8 -mtune=supersparc" ;; sun4u) case `$CC --version 2>/dev/null` in - [12].*) + 1.*|2.*) # -mcpu=ultrasparc triggers a GCC 2.95.x compiler bug when # compiling video_out.c: # gcc: Internal compiler error: program cc1 got fatal signal 11 |