Skip to content

Commit d22cbad

Browse files
committed
Fix logic here - the error message was bogus when it couldn't find the
imap lib
1 parent ce6faf0 commit d22cbad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/imap/config.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ AC_ARG_WITH(imap,
1313
withval=/usr
1414
fi
1515
fi
16-
if test "$withval" != "no"; then
16+
if test "$withval" != "no" && test "$withval" != "yes"; then
1717
IMAP_DIR=$withval
1818
if test -f $IMAP_DIR/include/imap/mail.h; then
1919
IMAP_INC_DIR=$IMAP_DIR/include/imap

0 commit comments

Comments
 (0)
close