summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-09-13 19:47:52 +0000
committerRichard M. Stallman <rms@gnu.org>1997-09-13 19:47:52 +0000
commit38c8ae3016f46aebee2436669fd4b46efd895814 (patch)
treec6c4fa17f5f56b7c48534149b37bbfb567e6507f /configure.in
parenta3028d0c02b3ce58d9e6e450c196a612afe8d9c0 (diff)
downloademacs-38c8ae3016f46aebee2436669fd4b46efd895814.tar.gz
Recognize alpha* instead of just alpha.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index be103519787..7f4af864cbf 100644
--- a/configure.in
+++ b/configure.in
@@ -163,7 +163,7 @@ case "${canonical}" in
*-*-netbsd* )
opsys=netbsd
case "${canonical}" in
- alpha-*-netbsd*) machine=alpha ;;
+ alpha*-*-netbsd*) machine=alpha ;;
i[3456]86-*-netbsd*) machine=intel386 ;;
m68k-*-netbsd*)
# This is somewhat bogus.
@@ -179,7 +179,7 @@ case "${canonical}" in
*-*-openbsd* )
opsys=openbsd
case "${canonical}" in
- alpha-*-openbsd*) machine=alpha ;;
+ alpha*-*-openbsd*) machine=alpha ;;
i386-*-openbsd*) machine=intel386 ;;
m68k-*-openbsd*) machine=hp9000s300 ;;
mipsel-*-openbsd*) machine=pmax ;;
@@ -229,14 +229,14 @@ case "${canonical}" in
;;
## Alpha (DEC) machines.
- alpha-dec-osf* )
+ alpha*-dec-osf* )
machine=alpha opsys=osf1
# This is needed to find X11R6.1 libraries for certain tests.
NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
;;
- alpha-*-linux-gnu* )
+ alpha*-*-linux-gnu* )
machine=alpha opsys=gnu-linux
;;