Prepare additional wxWebRequest backends

This commit is contained in:
Tobias Taschner
2018-10-25 13:08:51 +02:00
parent 6db3f5f115
commit 5f3dc058aa
32 changed files with 710 additions and 18 deletions

View File

@@ -299,7 +299,31 @@
#define wxUSE_MIMETYPE 0
#if defined(_MSC_VER) || \
(defined(__MINGW32__) && (__GNUC__ > 4 || __GNUC_MINOR__ >= 8))
#define wxUSE_WEBREQUEST_WINHTTP 0
#else
#define wxUSE_WEBREQUEST_WINHTTP 0
#endif
#if defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_9) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
#define wxUSE_WEBREQUEST_URLSESSION 0
#else
#define wxUSE_WEBREQUEST_URLSESSION 0
#endif
#if defined(__WINDOWS__) || defined(__APPLE__)
#define wxUSE_WEBREQUEST_CURL 0
#else
#define wxUSE_WEBREQUEST_CURL 0
#endif
#if wxUSE_WEBREQUEST_WINHTTP || wxUSE_WEBREQUEST_URLSESSION || wxUSE_WEBREQUEST_CURL
#define wxUSE_WEBREQUEST 0
#else
#define wxUSE_WEBREQUEST 0
#endif
#define wxUSE_PROTOCOL 0