From 4d1971d66b6d901927bb2503d376f07b7765a4ac Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Tue, 21 Sep 2021 21:05:08 +0300 Subject: [PATCH] Disable the option by default. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f0f99bfc..906c997d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ option(ENABLE_DISCORD "Enable built-in Discord support" ON) option(ENABLE_DISCORD_VOICE "Enable voice support in Discord library" OFF) option(ENABLE_OFFICIAL "Enable compatibility with official legacy plug-in" ON) # As a fall-back for certain situations (mainly some docker ubuntu containers) -option(ENABLE_BUILTIN_MYSQL_C "Enable built-in MySQL connector library" ON) +option(ENABLE_BUILTIN_MYSQL_C "Enable built-in MySQL connector library" OFF) #option(FORCE_32BIT_BIN "Create a 32-bit executable binary if the compiler defaults to 64-bit." OFF) # This option should only be available in certain conditions if(WIN32 AND MINGW)