summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2017-08-01 02:56:48 -0400
committerJay Satiro <raysatiro@yahoo.com>2017-08-01 02:56:48 -0400
commit53d137d94ac355bd3fa1717141e688d3534f21f7 (patch)
tree88a21ed305f42e80581c479185ea0420096ba87c
parentf262b3586cb40f6fdb265188456cfb0ff4e4ed2a (diff)
downloadgnurl-53d137d94ac355bd3fa1717141e688d3534f21f7.tar.gz
gnurl-53d137d94ac355bd3fa1717141e688d3534f21f7.tar.bz2
gnurl-53d137d94ac355bd3fa1717141e688d3534f21f7.zip
curl_setup: Define CURL_NO_OLDIES for building libcurl
.. to catch accidental use of deprecated error codes. Ref: https://github.com/curl/curl/issues/1688#issuecomment-316764237
-rw-r--r--lib/curl_setup.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/curl_setup.h b/lib/curl_setup.h
index fc597d75d..4a3b85c45 100644
--- a/lib/curl_setup.h
+++ b/lib/curl_setup.h
@@ -22,6 +22,10 @@
*
***************************************************************************/
+#if defined(BUILDING_LIBCURL) && !defined(CURL_NO_OLDIES)
+#define CURL_NO_OLDIES
+#endif
+
/*
* Define WIN32 when build target is Win32 API
*/