Fix TokuDB Not building

We don't check for DLSYM in CMake, check for DLOPEN instead.
This commit is contained in:
Vicențiu Ciorbaru 2018-01-22 23:51:32 +02:00
parent 8539e4b1b6
commit a04b07eb34

View file

@ -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; };