diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-21 14:28:40 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-22 15:14:12 +0200 |
commit | 3d64031fa7a80ac4ae3fd09a5939196268b92f81 (patch) | |
tree | cf6006f0a3ed771c382e53016978241be02506d0 /lib/version.c | |
parent | 5a654a0a6990211ee63c55d6a5e0333ad087f133 (diff) | |
download | curl-3d64031fa7a80ac4ae3fd09a5939196268b92f81.tar.gz |
symbian: drop support
The OS is deprecated. I see no traces of anyone having actually built
curl for Symbian after 2012.
The public headers are unmodified.
Closes #5989
Diffstat (limited to 'lib/version.c')
-rw-r--r-- | lib/version.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/version.c b/lib/version.c index 0d68b2c4a..1214efa58 100644 --- a/lib/version.c +++ b/lib/version.c @@ -31,8 +31,8 @@ #include "curl_printf.h" #ifdef USE_ARES -# if defined(CURL_STATICLIB) && !defined(CARES_STATICLIB) && \ - (defined(WIN32) || defined(__SYMBIAN32__)) +# if defined(CURL_STATICLIB) && !defined(CARES_STATICLIB) && \ + defined(WIN32) # define CARES_STATICLIB # endif # include <ares.h> @@ -56,10 +56,6 @@ #ifdef HAVE_ZLIB_H #include <zlib.h> -#ifdef __SYMBIAN32__ -/* zlib pollutes the namespace with this definition */ -#undef WIN32 -#endif #endif #ifdef HAVE_BROTLI |