diff options
author | Aleksey Midenkov <midenok@gmail.com> | 2016-09-16 16:55:58 +0000 |
---|---|---|
committer | Aleksey Midenkov <midenok@gmail.com> | 2017-05-05 20:36:06 +0300 |
commit | 8f5f4c2160f40fae180c51d7c8f2e3c358fdfb59 (patch) | |
tree | 731de192fcb78a47f740521b58d166678bfa4193 /CMakeLists.txt | |
parent | be6f2d302cd71677e1fafbeea9347c196f21e1bd (diff) | |
download | mariadb-git-8f5f4c2160f40fae180c51d7c8f2e3c358fdfb59.tar.gz |
Scripts: WITH_INNOBASE_STORAGE_ENGINE fix
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c4e0037588..29f672428a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -363,6 +363,15 @@ IF(WITH_UNIT_TESTS) ENDIF() ENDIF() +IF(WITH_INNOBASE_STORAGE_ENGINE) + SET(WITH_XTRADB_STORAGE_ENGINE OFF) + IF(PLUGIN_XTRADB STREQUAL STATIC) + SET(PLUGIN_XTRADB DYNAMIC) + ENDIF() +ELSE() + SET(WITH_XTRADB_STORAGE_ENGINE ON) +ENDIF() + SET (MYSQLD_STATIC_PLUGIN_LIBS "" CACHE INTERNAL "") # mariadb_connector_c fetches submodules which is useful for plugins |