diff options
author | He Zhenxing <zhenxing.he@sun.com> | 2009-11-27 16:49:45 +0800 |
---|---|---|
committer | He Zhenxing <zhenxing.he@sun.com> | 2009-11-27 16:49:45 +0800 |
commit | 75b9db91ded7a399f13bb4188b53975c7fd4697b (patch) | |
tree | 125eb69a96dd12b56aac6abb1020181e495257c2 /plugin/semisync/plug.in | |
parent | f09129c6beecb20da475b41af1bba948abf826c8 (diff) | |
download | mariadb-git-75b9db91ded7a399f13bb4188b53975c7fd4697b.tar.gz |
Bug#48351 Inconsistent library names for semisync plugin
The semisync plugin library names on Unix like systems were prefixed with
'lib', which did not follow the conventions.
Fix the problem by removing the 'lib' prefix on Unix systems.
Diffstat (limited to 'plugin/semisync/plug.in')
-rw-r--r-- | plugin/semisync/plug.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/semisync/plug.in b/plugin/semisync/plug.in index 917c8950f02..82bd9772644 100644 --- a/plugin/semisync/plug.in +++ b/plugin/semisync/plug.in @@ -1,3 +1,3 @@ MYSQL_PLUGIN(semisync,[Semi-synchronous Replication Plugin], [Semi-synchronous replication plugin.]) -MYSQL_PLUGIN_DYNAMIC(semisync, [libsemisync_master.la libsemisync_slave.la]) +MYSQL_PLUGIN_DYNAMIC(semisync, [semisync_master.la semisync_slave.la]) |