device: renew dhcp leases on awake for software devices
[NetworkManager.git] / m4 / ax_lib_readline.m4
1 # ===========================================================================
2 #      http://www.gnu.org/software/autoconf-archive/ax_lib_readline.html
3 # ===========================================================================
4 #
5 # SYNOPSIS
6 #
7 #   AX_LIB_READLINE
8 #
9 # DESCRIPTION
10 #
11 #   Searches for a readline compatible library. If found, defines
12 #   `HAVE_LIBREADLINE'. If the found library has the `add_history' function,
13 #   sets also `HAVE_READLINE_HISTORY'. Also checks for the locations of the
14 #   necessary include files and sets `HAVE_READLINE_H' or
15 #   `HAVE_READLINE_READLINE_H' and `HAVE_READLINE_HISTORY_H' or
16 #   'HAVE_HISTORY_H' if the corresponding include files exists.
17 #
18 #   The libraries that may be readline compatible are `libedit',
19 #   `libeditline' and `libreadline'. Sometimes we need to link a termcap
20 #   library for readline to work, this macro tests these cases too by trying
21 #   to link with `libtermcap', `libcurses' or `libncurses' before giving up.
22 #
23 #   Here is an example of how to use the information provided by this macro
24 #   to perform the necessary includes or declarations in a C file:
25 #
26 #     #ifdef HAVE_LIBREADLINE
27 #     #  if defined(HAVE_READLINE_READLINE_H)
28 #     #    include <readline/readline.h>
29 #     #  elif defined(HAVE_READLINE_H)
30 #     #    include <readline.h>
31 #     #  else /* !defined(HAVE_READLINE_H) */
32 #     extern char *readline ();
33 #     #  endif /* !defined(HAVE_READLINE_H) */
34 #     char *cmdline = NULL;
35 #     #else /* !defined(HAVE_READLINE_READLINE_H) */
36 #       /* no readline */
37 #     #endif /* HAVE_LIBREADLINE */
38 #
39 #     #ifdef HAVE_READLINE_HISTORY
40 #     #  if defined(HAVE_READLINE_HISTORY_H)
41 #     #    include <readline/history.h>
42 #     #  elif defined(HAVE_HISTORY_H)
43 #     #    include <history.h>
44 #     #  else /* !defined(HAVE_HISTORY_H) */
45 #     extern void add_history ();
46 #     extern int write_history ();
47 #     extern int read_history ();
48 #     #  endif /* defined(HAVE_READLINE_HISTORY_H) */
49 #       /* no history */
50 #     #endif /* HAVE_READLINE_HISTORY */
51 #
52 # LICENSE
53 #
54 #   Copyright (c) 2008 Ville Laurikari <vl@iki.fi>
55 #
56 #   Copying and distribution of this file, with or without modification, are
57 #   permitted in any medium without royalty provided the copyright notice
58 #   and this notice are preserved. This file is offered as-is, without any
59 #   warranty.
60
61 #serial 6
62
63 AU_ALIAS([VL_LIB_READLINE], [AX_LIB_READLINE])
64 AC_DEFUN([AX_LIB_READLINE], [
65   AC_CACHE_CHECK([for a readline compatible library],
66                  ax_cv_lib_readline, [
67     ORIG_LIBS="$LIBS"
68     for readline_lib in readline edit editline; do
69       # prefer ncurses since we use it for nmtui too
70       for termcap_lib in "" ncurses termcap curses; do
71         if test -z "$termcap_lib"; then
72           TRY_LIB="-l$readline_lib"
73         else
74           TRY_LIB="-l$readline_lib -l$termcap_lib"
75         fi
76         LIBS="$ORIG_LIBS $TRY_LIB"
77         AC_TRY_LINK_FUNC(readline, ax_cv_lib_readline="$TRY_LIB")
78         if test -n "$ax_cv_lib_readline"; then
79           break
80         fi
81       done
82       if test -n "$ax_cv_lib_readline"; then
83         break
84       fi
85     done
86     LIBS="$ORIG_LIBS"
87   ])
88
89   if test -z "$ax_cv_lib_readline"; then
90     AC_MSG_ERROR([readline library with terminfo support is required (one of readline, edit, or editline, AND one of ncurses, curses, or termcap)])
91   fi
92
93   ORIG_LIBS="$LIBS"
94   LIBS="$LIBS $ax_cv_lib_readline"
95   AC_CHECK_HEADERS(readline.h readline/readline.h)
96
97   # Check history
98   AC_CACHE_CHECK([whether readline supports history],
99                  ax_cv_lib_readline_history, [
100     ax_cv_lib_readline_history="no"
101     AC_TRY_LINK_FUNC(add_history, ax_cv_lib_readline_history="yes")
102   ])
103   if test "$ax_cv_lib_readline_history" != "yes"; then
104     AC_MSG_ERROR(readline history support is required)
105   fi
106   AC_CHECK_HEADERS(history.h readline/history.h)
107
108   # check rl_echo_signal_char()
109   AC_CACHE_CHECK([whether readline supports rl_echo_signal_char()],
110                  ax_cv_lib_readline_echo_signal_char, [
111     ax_cv_lib_readline_echo_signal_char="no"
112     AC_TRY_LINK_FUNC(rl_echo_signal_char, ax_cv_lib_readline_echo_signal_char="yes")
113   ])
114   if test "$ax_cv_lib_readline_echo_signal_char" != "yes"; then
115     AC_MSG_ERROR(rl_echo_signal_char() is required (install readline6?))
116   fi
117
118   LIBS="$ORIG_LIBS"
119   READLINE_LIBS="$ax_cv_lib_readline"
120   AC_SUBST(READLINE_LIBS)
121 ])dnl