diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-01-20 11:45:23 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-01-22 11:39:54 +0100 |
commit | 204cb85aab3e6326e9f7a51c478efd6fad44801a (patch) | |
tree | b11ca13de8214fa3274d66e363a69055b6a5ef50 /storage | |
parent | 906ce0962d12731eafed6f5ad64c5d50aeac8ce4 (diff) | |
download | mariadb-git-204cb85aab3e6326e9f7a51c478efd6fad44801a.tar.gz |
Fix compilation without dlopen
Diffstat (limited to 'storage')
-rw-r--r-- | storage/tokudb/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/tokudb/CMakeLists.txt b/storage/tokudb/CMakeLists.txt index ab6bb0a8504..1e48260b618 100644 --- a/storage/tokudb/CMakeLists.txt +++ b/storage/tokudb/CMakeLists.txt @@ -1,6 +1,6 @@ # ft-index only supports x86-64 and cmake-2.8.9+ IF(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND - NOT CMAKE_VERSION VERSION_LESS "2.8.9") + NOT CMAKE_VERSION VERSION_LESS "2.8.9" AND HAVE_DLSYM) CHECK_CXX_SOURCE_COMPILES( " struct a {int b; int c; }; |