From 12c00e9149b36b13f7e941640083a60e9460ede3 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Mon, 6 Jul 2020 16:12:33 +0200 Subject: [PATCH] chore(CMake)!: Drop support for MariaDB 10.1 BREAKING CHANGE: Building with MariaDB 10.1 will no longer be supported since we use code that exceeds its limits --- src/cmake/macros/FindMySQL.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmake/macros/FindMySQL.cmake b/src/cmake/macros/FindMySQL.cmake index dc0880195..98a22f234 100644 --- a/src/cmake/macros/FindMySQL.cmake +++ b/src/cmake/macros/FindMySQL.cmake @@ -28,7 +28,7 @@ endif(WIN32) # Find MariaDB for Windows if (WIN32) # Set know versions MariaDB - set(_MARIADB_KNOWN_VERSIONS "MariaDB 10.4" "MariaDB 10.3" "MariaDB 10.2" "MariaDB 10.1") + set(_MARIADB_KNOWN_VERSIONS "MariaDB 10.4" "MariaDB 10.3" "MariaDB 10.2") # Set default oprions set(MARIADB_FOUND_LIB 0)