diff options
-rw-r--r-- | configure.in | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 3603403f..c5cd14cd 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_REVISION([$Id: configure.in,v 1.31 2002/05/03 22:58:09 roland Exp $]) +AC_REVISION([$Id: configure.in,v 1.32 2002/05/18 21:30:47 roland Exp $]) AC_PREREQ(2.12) dnl Minimum Autoconf version required. AC_INIT(hurd/hurd_types.h) dnl A distinctive file to look for in srcdir. @@ -23,12 +23,27 @@ case "$host_cpu" in alpha*) asm_syntax=alpha ;; +arm*) + asm_syntax=arm + ;; +m68k | m680?0) + asm_syntax=m68k + ;; +mips*) + asm_syntax=mips + ;; i?86) asm_syntax=i386 ;; powerpc*) asm_syntax=ppc ;; +sparc64* | ultrasparc*) + asm_syntax=sparc64 + ;; +sparc*) + asm_syntax=sparc + ;; *) asm_syntax="$host_cpu" ;; |