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 /distsrc | |
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 'distsrc')
-rwxr-xr-x | distsrc/client/SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distsrc/client/SConstruct b/distsrc/client/SConstruct index 0bf69a59e79..e9fac9305aa 100755 --- a/distsrc/client/SConstruct +++ b/distsrc/client/SConstruct @@ -75,7 +75,7 @@ for lib in boostLibs: Exit(1) env['MONGO_BUILD_SASL_CLIENT'] = 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) conf.Finish() |