summaryrefslogtreecommitdiff
path: root/m4/ax_lib_readline.m4
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2009-08-06 17:10:52 +0100
committerReuben Thomas <rrt@sc3d.org>2009-08-06 17:10:52 +0100
commita332f3403142bb10f5d9c7c34ce28dac912b6e95 (patch)
tree13a4f5a2fd9c0009cb1ab520b966f74ca1f54872 /m4/ax_lib_readline.m4
parent6b453698b5fff22ca6b4a3a3a4be8bed1d631c80 (diff)
downloadautoconf-archive-a332f3403142bb10f5d9c7c34ce28dac912b6e95.tar.gz
Rename more occurrences of vl_* to ax_*.
Diffstat (limited to 'm4/ax_lib_readline.m4')
-rw-r--r--m4/ax_lib_readline.m426
1 files changed, 13 insertions, 13 deletions
diff --git a/m4/ax_lib_readline.m4 b/m4/ax_lib_readline.m4
index f92f1c3..d6931d7 100644
--- a/m4/ax_lib_readline.m4
+++ b/m4/ax_lib_readline.m4
@@ -1,5 +1,5 @@
# ===========================================================================
-# http://www.nongnu.org/autoconf-archive/vl_lib_readline.html
+# http://www.nongnu.org/autoconf-archive/ax_lib_readline.html
# ===========================================================================
#
# SYNOPSIS
@@ -59,7 +59,7 @@
AC_DEFUN([AX_LIB_READLINE], [
AC_CACHE_CHECK([for a readline compatible library],
- vl_cv_lib_readline, [
+ ax_cv_lib_readline, [
ORIG_LIBS="$LIBS"
for readline_lib in readline edit editline; do
for termcap_lib in "" termcap curses ncurses; do
@@ -69,32 +69,32 @@ AC_DEFUN([AX_LIB_READLINE], [
TRY_LIB="-l$readline_lib -l$termcap_lib"
fi
LIBS="$ORIG_LIBS $TRY_LIB"
- AC_TRY_LINK_FUNC(readline, vl_cv_lib_readline="$TRY_LIB")
- if test -n "$vl_cv_lib_readline"; then
+ AC_TRY_LINK_FUNC(readline, ax_cv_lib_readline="$TRY_LIB")
+ if test -n "$ax_cv_lib_readline"; then
break
fi
done
- if test -n "$vl_cv_lib_readline"; then
+ if test -n "$ax_cv_lib_readline"; then
break
fi
done
- if test -z "$vl_cv_lib_readline"; then
- vl_cv_lib_readline="no"
+ if test -z "$ax_cv_lib_readline"; then
+ ax_cv_lib_readline="no"
fi
LIBS="$ORIG_LIBS"
])
- if test "$vl_cv_lib_readline" != "no"; then
- LIBS="$LIBS $vl_cv_lib_readline"
+ if test "$ax_cv_lib_readline" != "no"; then
+ LIBS="$LIBS $ax_cv_lib_readline"
AC_DEFINE(HAVE_LIBREADLINE, 1,
[Define if you have a readline compatible library])
AC_CHECK_HEADERS(readline.h readline/readline.h)
AC_CACHE_CHECK([whether readline supports history],
- vl_cv_lib_readline_history, [
- vl_cv_lib_readline_history="no"
- AC_TRY_LINK_FUNC(add_history, vl_cv_lib_readline_history="yes")
+ ax_cv_lib_readline_history, [
+ ax_cv_lib_readline_history="no"
+ AC_TRY_LINK_FUNC(add_history, ax_cv_lib_readline_history="yes")
])
- if test "$vl_cv_lib_readline_history" = "yes"; then
+ if test "$ax_cv_lib_readline_history" = "yes"; then
AC_DEFINE(HAVE_READLINE_HISTORY, 1,
[Define if your readline library has \`add_history'])
AC_CHECK_HEADERS(history.h readline/history.h)