pistachio: Explicitly require autoconf >= 2.50

'make -C base-pistachio prepare' produces the following error otherwise

  autoconf: Undefined macros:
  configure.in:117:AC_CONFIG_HEADERS([config.h])
  configure.in:129:Please[AC_HELP_STRING([--with-comport=PORT],
  configure.in:138:Please[AC_HELP_STRING([--with-comspeed=SPEED],
  configure.in:147:Please[AC_HELP_STRING([--with-kickstart-linkbase=BASE],
  configure.in:152:Please[AC_HELP_STRING([--with-s0-linkbase=BASE],
  configure.in:157:Please[AC_HELP_STRING([--with-roottask-linkbase=BASE],
  configure.in:162:Please[AC_HELP_STRING([--with-kerneldir=DIR],
  configure.in:341:AC_CONFIG_FILES([
  configure.in:36:AC_CONFIG_SRCDIR([serv/sigma0/sigma0.cc])

Fixes #1034.
This commit is contained in:
Christian Helmuth 2014-01-23 11:40:41 +01:00
parent 8ed2e150a4
commit 1645587b6a
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
Require Autoconf version >= 2.50
---
user/configure.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/user/configure.in b/user/configure.in
index 264f82d..8f27ec2 100644
--- a/user/configure.in
+++ b/user/configure.in
@@ -34,6 +34,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT(Pistachio, [0.4])
AC_CONFIG_SRCDIR([serv/sigma0/sigma0.cc])
+AC_PREREQ(2.50)
if test "x$host_alias" != x; then
# We do not necessarily need crt0 and friends when cross-compiling.