aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac12
1 files changed, 5 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 1472877d1..3e7b42a12 100644
--- a/configure.ac
+++ b/configure.ac
@@ -940,14 +940,12 @@ mysql_bool="bool"
940AS_IF([test "x$mysql" = "xtrue"], 940AS_IF([test "x$mysql" = "xtrue"],
941 [AC_MSG_CHECKING([for my_bool]) 941 [AC_MSG_CHECKING([for my_bool])
942 AC_COMPILE_IFELSE([AC_LANG_PROGRAM( 942 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
943 [[#include <mysql/mysql.h>]], 943 [[#include <mysql/mysql.h>]
944 [[#ifndef my_bool 944 [typedef int my_bool;]])], # Hint: this fails if my_bool is defined already
945#no my_bool found
946#endif]])],
947 [AC_MSG_RESULT([yes])
948 mysql_bool="my_bool"],
949 [AC_MSG_RESULT([no]) 945 [AC_MSG_RESULT([no])
950 mysql_bool="bool"])]) 946 mysql_bool="bool"],
947 [AC_MSG_RESULT([yes])
948 mysql_bool="my_bool"])])
951 949
952AC_SUBST([mysql_bool]) 950AC_SUBST([mysql_bool])
953 951