From 505455c8c4304001235d71f848963daf615a3652 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Sun, 17 Aug 2003 11:58:00 +0000 Subject: [PATCH] Check for readline headers in the headers check section as otherwise, and I don't exactly know why, AC_HEADER_STDC would fail with newer autoconf versions. --- BasiliskII/src/Unix/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasiliskII/src/Unix/configure.ac b/BasiliskII/src/Unix/configure.ac index 4f672747..95e39fc2 100644 --- a/BasiliskII/src/Unix/configure.ac +++ b/BasiliskII/src/Unix/configure.ac @@ -108,7 +108,6 @@ if [[ "x$WANT_MON" = "xyes" ]]; then AC_CHECK_LIB(Hcurses, tgetent, , AC_CHECK_LIB(curses, tgetent)))))) AC_CHECK_LIB(readline, readline) - AC_CHECK_HEADERS(readline.h history.h readline/readline.h readline/history.h) else AC_MSG_RESULT(no) AC_MSG_WARN([Could not find mon, ignoring --with-mon.]) @@ -225,6 +224,7 @@ AC_SYS_LARGEFILE dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(unistd.h fcntl.h sys/time.h sys/mman.h) +AC_CHECK_HEADERS(readline.h history.h readline/readline.h readline/history.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_BIGENDIAN