summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-05-01 00:34:20 +0000
committerRoland McGrath <roland@gnu.org>1999-05-01 00:34:20 +0000
commit597c0f6a73e28671bd8f99cde64bda37eac294ec (patch)
tree1b33b08d2415c2c8f257b35f3702a68b0ab46595 /aclocal.m4
parentd67ab428d05788de85be0a9b8df8c3c4c025629d (diff)
1999-04-30 Roland McGrath <roland@baalperazim.frob.com>
* aclocal.m4 (hurd_SYSTYPE): New macro. * i386/linux/Drivers.in: Use it. * i386/linux/configure: Regenerated.
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m48
1 files changed, 8 insertions, 0 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 3d04b82..42d1b4f 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -71,3 +71,11 @@ AC_MSG_RESULT($ac_cv_prog_cc_cross)
AC_SUBST(cross_linkable)
cross_compiling=$ac_cv_prog_cc_cross
])
+
+AC_DEFUN(hurd_SYSTYPE,
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
+case "$host_cpu" in
+i[[3456]]86) systype=i386 ;;
+*) systype="$host_cpu" ;;
+esac
+AC_SUBST(systype)])