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 aab92e1 commit 88bdd78Copy full SHA for 88bdd78
scripts/build/autotools/CheckSasl.m4
@@ -64,6 +64,11 @@ AS_IF([test "$PHP_MONGODB_SASL" = "auto"],[
64
PHP_MONGODB_SASL="no"
65
])
66
67
+dnl Warn for unsupported values (e.g. Cyrus SASL search path)
68
+if test ! \( "$PHP_MONGODB_SASL" = "cyrus" -o "$PHP_MONGODB_SASL" = "gssapi" -o "$PHP_MONGODB_SASL" = "no" \); then
69
+ AC_MSG_WARN([unsupported --with-mongodb-sasl value: $PHP_MONGODB_SASL])
70
+fi
71
+
72
AC_MSG_CHECKING([which SASL library to use])
73
AC_MSG_RESULT([$PHP_MONGODB_SASL])
74
0 commit comments