diff options
author | Alfred M. Szmidt <ams@gnu.org> | 2005-04-07 20:48:41 +0000 |
---|---|---|
committer | Alfred M. Szmidt <ams@gnu.org> | 2005-04-07 20:48:41 +0000 |
commit | 53b39929031e5ced105c67eac45e6f2bccc6f665 (patch) | |
tree | 038d762c1ed570fb513ab8e78e413cd34c82e0f7 /configure.in | |
parent | d68f1a3c3baaa650d10a941d53bdd894eaa499af (diff) | |
download | hurd-53b39929031e5ced105c67eac45e6f2bccc6f665.tar.gz hurd-53b39929031e5ced105c67eac45e6f2bccc6f665.tar.bz2 hurd-53b39929031e5ced105c67eac45e6f2bccc6f665.zip |
2005-04-07 Alfred M. Szmidt <ams@gnu.org>
* configure.in: Error out if MiG couldn't be found.
* configure: Regenerated.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8d493da5..74fc9d13 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.35 2003/02/15 23:57:50 roland Exp $]) +AC_REVISION([$Id: configure.in,v 1.36 2005/04/07 20:48:40 ams Exp $]) AC_PREREQ(2.54) dnl Minimum Autoconf version required. AC_INIT AC_CONFIG_SRCDIR([hurd/hurd_types.h]) dnl File to look for in srcdir. @@ -87,6 +87,14 @@ AC_CHECK_TOOL(OBJCOPY, objcopy) AC_CHECK_TOOL(AR, ar) AC_CHECK_TOOL(RANLIB, ranlib) AC_CHECK_TOOL(MIG, mig) +# Require MiG. +if test x${MIG} = x; then + AC_MSG_ERROR([ +*** You need GNU MiG to compile the GNU Hurd, please see +*** http://www.gnu.org/software/hurd/mig.html for further details, or +*** download it directly from the main GNU server (ftp.gnu.org) or any +*** GNU mirror.]) +fi dnl Let these propagate from the environment. AC_SUBST(CFLAGS) AC_SUBST(CPPFLAGS) AC_SUBST(LDFLAGS) |