MXS-1595 Rename mysqlclient to mariadbclient
Documentation update will follow.
This commit is contained in:
@ -3,6 +3,6 @@ target_link_libraries(mysqlcommon maxscale-common)
|
||||
set_target_properties(mysqlcommon PROPERTIES VERSION "2.0.0")
|
||||
install_module(mysqlcommon core)
|
||||
|
||||
add_subdirectory(MySQLBackend)
|
||||
add_subdirectory(MySQLClient)
|
||||
add_subdirectory(mariadbbackend)
|
||||
add_subdirectory(mariadbclient)
|
||||
add_subdirectory(test)
|
||||
|
@ -1,8 +0,0 @@
|
||||
add_library(mysqlclient SHARED mysql_client.cc)
|
||||
target_link_libraries(mysqlclient maxscale-common mysqlcommon)
|
||||
set_target_properties(mysqlclient PROPERTIES VERSION "1.0.0")
|
||||
install_module(mysqlclient core)
|
||||
|
||||
if(BUILD_TESTS)
|
||||
add_subdirectory(test)
|
||||
endif()
|
@ -0,0 +1,8 @@
|
||||
add_library(mariadbclient SHARED mysql_client.cc)
|
||||
target_link_libraries(mariadbclient maxscale-common mysqlcommon)
|
||||
set_target_properties(mariadbclient PROPERTIES VERSION "1.0.0")
|
||||
install_module(mariadbclient core)
|
||||
|
||||
if(BUILD_TESTS)
|
||||
add_subdirectory(test)
|
||||
endif()
|
@ -12,7 +12,7 @@
|
||||
* Public License.
|
||||
*/
|
||||
|
||||
#define MXS_MODULE_NAME "MySQLClient"
|
||||
#define MXS_MODULE_NAME "mariadbclient"
|
||||
|
||||
#include <maxscale/cppdefs.hh>
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include <maxscale/cdefs.h>
|
||||
|
||||
#include "../MySQLClient/mysql_client.cc"
|
||||
#include "../mariadbclient/mysql_client.cc"
|
||||
|
||||
#define NO_THREAD_ID 0
|
||||
|
||||
|
Reference in New Issue
Block a user