diff options
author | He Zhenxing <zhenxing.he@sun.com> | 2009-10-23 12:56:30 +0800 |
---|---|---|
committer | He Zhenxing <zhenxing.he@sun.com> | 2009-10-23 12:56:30 +0800 |
commit | e9acb9f0212f31e9fc5e8a09ee2932f37faed13a (patch) | |
tree | 9a5b1366ff418440003a17f8eb21baa18ede113e /CMakeLists.txt | |
parent | d8dee8cb32a8acc23a95f5288b30f7c488815fa1 (diff) | |
download | mariadb-git-e9acb9f0212f31e9fc5e8a09ee2932f37faed13a.tar.gz |
Add semi-sync support for Windows
CMakeLists.txt:
Add plugin/semisync subdirectory
mysql-test/mysql-test-run.pl:
Check for semisync dll for Windows
mysql-test/suite/rpl/r/rpl_semi_sync.result:
Update result file
mysql-test/suite/rpl/t/rpl_semi_sync.test:
Test semi-sync on Windows
plugin/semisync/semisync_master.cc:
Define gettimeofday for Windows
Diffstat (limited to 'CMakeLists.txt')
-rwxr-xr-x | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d91e39eb6d..e7d05f33ffa 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -276,6 +276,10 @@ FOREACH(DIR ${DYNAMIC_ENGINE_DIRECTORIES}) ADD_SUBDIRECTORY(${DIR}) ENDFOREACH(DIR ${DYNAMIC_ENGINE_DIRECTORIES}) +# Add subdirectories for semisync plugin +IF(NOT WITHOUT_DYNAMIC_PLUGINS) + ADD_SUBDIRECTORY(plugin/semisync) +ENDIF(NOT WITHOUT_DYNAMIC_PLUGINS) # FIXME "debug" only needed if build type is "Debug", but # CMAKE_BUILD_TYPE is not set during configure time. |