Commit dc4397d5 authored by Vicențiu Ciorbaru's avatar Vicențiu Ciorbaru Committed by Otto Kekäläinen
Browse files

Extend libmariadbclient-rename.patch to cover TokuDB as well

TokuDB will try to link with libmysqlclient, but we have renamed
libmysqlclient to libmariadbclient. Make sure to rename it in TokuDB's
CMakeLists.txt too.
parent 76479b92
......@@ -307,3 +307,14 @@ Subject: libmariadbclient-rename
IF(WIN32)
MY_ADD_TESTS(my_delete LINK_LIBRARIES mysys)
--- a/storage/tokudb/PerconaFT/tools/CMakeLists.txt
+++ b/storage/tokudb/PerconaFT/tools/CMakeLists.txt
@@ -12,7 +12,7 @@ foreach(tool ${tools})
(CMAKE_CXX_FLAGS_DEBUG MATCHES " -DENABLED_DEBUG_SYNC"))
target_link_libraries(${tool} sql)
endif()
- target_link_libraries(${tool} mysqlclient)
+ target_link_libraries(${tool} mariadbclient)
endif ()
add_space_separated_property(TARGET ${tool} COMPILE_FLAGS -fvisibility=hidden)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment