mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
226f0c7601
Fixed compiler warnings client/mysqladmin.cc: Fixed compiler warning extra/yassl/taocrypt/src/twofish.cpp: Fixed compiler warning libmysqld/Makefile.am: Use federatedx instead of federated (Should actually be removed) mysql-test/mysql-test-run.pl: Fixed warning mysql-test/valgrind.supp: Removed warning found on 64 bit Linux machine storage/pbxt/src/cache_xt.cc: Fixed compile warning storage/xtradb/include/buf0buf.ic: Fixed compiler warning
23 lines
773 B
Text
23 lines
773 B
Text
The following files are changed in order to build a new engine on Windows:
|
|
|
|
- Update win\configure.js with
|
|
case "WITH_FEDERATEDX_STORAGE_ENGINE":
|
|
to make sure it will pass WITH_FEDERATEDX_STORAGE_ENGINE in.
|
|
|
|
- Update CMakeFiles.txt under mysql root:
|
|
IF(WITH_FEDERATEDX_STORAGE_ENGINE)
|
|
ADD_DEFINITIONS(-D WITH_FEDERATEDX_STORAGE_ENGINE)
|
|
SET (mysql_plugin_defs
|
|
"${mysql_plugin_defs},builtin_skeleton_plugin")
|
|
ENDIF(WITH_FEDERATEDX_STORAGE_ENGINE)
|
|
|
|
and,
|
|
|
|
IF(WITH_FEDERATEDX_STORAGE_ENGINE)
|
|
ADD_SUBDIRECTORY(storage/skeleton/src)
|
|
ENDIF(WITH_FEDERATEDX_STORAGE_ENGINE)
|
|
|
|
- Update CMakeFiles.txt under sql:
|
|
IF(WITH_FEDERATEDX_STORAGE_ENGINE)
|
|
TARGET_LINK_LIBRARIES(mysqld skeleton)
|
|
ENDIF(WITH_FEDERATEDX_STORAGE_ENGINE)
|