Include certain include files for curl on Windows

This commit is contained in:
Moritz Bunkus 2010-12-25 23:23:11 +01:00
parent 259d2dbb95
commit 0d029fdc8d
2 changed files with 5 additions and 3 deletions

View File

@ -15,11 +15,10 @@
#if defined(HAVE_CURL_EASY_H)
# include <curl/curl.h>
# include <curl/easy.h>
# include "common/curl.h"
# include <curl/easy.h>
static size_t
curl_write_data_cb(void *buffer,
size_t size,

View File

@ -18,6 +18,9 @@
# if defined(HAVE_CURL_EASY_H)
# if defined(SYS_WINDOWS)
# include <ws2tcpip.h>
# endif // defined(SYS_WINDOWS)
# include <curl/curl.h>
# include <string>