Skip to content

Commit 209ab06

Browse files
JorgenEvensjmikola
authored andcommitted
PHPC-514: Fix --with-mongodb-sasl flag
Previously the directory specified using --with-mongodb-sasl=DIR was ignored.
1 parent 7dad72f commit 209ab06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ PHP_ARG_WITH(mongodb-sasl, Build with Cyrus SASL support,
391391

392392
if test "$PHP_MONGODB_SASL" != "no"; then
393393
AC_MSG_CHECKING(for SASL)
394-
for i in $MONGODB_SASL /usr /usr/local; do
394+
for i in $PHP_MONGODB_SASL /usr /usr/local; do
395395
if test -f $i/include/sasl/sasl.h; then
396396
MONGODB_SASL_DIR=$i
397397
AC_MSG_RESULT(found in $i)

0 commit comments

Comments
 (0)