diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 43 |
1 files changed, 31 insertions, 12 deletions
diff --git a/configure.in b/configure.in index 3b8a96c..e73ecd3 100644 --- a/configure.in +++ b/configure.in @@ -49,18 +49,37 @@ AC_SUBST(EXTRA_OBJS) dnl checks for libraries dnl readline and history for plpftp -AC_CHECK_LIB(readline, readline, -[ - AC_DEFINE_UNQUOTED(HAVE_LIBREADLINE) - have_libreadline=true -]) -AC_CHECK_LIB(history, add_history, -[ - AC_DEFINE_UNQUOTED(HAVE_LIBHISTORY) - have_libhistory=true -]) -AM_CONDITIONAL(HAVE_LIBREADLINE, test x$have_libreadline = xtrue) -AM_CONDITIONAL(HAVE_LIBHISTORY, test x$have_libhistory = xtrue) +ac_enable_readline=yes +AM_CONDITIONAL(HAVE_LIBREADLINE, false) +AM_CONDITIONAL(ADD_LIBCURSES, false) +AC_ARG_ENABLE(readline, + [ --disable-readline disable libreadline support [no]], + if test "$enableval" = "no" ; then + AC_MSG_RESULT([support for libreadline disabled]) + ac_enable_readline=no + fi +) +if test "x$ac_enable_readline" = "xyes" ; then + AC_CHECK_READLINE +fi + +ac_enable_history=yes +AM_CONDITIONAL(HAVE_LIBHISTORY, false) +AC_ARG_ENABLE(history, + [ --disable-history disable libhistory support [no]], + if test "$enableval" = "no" ; then + AC_MSG_RESULT([support for libhistory disabled]) + ac_enable_history=no + fi +) +if test "x$ac_enable_history" = "xyes" ; then + AC_CHECK_LIB(history, add_history, + [ + AC_DEFINE_UNQUOTED(HAVE_LIBHISTORY) + have_libhistory=true + ]) + AM_CONDITIONAL(HAVE_LIBHISTORY, test x$have_libhistory = xtrue) +fi dnl these three are for solaris AC_CHECK_LIB(socket, socket) |