Changeset 6bb9a6
- Timestamp:
- 05/28/09 22:13:37 (3 years ago)
- Branches:
- master
- Children:
- 9d8467
- Parents:
- fcc91c
- git-author:
- Tomash Brechko <tomash.brechko@…> (05/23/09 16:46:13)
- git-committer:
- Tomash Brechko <tomash.brechko@…> (05/28/09 22:13:37)
- Files:
-
- 7 added
- 3 edited
-
Changes (modified) (1 diff)
-
lib/Cache/Memcached/Fast.pm.orig (added)
-
src/Makefile.PL (modified) (1 diff)
-
src/addrinfo_hostent.c (added)
-
src/addrinfo_hostent.h (added)
-
src/socket_win32.h (modified) (2 diffs)
-
t/03-flush_all.t (added)
-
t/big_request.t (added)
-
t/get_multi.t (added)
-
t/segfault.t (added)
Legend:
- Unmodified
- Added
- Removed
-
Changes
r8126ae r6bb9a6 7 7 Changes since 0.14: 8 8 9 ??? 9 On systems lacking getaddrinfo() implement it with 10 gethostbyname(). In particular this should fix the build on 11 Win32 (Cygwin, Mingw32). Problem report (for Windows 2000 and 12 below) and initial patch are by Yasuhiro Matsumoto. 10 13 11 14 -
src/Makefile.PL
rf0c0ca r6bb9a6 13 13 } else { 14 14 ++$exclude{'socket_win32.c'}; 15 ++$exclude{'addrinfo_hostent.c'}; 15 16 16 17 if (-f "$includes/poll.h") { -
src/socket_win32.h
rb495a1 r6bb9a6 1 1 /* 2 Copyright (C) 2008 Tomash Brechko. All rights reserved.2 Copyright (C) 2008-2009 Tomash Brechko. All rights reserved. 3 3 4 4 When used to build Perl module: … … 25 25 #define SOCKET_WIN32_H 1 26 26 27 #ifndef _WIN32_WINNT28 #define _WIN32_WINNT 0x050129 #endif30 27 #include <winsock2.h> 31 28 #include <ws2tcpip.h> 32 29 #include <sys/types.h> 30 31 32 #if _WIN32_WINNT >= 0x0501 33 34 #include <wspiapi.h> 35 36 #else /* ! (_WIN32_WINNT >= 0x0501) */ 37 38 #include "addrinfo_hostent.h" 39 40 #endif /* ! (_WIN32_WINNT >= 0x0501) */ 41 33 42 34 43 #if _WIN32_WINNT >= 0x0600
Note: See TracChangeset
for help on using the changeset viewer.
