summaryrefslogtreecommitdiff
path: root/lib/version.c
diff options
context:
space:
mode:
authorPatrick Monnerat <patrick@monnerat.net>2017-11-13 14:20:41 +0100
committerPatrick Monnerat <patrick@monnerat.net>2017-11-13 14:20:41 +0100
commitdef2ca2628fff1973f558e45dd8fe84ca00b54d5 (patch)
tree27f3b60c71af818b72d2b5deb46cc2c5fae56284 /lib/version.c
parentfa1512b2a01fd5feb921c20412f4b7526ac70de6 (diff)
downloadcurl-def2ca2628fff1973f558e45dd8fe84ca00b54d5.tar.gz
zlib/brotli: only include header files in modules needing them
There is a conflict on symbol 'free_func' between openssl/crypto.h and zlib.h on AIX. This is an attempt to resolve it. Bug: https://curl.haxx.se/mail/lib-2017-11/0032.html Reported-By: Michael Felt
Diffstat (limited to 'lib/version.c')
-rw-r--r--lib/version.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/version.c b/lib/version.c
index 66c761e34..79cc0bba4 100644
--- a/lib/version.c
+++ b/lib/version.c
@@ -64,6 +64,18 @@
#define CURL_LIBSSH2_VERSION LIBSSH2_VERSION
#endif
+#ifdef HAVE_ZLIB_H
+#include <zlib.h>
+#ifdef __SYMBIAN32__
+/* zlib pollutes the namespace with this definition */
+#undef WIN32
+#endif
+#endif
+
+#ifdef HAVE_BROTLI
+#include <brotli/decode.h>
+#endif
+
void Curl_version_init(void);
/* For thread safety purposes this function is called by global_init so that