mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
Fix TokuDB Not building
We don't check for DLSYM in CMake, check for DLOPEN instead.
This commit is contained in:
parent
8539e4b1b6
commit
a04b07eb34
1 changed files with 1 additions and 1 deletions
|
@ -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; };
|
||||
|
|
Loading…
Add table
Reference in a new issue