Skip to content

Commit a04b07e

Browse files
committed
Fix TokuDB Not building
We don't check for DLSYM in CMake, check for DLOPEN instead.
1 parent 8539e4b commit a04b07e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/tokudb/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ft-index only supports x86-64 and cmake-2.8.9+
22
IF(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND
3-
NOT CMAKE_VERSION VERSION_LESS "2.8.9" AND HAVE_DLSYM)
3+
NOT CMAKE_VERSION VERSION_LESS "2.8.9" AND HAVE_DLOPEN)
44
CHECK_CXX_SOURCE_COMPILES(
55
"
66
struct a {int b; int c; };

0 commit comments

Comments
 (0)