diff options
author | Sara Golemon <sara.golemon@mongodb.com> | 2018-07-25 19:15:41 +0000 |
---|---|---|
committer | Sara Golemon <sara.golemon@mongodb.com> | 2018-07-30 19:04:42 +0000 |
commit | b0bb4da6f7f04ab7ec407f7bdbc571e5e6ec3185 (patch) | |
tree | 68d937aceeae5e169f7369fa9e6f6bf5f58c7875 /SConstruct | |
parent | 0dc542ad4b37f5bbffd1422374e30984b98e2de3 (diff) | |
download | mongo-b0bb4da6f7f04ab7ec407f7bdbc571e5e6ec3185.tar.gz |
SERVER-36324 Refactor HTTPClient to allow sync and async
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 1682cc6031f..0df17d11778 100644 --- a/SConstruct +++ b/SConstruct @@ -3079,7 +3079,7 @@ def doConfigure(myenv): print("Disabling http-client as libcurl was not found") http_client = "off" elif http_client == "on": - checkLibCurl(required=True) + checkHTTPLib(required=True) # Sanity check. # We know that http_client was explicitly disabled here, |