diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-06-15 19:09:40 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-06-15 19:09:40 +0200 |
commit | 935817e985d15ce0d4f339ee7006ee891df11489 (patch) | |
tree | 0caaace72efcf645161c694ea2b1a190e56f9d6d /cmake | |
parent | 68a6705ed1dc7a0ff5c86910e23989f97788e741 (diff) | |
download | mariadb-git-935817e985d15ce0d4f339ee7006ee891df11489.tar.gz |
Fix to compile without partitioning.
Remove few ifdef's
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/plugin.cmake | 3 |
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) |