From 91140b2ebc6bbbbce7e0944a7144fcb36311f9bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 15 Nov 2014 15:58:57 +0100 Subject: [PATCH] core: add constant for libcurl >= 7.38.0 --- src/core/wee-url.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/core/wee-url.c b/src/core/wee-url.c index 7a3be8e80..6ef16b174 100644 --- a/src/core/wee-url.c +++ b/src/core/wee-url.c @@ -46,7 +46,7 @@ char *url_type_string[] = { "string", "long", "long long", "mask" }; /* - * Constants/options for Curl 7.37.0 + * Constants/options for Curl 7.38.0 * (this list of options must be updated on every new Curl release) */ @@ -136,6 +136,9 @@ struct t_url_constant url_auth[] = #endif #if LIBCURL_VERSION_NUM >= 0x071600 /* 7.22.0 */ URL_DEF_CONST(AUTH, NTLM_WB), +#endif +#if LIBCURL_VERSION_NUM >= 0x072600 /* 7.38.0 */ + URL_DEF_CONST(AUTH, NEGOTIATE), #endif { NULL, 0 }, };