Mercurial > gftp.yaz
diff configure.in @ 230:f330309d2f17
2003-7-23 Brian Masney <masneyb@gftp.org>
* configure.in - incremented version to 2.0.15rc1. Also, if readline
wasn't found on the system, the text port wasn't be built
* ChangeLog-old - added summary of changes since version 2.0.14
* TODO - updated
* src/text/gftp-text.c - build fixes if readline isn't present on the
system
* lib/sshv2.c - don't print out the network error as well when getting
the error message from the remote server. The user is only interested
in the error returned from the server.
author | masneyb |
---|---|
date | Thu, 24 Jul 2003 01:48:33 +0000 |
parents | 3d6e024dbf31 |
children | 597d1f02b9c9 |
line wrap: on
line diff
--- a/configure.in Wed Jul 23 02:39:24 2003 +0000 +++ b/configure.in Thu Jul 24 01:48:33 2003 +0000 @@ -3,7 +3,7 @@ AC_INIT(lib/gftp.h) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(gftp,2.0.15) +AM_INIT_AUTOMAKE(gftp,2.0.15rc1) AC_ARG_ENABLE(gtk20, [ --disable-gtk20 Don't look for GTK+ 2.0 libraries], @@ -94,6 +94,8 @@ USE_READLINE="yes" READLINE_LIBS="" if test "x$enable_textport" = "xyes" ; then + GFTP_TEXT="gftp-text" + AC_MSG_CHECKING([whether to use readline]) AC_ARG_WITH(readline, [ --with-readline turn on readline [default=yes, default tries -lncurses, -lcurses, -ltermcap]], @@ -166,7 +168,6 @@ fi if test x${HAVE_LIBREADLINE} = xtrue; then READLINE_LIBS="-lreadline ${EXTRA_LIBREADLINE_DEPS}" - GFTP_TEXT="gftp-text" fi fi @@ -281,4 +282,4 @@ AM_GNU_GETTEXT -AC_OUTPUT(Makefile docs/Makefile docs/sample.gftp/Makefile lib/Makefile src/gftp src/Makefile src/gtk/Makefile src/text/Makefile gftp.spec intl/Makefile po/Makefile.in) +AC_OUTPUT(Makefile docs/Makefile docs/sample.gftp/Makefile lib/Makefile src/gftp src/Makefile src/gtk/Makefile src/text/Makefile gftp.spec intl/Makefile po/Makefile.in )