2013-05-02 02:54:57 +00:00
|
|
|
dnl The readline library
|
|
|
|
dnl
|
|
|
|
dnl Copyright (C) 2005-2013 Red Hat, Inc.
|
|
|
|
dnl
|
|
|
|
dnl This library is free software; you can redistribute it and/or
|
|
|
|
dnl modify it under the terms of the GNU Lesser General Public
|
|
|
|
dnl License as published by the Free Software Foundation; either
|
|
|
|
dnl version 2.1 of the License, or (at your option) any later version.
|
|
|
|
dnl
|
|
|
|
dnl This library is distributed in the hope that it will be useful,
|
|
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
dnl Lesser General Public License for more details.
|
|
|
|
dnl
|
|
|
|
dnl You should have received a copy of the GNU Lesser General Public
|
|
|
|
dnl License along with this library. If not, see
|
|
|
|
dnl <http://www.gnu.org/licenses/>.
|
|
|
|
dnl
|
|
|
|
|
2016-12-12 17:11:51 +00:00
|
|
|
AC_DEFUN([LIBVIRT_ARG_READLINE],[
|
2016-12-22 11:49:51 +00:00
|
|
|
LIBVIRT_ARG_WITH_FEATURE([READLINE], [readline], [check])
|
2016-12-12 17:11:51 +00:00
|
|
|
])
|
2016-11-23 12:22:25 +00:00
|
|
|
|
2016-12-12 17:11:51 +00:00
|
|
|
AC_DEFUN([LIBVIRT_CHECK_READLINE],[
|
2013-10-04 17:51:41 +00:00
|
|
|
extra_LIBS=
|
|
|
|
lv_saved_libs=$LIBS
|
|
|
|
if test "x$with_readline" != xno; then
|
|
|
|
# Linking with -lreadline may require some termcap-related code, e.g.,
|
|
|
|
# from one of the following libraries. Add it to LIBS before using
|
|
|
|
# canned library checks; then verify later if it was needed.
|
2013-05-02 02:54:57 +00:00
|
|
|
LIBS=
|
|
|
|
AC_SEARCH_LIBS([tgetent], [ncurses curses termcap termlib])
|
|
|
|
case $LIBS in
|
|
|
|
no*) ;; # handle "no" and "none required"
|
|
|
|
*) # anything else is a -lLIBRARY
|
2013-10-04 17:51:41 +00:00
|
|
|
extra_LIBS=$LIBS ;;
|
2013-05-02 02:54:57 +00:00
|
|
|
esac
|
2013-10-04 17:51:41 +00:00
|
|
|
LIBS="$lv_saved_libs $extra_LIBS"
|
2013-05-02 02:54:57 +00:00
|
|
|
fi
|
|
|
|
|
2018-01-14 13:29:32 +00:00
|
|
|
AC_CHECK_DECLS([rl_completion_quote_character],
|
|
|
|
[], [],
|
|
|
|
[[#include <stdio.h>
|
|
|
|
#include <readline/readline.h>]])
|
|
|
|
|
|
|
|
if test "$ac_cv_have_decl_rl_completion_quote_character" = "no" ; then
|
|
|
|
if test "$with_readline" = "yes" ; then
|
|
|
|
AC_MSG_ERROR([readline is missing rl_completion_quote_character])
|
|
|
|
else
|
|
|
|
with_readline=no;
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2013-10-04 17:51:41 +00:00
|
|
|
# The normal library check...
|
|
|
|
LIBVIRT_CHECK_LIB([READLINE], [readline], [readline], [readline/readline.h])
|
|
|
|
|
|
|
|
# Touch things up to avoid $extra_LIBS, if possible. Test a second
|
|
|
|
# function, to ensure we aren't being confused by caching.
|
|
|
|
LIBS=$lv_saved_libs
|
|
|
|
AC_CHECK_LIB([readline], [rl_initialize],
|
2017-05-26 17:43:42 +00:00
|
|
|
[READLINE_CFLAGS="-D_FUNCTION_DEF $READLINE_CFLAGS"
|
|
|
|
AC_SUBST(READLINE_CFLAGS)],
|
|
|
|
[READLINE_LIBS="$READLINE_LIBS $extra_LIBS"])
|
2013-10-04 17:51:41 +00:00
|
|
|
LIBS=$lv_saved_libs
|
2013-05-02 02:54:57 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([LIBVIRT_RESULT_READLINE],[
|
2013-10-04 17:51:41 +00:00
|
|
|
LIBVIRT_RESULT_LIB([READLINE])
|
2013-05-02 02:54:57 +00:00
|
|
|
])
|