From: Timo Sirainen Date: Fri, 23 Jul 2004 19:07:57 +0000 (+0300) Subject: If MySQL header checks failed, configure still passed. X-Git-Tag: 1.1.alpha1~3746 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35a8943d337dbaa79d89560b45b3dae8fde3aeab;p=thirdparty%2Fdovecot%2Fcore.git If MySQL header checks failed, configure still passed. --HG-- branch : HEAD --- diff --git a/configure.in b/configure.in index f9d795b4b1..eb5207cfb2 100644 --- a/configure.in +++ b/configure.in @@ -1130,9 +1130,9 @@ if test $want_mysql = yes; then AC_CHECK_HEADER(mysql.h,, [ AC_CHECK_HEADER(mysql/mysql.h, [ AUTH_CFLAGS="$AUTH_CFLAGS -DHAVE_MYSQL_MYSQL_H" - ], want_mysql = no) + ], want_mysql=no) ]) - ], want_mysql = no) + ], want_mysql=no) if test $want_mysql = yes; then AUTH_LIBS="$AUTH_LIBS -lmysqlclient"