BIND 10 master, updated. d654be880d463a899d2f6d68e0193c3ecac00500 [master] check for mysql.h not mysql/mysql.h
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Nov 14 13:34:53 UTC 2012
The branch, master has been updated
via d654be880d463a899d2f6d68e0193c3ecac00500 (commit)
from 36378804a28850cb882bbc087c819fcabb5ada16 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d654be880d463a899d2f6d68e0193c3ecac00500
Author: Jeremy C. Reed <jreed at isc.org>
Date: Wed Nov 14 07:33:55 2012 -0600
[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.
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index f432499..95f95c6 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 <mysql/mysql.h>],
+ [AC_LANG_PROGRAM([#include <mysql.h>],
[MYSQL mysql_handle;
(void) mysql_init(&mysql_handle);
])],
More information about the bind10-changes
mailing list