mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 08:21:08 +00:00
1645587b6a
'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.
18 lines
506 B
Diff
18 lines
506 B
Diff
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.
|