From: Jeremy C. Reed Date: Wed, 14 Nov 2012 13:33:55 +0000 (-0600) Subject: [master] check for mysql.h not mysql/mysql.h X-Git-Tag: trac2487_base~1^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d654be880d463a899d2f6d68e0193c3ecac00500;p=thirdparty%2Fkea.git [master] check for mysql.h not mysql/mysql.h since mysql directory may already be provided by mysql_config output and anyways mysql.h is used by the code. --- diff --git a/configure.ac b/configure.ac index f432499601..95f95c6d0b 100644 --- a/configure.ac +++ b/configure.ac @@ -767,7 +767,7 @@ if test "$MYSQL_CONFIG" != "" ; then LIBS="$MYSQL_LIBS $LIBS" AC_LINK_IFELSE( - [AC_LANG_PROGRAM([#include ], + [AC_LANG_PROGRAM([#include ], [MYSQL mysql_handle; (void) mysql_init(&mysql_handle); ])],