diff options
author | Andy Schwerin <schwerin@10gen.com> | 2013-03-28 15:22:26 -0400 |
---|---|---|
committer | Andy Schwerin <schwerin@10gen.com> | 2013-04-22 13:02:47 -0400 |
commit | 2d8e9831979076e5f6a47895aedad80c8da10d4c (patch) | |
tree | ab35ee725cb594b5685a544429a48bc9bfd034cc /SConstruct | |
parent | 506e7c0adffc8708fb15bab929fa83d016e96eec (diff) | |
download | mongo-2d8e9831979076e5f6a47895aedad80c8da10d4c.tar.gz |
SERVER-8813 Switch C++ client and shell code for SASL authentication to use the Cyrus SASL library.
Replaces gsasl implementation in clients.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 50df9281479..3f2634d120b 100644 --- a/SConstruct +++ b/SConstruct @@ -1132,7 +1132,7 @@ def doConfigure(myenv): conf.env['MONGO_BUILD_SASL_CLIENT'] = bool(has_option("use-sasl-client")) if conf.env['MONGO_BUILD_SASL_CLIENT'] and not conf.CheckLibWithHeader( - "gsasl", "gsasl.h", "C", "gsasl_check_version(GSASL_VERSION);", autoadd=False): + "sasl2", "sasl/sasl.h", "C", "sasl_version_info(0, 0, 0, 0, 0, 0);", autoadd=False): Exit(1) |