We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b2865 commit 50cc6d8Copy full SHA for 50cc6d8
src/libmongoc/CMakeLists.txt
@@ -203,6 +203,12 @@ set (MONGOC_ENABLE_SASL_GSSAPI 0)
203
set (MONGOC_ENABLE_SASL_SSPI 0)
204
set (MONGOC_HAVE_SASL_CLIENT_DONE 0)
205
206
+# After CDRIVER-2654, the GSSAPI option will be entirely removed.
207
+if (ENABLE_SASL STREQUAL "GSSAPI")
208
+ message (WARNING "ENABLE_SASL=GSSAPI is not supported. Using CYRUS instead.")
209
+ set (ENABLE_SASL "CYRUS")
210
+endif()
211
+
212
if (NOT ENABLE_SASL STREQUAL OFF)
213
if (ENABLE_SASL MATCHES "AUTO|CYRUS")
214
# Sets SASL_LIBRARIES.
0 commit comments