summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2017-03-11 18:01:54 +0100
committerDan Fandrich <dan@coneharvesters.com>2017-03-11 18:02:34 +0100
commit381aff03857544b05c34f3f095089cd170023978 (patch)
treefa004efa2be07a46280380d6e841484b523058e0
parent03c5223ee7fa8dcdb5c54ea58c1fb2cca67f35e6 (diff)
downloadcurl-381aff03857544b05c34f3f095089cd170023978.tar.gz
url: don't compile detect_proxy if HTTP support is disabled
-rw-r--r--lib/url.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/url.c b/lib/url.c
index 5943896eb..f9c324269 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -4893,6 +4893,7 @@ static bool check_noproxy(const char *name, const char *no_proxy)
return FALSE;
}
+#ifndef CURL_DISABLE_HTTP
/****************************************************************
* Detect what (if any) proxy to use. Remember that this selects a host
* name and is not limited to HTTP proxies only.
@@ -4962,6 +4963,7 @@ static char *detect_proxy(struct connectdata *conn)
return proxy;
}
+#endif /* CURL_DISABLE_HTTP */
/*
* If this is supposed to use a proxy, we need to figure out the proxy