31 lines
740 B
Diff
31 lines
740 B
Diff
From 9859479884fad5f39e6c37e8995e57c28b11b1b9 Mon Sep 17 00:00:00 2001
|
|
From: Andrea Zagli <azagli@libero.it>
|
|
Date: Fri, 25 Dec 2020 10:21:46 +0100
|
|
Subject: [PATCH] MySQL: bool is here again.
|
|
|
|
---
|
|
m4/mysql.m4 | 7 ++++++-
|
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/m4/mysql.m4 b/m4/mysql.m4
|
|
index 79d4d173f..535a081a9 100644
|
|
--- a/m4/mysql.m4
|
|
+++ b/m4/mysql.m4
|
|
@@ -217,7 +217,12 @@ dnl Try detect API version
|
|
AC_MSG_CHECKING([checking for Mysql 8 API version])
|
|
AX_COMPARE_VERSION($mysql_version, [ge], [8.0.0],
|
|
[
|
|
- mysql8=yes
|
|
+ AX_COMPARE_VERSION($mysql_version, [ge], [10.0.0],
|
|
+ [
|
|
+ mysql8=no
|
|
+ ],[
|
|
+ mysql8=yes
|
|
+ ])
|
|
],[
|
|
mysql8=no
|
|
])
|
|
--
|
|
GitLab
|
|
|