summaryrefslogtreecommitdiff
path: root/configure.in
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
commitcaf359e521041e7aa6290aa04225e974f73befd2 (patch)
treec30bc43587041097889ac8f115062ed843d30800 /configure.in
parent2baa2229f607c3787e0cb3ab9fa68cd284fe75da (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).
Diffstat (limited to 'configure.in')
-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)