url: don't compile detect_proxy if HTTP support is disabled

This commit is contained in:
Dan Fandrich 2017-03-11 18:01:54 +01:00
parent 03c5223ee7
commit 381aff0385
1 changed files with 2 additions and 0 deletions

View File

@ -4893,6 +4893,7 @@ static bool check_noproxy(const char *name, const char *no_proxy)
return FALSE; return FALSE;
} }
#ifndef CURL_DISABLE_HTTP
/**************************************************************** /****************************************************************
* Detect what (if any) proxy to use. Remember that this selects a host * Detect what (if any) proxy to use. Remember that this selects a host
* name and is not limited to HTTP proxies only. * name and is not limited to HTTP proxies only.
@ -4962,6 +4963,7 @@ static char *detect_proxy(struct connectdata *conn)
return proxy; return proxy;
} }
#endif /* CURL_DISABLE_HTTP */
/* /*
* If this is supposed to use a proxy, we need to figure out the proxy * If this is supposed to use a proxy, we need to figure out the proxy