Ticket #6175: patch_to_poco_library1_4_1

File patch_to_poco_library1_4_1, 1.0 KB (added by Gesner Passos, 8 years ago)

Patch to solve issue related to Mac and Script Repository.

Line 
14c4
2< // $Id: //poco/1.4/Net/include/Poco/Net/SocketDefs.h#5 $
3---
4> // $Id: //poco/1.4/Net/include/Poco/Net/SocketDefs.h#2 $
550d49
6< #define poco_ioctl_request_t int
7104d102
8< #define poco_ioctl_request_t int
9173,177d170
10< #if defined(POCO_OS_FAMILY_BSD)
11< #define poco_ioctl_request_t unsigned long
12< #else
13< #define poco_ioctl_request_t int
14< #endif
15239,243d231
16< #if POCO_OS != POCO_OS_VXWORKS
17< #define POCO_HAVE_ADDRINFO   1
18< #endif
19<
20<
21249,255d236
22< #if defined(POCO_HAVE_ADDRINFO)
23< #if !defined(AI_ADDRCONFIG)
24< #define AI_ADDRCONFIG 0
25< #endif
26< #endif
27<
28<
29352c352
30<       void ioctl(poco_ioctl_request_t request, int& arg);
31---
32>       void ioctl(int request, int& arg);
33355c355
34<       void ioctl(poco_ioctl_request_t request, void* arg);
35---
36>       void ioctl(int request, void* arg);
37851c851
38< void SocketImpl::ioctl(poco_ioctl_request_t request, int& arg)
39---
40> void SocketImpl::ioctl(int request, int& arg)
41864c864
42< void SocketImpl::ioctl(poco_ioctl_request_t request, void* arg)
43---
44> void SocketImpl::ioctl(int request, void* arg)