diff options
| author | Roland McGrath <roland@gnu.org> | 2002-05-18 21:30:47 +0000 |
|---|---|---|
| committer | Roland McGrath <roland@gnu.org> | 2002-05-18 21:30:47 +0000 |
| commit | 515f42fd241cfe13ccbbd58f065a44c2cb6b1857 (patch) | |
| tree | 0e332e2860f55f6ca04da3da1796873d98d10a57 | |
| parent | a3822430ff8a34f83156290f4a6787f1c3b634d6 (diff) | |
2002-05-16 Roland McGrath <roland@frob.com>
* configure.in (asm_syntax): Add patterns for all the flavors we have
pfinet/linux-src/include/asm-* directories for: arm, m68k, mips,
sparc, sparc64.
| -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" ;; |
