summaryrefslogtreecommitdiff
path: root/distsrc
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@10gen.com>2013-03-28 15:22:26 -0400
committerAndy Schwerin <schwerin@10gen.com>2013-05-01 13:05:23 -0400
commit08e4b8cebaa96c023830e5460925f549c13804af (patch)
tree21b4a2c3909e269fafa5f7aa7544de5282b7b40f /distsrc
parentc6a32dc49c05a78ea322ef13ebb90443bbdb44f1 (diff)
downloadmongo-08e4b8cebaa96c023830e5460925f549c13804af.tar.gz
SERVER-8813 Switch C++ client and shell code for SASL authentication to use the Cyrus SASL library.
Replaces gsasl implementation in clients. Rolls up the following patches on the master branch: 2d8e9831979076e5f6a47895aedad80c8da10d4c 8324f6c8872f83404d811a69df91bf4df9ad2a62 16aba22e19a11749db4cf0e3f8075a9b4dbc4295 f58d431f45a0db9812e67641f429c692c3207201 89ca7f9d6f134e09241837edeb9b456d80f2abc9
Diffstat (limited to 'distsrc')
-rwxr-xr-xdistsrc/client/SConstruct2
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()