summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1997-04-17 20:05:46 +0000
committerThomas Bushnell <thomas@gnu.org>1997-04-17 20:05:46 +0000
commit679184cd2aa5bd264dc09fe5068bd5e745bd1ebc (patch)
tree9f96ee51aa069c5e606d7bc9e354785f7b624c99
parent5ed1965f6f4b65dac52a321166ec2f7ebbc5b168 (diff)
Wed Apr 16 12:52:25 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* Makefile.in (cross-lexxer.o lexxer.o): Add pump-priming dependency on cpu.h. Reported by Marcus G. Daniels (marcus@cathcart.sysc.pdx.edu). * configure.in: Fail if configure target is not for GNU os. * Makefile.in (./cross-mig): New rule. (mkinstalldirs): Add $(libexecdir). * configure.in: Recognize i686. Reported by Marcus G. Daniels (marcus@cathcart.sysc.pdx.edu).
-rw-r--r--configure.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 6885f6b..50aabe4 100644
--- a/configure.in
+++ b/configure.in
@@ -21,10 +21,15 @@ AC_INIT(kern/ipc_kobject.c)
AC_CANONICAL_HOST
case "$host_cpu" in
-i[[345]]86) systype=i386 ;;
+i[[3456]]86) systype=i386 ;;
*) AC_MSG_ERROR([unsupported CPU type]) ;;
esac
+case "$host_os" in
+gnu*) ;;
+*) AC_MSG_ERROR([sorry, this is the gnu os, not $host_os]) ;;
+esac
+
AC_SUBST(systype)
AC_SUBST(cross_compiling)