pollfd struct and WSA_poll fixes for Windows Vista already present in CVS

This commit is contained in:
Yang Tse 2007-12-18 10:36:32 +00:00
Родитель bcd7d03b3b
Коммит f4ffa85f60
3 изменённых файлов: 10 добавлений и 13 удалений

11
CHANGES
Просмотреть файл

@ -8,9 +8,9 @@
Daniel S (17 Dec 2007) Daniel S (17 Dec 2007)
- Mateusz Loskot pointed out that VC++ 9.0 (2008) has the pollfd struct and - Mateusz Loskot pointed out that MSVC 9.0 (VS2008) has the pollfd struct and
defines in the SDK somehow differently so we have to add a define to the defines in winsock2.h somehow differently than previous versions and that
config-win32.h file to make select.h compile nicely. curl 7.17.1 would fail to compile out of the box.
Daniel S (13 Dec 2007) Daniel S (13 Dec 2007)
- David Wright filed bug report #1849764 - David Wright filed bug report #1849764
@ -168,6 +168,11 @@ Daniel S (12 Nov 2007)
make sure that there's never any chance for a NULL pointer in that struct make sure that there's never any chance for a NULL pointer in that struct
member. member.
Yang Tse (10 Nov 2007)
- Vikram Saxena (http://curl.haxx.se/mail/lib-2007-11/0096.html) pointed out
that the pollfd struct was being multi defined when using VS2008. This is
now fixed in /curl/lib/select.h
Daniel S (8 Nov 2007) Daniel S (8 Nov 2007)
- Bug report #1823487 (http://curl.haxx.se/bug/view.cgi?id=1823487) pointed - Bug report #1823487 (http://curl.haxx.se/bug/view.cgi?id=1823487) pointed
out that SFTP requests didn't use persistent connections. Neither did SCP out that SFTP requests didn't use persistent connections. Neither did SCP

Просмотреть файл

@ -36,7 +36,7 @@ This release includes the following bugfixes:
o SSL session id caching o SSL session id caching
o POST with callback over proxy requiring NTLM or Digest o POST with callback over proxy requiring NTLM or Digest
o Expect: 100-continue flaw on re-used connection with POSTs o Expect: 100-continue flaw on re-used connection with POSTs
o build fix for VC++ 9.0 (2008) o build fix for MSVC 9.0 (VS2008)
This release includes the following known bugs: This release includes the following known bugs:
@ -57,6 +57,6 @@ advice from friends like these:
Dan Fandrich, Gisle Vanem, Toby Peterson, Yang Tse, Daniel Black, Dan Fandrich, Gisle Vanem, Toby Peterson, Yang Tse, Daniel Black,
Robin Johnson, Michal Marek, Ates Goral, Andres Garcia, Rob Crittenden, Robin Johnson, Michal Marek, Ates Goral, Andres Garcia, Rob Crittenden,
Emil Romanus, Alessandro Vesely, Ray Pekowski, Spacen Jasset, Andrew Moise, Emil Romanus, Alessandro Vesely, Ray Pekowski, Spacen Jasset, Andrew Moise,
Gilles Blanc, David Wright, Mateusz Loskot Gilles Blanc, David Wright, Vikram Saxena, Mateusz Loskot
Thanks! (and sorry if I forgot to mention someone) Thanks! (and sorry if I forgot to mention someone)

Просмотреть файл

@ -353,14 +353,6 @@
#define _CRT_NONSTDC_NO_DEPRECATE 1 #define _CRT_NONSTDC_NO_DEPRECATE 1
#endif #endif
/* Define to make select.h work fine on VC++ 9.0 (2008) */
#if defined(_MSC_VER) && (_MSC_VER >= 1500)
/* The poll struct and associated defines are present in the Windows SDK v6.0
that comes with this version... */
#define HAVE_STRUCT_POLLFD 1
#endif
/* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */
/* LDAP SUPPORT */ /* LDAP SUPPORT */
/* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */