Mercurial > gftp.yaz
changeset 213:06cdf06a0f31
2003-7-6 Brian Masney <masneyb@gftp.org>
* lib/configure.in - check for getdtablesize()
* TODO - updated
author | masneyb |
---|---|
date | Sun, 06 Jul 2003 14:24:52 +0000 |
parents | f04f6bedaf19 |
children | 6041bc2373e3 |
files | ChangeLog TODO configure.in |
diffstat | 3 files changed, 11 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sun Jul 06 14:19:46 2003 +0000 +++ b/ChangeLog Sun Jul 06 14:24:52 2003 +0000 @@ -1,3 +1,8 @@ +2003-7-6 Brian Masney <masneyb@gftp.org> + * lib/configure.in - check for getdtablesize() + + * TODO - updated + 2003-7-6 Brian Masney <masneyb@gftp.org> * lib/protocols.c lib/sshv2.c src/gtk/dnd.c src/gtk/menu-items.c - instead of using g_strconcat to build the directory paths, use @@ -1188,7 +1193,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.107 2003/07/06 14:14:33 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.108 2003/07/06 14:24:52 masneyb Exp $ tags * debian/* - updated files from Debian maintainer
--- a/TODO Sun Jul 06 14:19:46 2003 +0000 +++ b/TODO Sun Jul 06 14:24:52 2003 +0000 @@ -4,13 +4,10 @@ *** TODO FOR 2.0.15 *** * Check for memory leaks with dmalloc -* DND - be able to resume transfers -* HTTP - keepalive * HTTP - I am getting complaints about HTTP proxy support is busted -* Profile SSHV2 transfers, they seem really slow to me * Override options on a per site basis (backend is done, I just have to make - a user interface for the text and gtk+ port) -* Fix most FIXME's in the code + a user interface for the gtk+ port) +* Finish going through my email and check GNOME's Bugzilla *** END TODO FOR 2.0.15 * I need to be able to send an event from the core library to the presentation @@ -18,6 +15,8 @@ that if an unknown certificate authority signed the certificate, the user can be prompted whether or not to accept it. Also, it would be handy to prompt the user for their password if a bad password was entered. +* DND - be able to resume transfers +* HTTP - keepalive * Support tabbed interface in GTK+ port * Parallel chdir in GTK+ port * GTK 2.0 port - make 2 buttons in toolbar be the same size as the gnome 2
--- a/configure.in Sun Jul 06 14:19:46 2003 +0000 +++ b/configure.in Sun Jul 06 14:24:52 2003 +0000 @@ -65,7 +65,7 @@ AC_TYPE_SIGNAL AC_FUNC_STRFTIME AC_FUNC_UTIME_NULL -AC_CHECK_FUNCS(gai_strerror getaddrinfo getcwd gettimeofday getwd mkdir mktime putenv rmdir select socket strdup strstr strtod strtol uname grantpt openpty) +AC_CHECK_FUNCS(gai_strerror getaddrinfo getcwd gettimeofday getwd mkdir mktime putenv rmdir select socket strdup strstr strtod strtol uname grantpt openpty getdtablesize) if test "x$enable_gtk20" = "xyes" ; then PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.0.0, found_glib20=1, found_glib20=0)