1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-23 15:21:42 +02:00

Oddly commit missed this one.

* configure.ac: Call the new GNUPG_CHECK_READLINE macro for readline
stuff.
This commit is contained in:
David Shaw 2004-12-18 22:39:31 +00:00
parent 005b1d7960
commit f3baa06020
2 changed files with 6 additions and 15 deletions

View File

@ -1,3 +1,8 @@
2004-12-18 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Call the new GNUPG_CHECK_READLINE macro for
readline stuff.
2004-12-17 David Shaw <dshaw@jabberwocky.com> 2004-12-17 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Add a --with-ldap=DIR so people can add to the * configure.ac: Add a --with-ldap=DIR so people can add to the

View File

@ -116,14 +116,6 @@ AC_ARG_ENABLE(card-support,
card_support=$enableval, card_support=yes) card_support=$enableval, card_support=yes)
AC_MSG_RESULT($card_support) AC_MSG_RESULT($card_support)
AC_MSG_CHECKING([whether readline support is requested])
AC_ARG_WITH(readline,
AC_HELP_STRING([--without-readline],
[do not support fancy command line editing]),
[readline_support="$withval"], [readline_support=yes])
case "$readline_support" in yes);; no);; *)readline_support=yes;; esac
AC_MSG_RESULT($readline_support)
AC_MSG_CHECKING([whether the new iconv based code is requested]) AC_MSG_CHECKING([whether the new iconv based code is requested])
AC_ARG_ENABLE(gnupg-iconv, AC_ARG_ENABLE(gnupg-iconv,
AC_HELP_STRING([--disable-gnupg-iconv], AC_HELP_STRING([--disable-gnupg-iconv],
@ -1176,14 +1168,8 @@ fi
AC_SUBST(LIBUSB_LIBS) AC_SUBST(LIBUSB_LIBS)
AC_CHECK_FUNCS(usb_get_busses) AC_CHECK_FUNCS(usb_get_busses)
#
# Check for readline support # Check for readline support
# GNUPG_CHECK_READLINE
if test "$readline_support" = yes ; then
AC_CHECK_LIB(readline, add_history)
AC_CHECK_HEADERS([readline/readline.h])
fi
# Allow users to append something to the version string without # Allow users to append something to the version string without
# flagging it as development version. The user version parts is # flagging it as development version. The user version parts is