diff options
author | Bastien Nocera | 2010-06-21 15:59:21 +0100 |
---|---|---|
committer | Hector Martin | 2010-06-25 16:47:55 +0200 |
commit | 5e9c1c28c6959a814818c7f3614ef84cadccf1c8 (patch) | |
tree | 98a6b94e6245a7a7403aa711743bfc7872cc3f03 /libusbmuxd/sock_stuff.h | |
parent | 3ea39bc9c977ddbbcb168f79505e0856942a259d (diff) | |
download | usbmuxd-5e9c1c28c6959a814818c7f3614ef84cadccf1c8.tar.gz usbmuxd-5e9c1c28c6959a814818c7f3614ef84cadccf1c8.tar.bz2 |
Don't export gethostbyname() use on non-Windows
This triggers warnings in the Red Hat test suite about IPv6 support.
The easiest is to not compile that code, which will end up unused
on Linux or MacOS X anyway.
Diffstat (limited to 'libusbmuxd/sock_stuff.h')
-rw-r--r-- | libusbmuxd/sock_stuff.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libusbmuxd/sock_stuff.h b/libusbmuxd/sock_stuff.h index 5405b04..db90385 100644 --- a/libusbmuxd/sock_stuff.h +++ b/libusbmuxd/sock_stuff.h @@ -38,7 +38,9 @@ int create_unix_socket(const char *filename); int connect_unix_socket(const char *filename); #endif int create_socket(uint16_t port); +#if defined(WIN32) || defined(__CYGWIN__) int connect_socket(const char *addr, uint16_t port); +#endif int check_fd(int fd, fd_mode fdm, unsigned int timeout); int recv_buf(int fd, void *data, size_t size); |