summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorVicențiu Ciorbaru <vicentiu@mariadb.org>2018-01-22 23:51:32 +0200
committerVicențiu Ciorbaru <vicentiu@mariadb.org>2018-01-23 00:03:41 +0200
commita04b07eb342fa00f952e8fd60216ea781bc7c5d7 (patch)
treee87e3c994e9aa9516c9764f6227cbe8c0f9447c8 /storage
parent8539e4b1b609f8060677fcb3e27b6b6224d582d6 (diff)
downloadmariadb-git-a04b07eb342fa00f952e8fd60216ea781bc7c5d7.tar.gz
Fix TokuDB Not building
We don't check for DLSYM in CMake, check for DLOPEN instead.
Diffstat (limited to 'storage')
-rw-r--r--storage/tokudb/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/tokudb/CMakeLists.txt b/storage/tokudb/CMakeLists.txt
index 1e48260b618..903471b097c 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" AND HAVE_DLSYM)
+ NOT CMAKE_VERSION VERSION_LESS "2.8.9" AND HAVE_DLOPEN)
CHECK_CXX_SOURCE_COMPILES(
"
struct a {int b; int c; };