- Bug #1862727 fixed libssh2_poll() to work on windows (by defining HAVE_SELECT).

This commit is contained in:
Daniel Stenberg 2008-09-29 14:16:19 +00:00
parent 61fda23340
commit 818e9edfb1
3 changed files with 4 additions and 1 deletions

2
NEWS
View File

@ -1,6 +1,8 @@
Version 0.19 ( )
-------------------------------
- Bug #1862727 fixed libssh2_poll() to work on windows (by defining HAVE_SELECT).
- Based on bug #1815692, we introduce libssh2_sftp_seek2() that allows seeking
beyond the 2GB margin even on 32bit machines.

View File

@ -56,7 +56,7 @@
#ifdef HAVE_POLL
# include <sys/poll.h>
#else
# ifdef HAVE_SELECT
# if defined(HAVE_SELECT) && !defined(WIN32)
# ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
# else

View File

@ -16,6 +16,7 @@
#define HAVE_WINSOCK2_H
#define HAVE_IOCTLSOCKET
#define HAVE_SELECT
/* same as WSABUF */
struct iovec {