summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2013-06-15 19:09:40 +0200
committerSergei Golubchik <sergii@pisem.net>2013-06-15 19:09:40 +0200
commit935817e985d15ce0d4f339ee7006ee891df11489 (patch)
tree0caaace72efcf645161c694ea2b1a190e56f9d6d /cmake
parent68a6705ed1dc7a0ff5c86910e23989f97788e741 (diff)
downloadmariadb-git-935817e985d15ce0d4f339ee7006ee891df11489.tar.gz
Fix to compile without partitioning.
Remove few ifdef's
Diffstat (limited to 'cmake')
-rw-r--r--cmake/plugin.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/plugin.cmake b/cmake/plugin.cmake
index 2f1ebc8f428..cc8788b22bc 100644
--- a/cmake/plugin.cmake
+++ b/cmake/plugin.cmake
@@ -90,7 +90,8 @@ MACRO(MYSQL_ADD_PLUGIN)
AND NOT ARG_MODULE_ONLY)
SET(WITH_${plugin} 1)
- ELSEIF(WITHOUT_${plugin}_STORAGE_ENGINE OR WITH_NONE OR ${plugin}_DISABLED)
+ ELSEIF(WITHOUT_${plugin} OR WITHOUT_${plugin}_STORAGE_ENGINE OR
+ WITH_NONE OR ${plugin}_DISABLED)
SET(WITHOUT_${plugin} 1)
SET(WITH_${plugin}_STORAGE_ENGINE 0)
SET(WITH_${plugin} 0)