From 1645587b6ad76664214afdfe95d9997e2b5e5ea0 Mon Sep 17 00:00:00 2001 From: Christian Helmuth Date: Thu, 23 Jan 2014 11:40:41 +0100 Subject: [PATCH] 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. --- base-pistachio/patches/configure.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 base-pistachio/patches/configure.patch diff --git a/base-pistachio/patches/configure.patch b/base-pistachio/patches/configure.patch new file mode 100644 index 0000000000..e0b781def8 --- /dev/null +++ b/base-pistachio/patches/configure.patch @@ -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.