From 35a8943d337dbaa79d89560b45b3dae8fde3aeab Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 23 Jul 2004 22:07:57 +0300 Subject: [PATCH] If MySQL header checks failed, configure still passed. --HG-- branch : HEAD --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 2.47.3