From 81edd3b3a78265b87c2ec6100dce852db5f40d2b Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Wed, 17 May 2017 16:05:07 +0200 Subject: [PATCH 1/3] Fix build on systems with dirty headers --- configure.ac | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 2569a766..b352e039 100644 --- a/configure.ac +++ b/configure.ac @@ -303,7 +303,11 @@ case $sysdesc in AC_CHECK_HEADER([linux/rtnetlink.h], [], [AC_MSG_ERROR([Appropriate version of Linux kernel headers not found.])], - [] dnl Force new AC_CHECK_HEADER semantics + [ + dnl Some older versions of Linux kernel headers require these includes + #include + #include + ] ) ;; esac @@ -337,7 +341,7 @@ if test "$enable_client" = yes ; then AC_CHECK_HEADERS([curses.h], [], [AC_MSG_ERROR([The client requires ncurses library. Either install the library or use --disable-client to compile without the client.])], - [] dnl Force new AC_CHECK_HEADER semantics + [AC_INCLUDES_DEFAULT] ) AC_SEARCH_LIBS([tgetent], [tinfo tinfow ncurses curses termcap], @@ -348,7 +352,7 @@ if test "$enable_client" = yes ; then AC_CHECK_HEADERS([readline/readline.h readline/history.h], [], [AC_MSG_ERROR([The client requires GNU Readline library. Either install the library or use --disable-client to compile without the client.])], - [] dnl Force new AC_CHECK_HEADER semantics + [AC_INCLUDES_DEFAULT] ) AC_SEARCH_LIBS([add_history], [history], From dab6706abad3be5b8efd44fe860689df44d20e83 Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Wed, 17 May 2017 17:03:36 +0200 Subject: [PATCH 2/3] History lib may be integrated to Readline lib --- configure.ac | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index b352e039..5d36d8e2 100644 --- a/configure.ac +++ b/configure.ac @@ -355,17 +355,18 @@ if test "$enable_client" = yes ; then [AC_INCLUDES_DEFAULT] ) - AC_SEARCH_LIBS([add_history], [history], - [HISTORY_LIBS="$LIBS"; LIBS=""], - [AC_MSG_ERROR([The client requires GNU Readline library. Either install the library or use --disable-client to compile without the client.])], - ) - AC_SEARCH_LIBS([rl_callback_read_char], [readline], [READLINE_LIBS="$LIBS"; LIBS=""], [AC_MSG_ERROR([The client requires GNU Readline library. Either install the library or use --disable-client to compile without the client.])], [$TINFO_LIBS] ) + AC_SEARCH_LIBS([add_history], [history], + [HISTORY_LIBS="$LIBS"; LIBS=""], + [AC_MSG_ERROR([The client requires GNU Readline library. Either install the library or use --disable-client to compile without the client.])], + [$READLINE_LIBS $TINFO_LIBS] + ) + AC_CHECK_LIB([readline], [rl_crlf], [AC_DEFINE([HAVE_RL_CRLF], [1], [Define to 1 if you have rl_crlf()])], [], @@ -379,7 +380,7 @@ if test "$enable_client" = yes ; then ) LIBS="$BASE_LIBS" - CLIENT_LIBS="$READLINE_LIBS $HISTORY_LIBS $TINFO_LIBS" + CLIENT_LIBS="$HISTORY_LIBS $READLINE_LIBS $TINFO_LIBS" fi AC_SUBST([CLIENT]) AC_SUBST([CLIENT_LIBS]) From d6e01ff90024fcee259eb145f38a0f5b000e4798 Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Wed, 17 May 2017 17:30:23 +0200 Subject: [PATCH 3/3] Fix of the previous commit --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 5d36d8e2..91f89edf 100644 --- a/configure.ac +++ b/configure.ac @@ -361,10 +361,10 @@ if test "$enable_client" = yes ; then [$TINFO_LIBS] ) - AC_SEARCH_LIBS([add_history], [history], + AC_SEARCH_LIBS([add_history], [history readline], [HISTORY_LIBS="$LIBS"; LIBS=""], [AC_MSG_ERROR([The client requires GNU Readline library. Either install the library or use --disable-client to compile without the client.])], - [$READLINE_LIBS $TINFO_LIBS] + [$TINFO_LIBS] ) AC_CHECK_LIB([readline], [rl_crlf],