diff options
-rw-r--r-- | libcsoap/soap-nudp.c | 4 | ||||
-rw-r--r-- | nanohttp/nanohttp-common.c | 4 | ||||
-rw-r--r-- | nanohttp/nanohttp-socket.h | 4 | ||||
-rw-r--r-- | nanohttp/nanohttp-url.c | 4 |
4 files changed, 16 insertions, 0 deletions
diff --git a/libcsoap/soap-nudp.c b/libcsoap/soap-nudp.c index 2e5ab83..8a2706c 100644 --- a/libcsoap/soap-nudp.c +++ b/libcsoap/soap-nudp.c @@ -72,6 +72,10 @@ #include <libxml/tree.h> #include <libxml/uri.h> +#ifdef WIN32 +#include <ws2tcpip.h> +#endif + #include <nanohttp/nanohttp-error.h> #include "soap-logging.h" diff --git a/nanohttp/nanohttp-common.c b/nanohttp/nanohttp-common.c index d19554b..18b206b 100644 --- a/nanohttp/nanohttp-common.c +++ b/nanohttp/nanohttp-common.c @@ -58,6 +58,10 @@ #include "nanohttp-error.h" #include "nanohttp-common.h" +#ifdef WIN32 +#include <time.h> +#endif + hpair_t * hpairnode_new(const char *key, const char *value, hpair_t * next) { diff --git a/nanohttp/nanohttp-socket.h b/nanohttp/nanohttp-socket.h index c4f2188..e98f719 100644 --- a/nanohttp/nanohttp-socket.h +++ b/nanohttp/nanohttp-socket.h @@ -24,6 +24,10 @@ #ifndef __nanohttp_socket_h #define __nanohttp_socket_h +#ifdef WIN32 +#include <winsock2.h> +#endif + /** @file nanohttp-socket.h Socket wrapper * * @defgroup NANOHTTP_SOCKET Socket wrapper diff --git a/nanohttp/nanohttp-url.c b/nanohttp/nanohttp-url.c index 8ba1619..a73e3f1 100644 --- a/nanohttp/nanohttp-url.c +++ b/nanohttp/nanohttp-url.c @@ -50,6 +50,10 @@ #include <netdb.h> #endif +#ifdef WIN32 +#include <winsock2.h> +#endif + #include "nanohttp-logging.h" #include "nanohttp-error.h" #include "nanohttp-url.h" |