mirror of
https://github.com/MariaDB/server.git
synced 2025-04-22 15:15:41 +02:00

- fix several Windows-specific "variable set but not used", or "variable unused" warnings. - correctly initialize std::atomic_flag (ATOMIC_FLAG_INIT) - fix Ninja build for spider on Windows - adjust check for sizeof(MYSQL) for Windows compilers
32 lines
936 B
CMake
32 lines
936 B
CMake
IF(HAVE_WVLA)
|
|
SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wno-vla")
|
|
SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -Wno-vla")
|
|
ENDIF()
|
|
|
|
IF(MSVC)
|
|
# Temporarily disable "conversion from size_t .."
|
|
IF(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4267")
|
|
ENDIF()
|
|
ENDIF()
|
|
|
|
SET(SPIDER_SOURCES
|
|
spd_param.cc spd_sys_table.cc spd_trx.cc spd_db_conn.cc spd_conn.cc
|
|
spd_table.cc spd_direct_sql.cc spd_udf.cc spd_ping_table.cc
|
|
spd_copy_tables.cc spd_i_s.cc spd_malloc.cc ha_spider.cc spd_udf.def
|
|
spd_db_mysql.cc spd_group_by_handler.cc spd_db_include.cc
|
|
)
|
|
|
|
IF(PLUGIN_PARTITION MATCHES "^NO$")
|
|
MESSAGE(STATUS "Spider is skipped because partitioning is disabled")
|
|
ELSE()
|
|
IF(DEB)
|
|
SET(extra_options COMPONENT spider-engine)
|
|
ELSE()
|
|
SET(extra_options CONFIG spider.cnf)
|
|
ENDIF()
|
|
|
|
MYSQL_ADD_PLUGIN(spider ${SPIDER_SOURCES} ${extra_options}
|
|
STORAGE_ENGINE MODULE_ONLY)
|
|
ENDIF()
|
|
|