diff options
author | Joerg Bruehe <joerg@mysql.com> | 2009-12-16 14:11:20 +0100 |
---|---|---|
committer | Joerg Bruehe <joerg@mysql.com> | 2009-12-16 14:11:20 +0100 |
commit | 6ddab77da26d4529db403e573298f927d315adeb (patch) | |
tree | 3c649eaeecff14c257ff448de3de4d314e1ba4c9 /scripts | |
parent | d11111f1a694fdec2464f176fe0f0f95f9480d93 (diff) | |
parent | 81d9615de8781c278635acb4e7980966b1963f85 (diff) | |
download | mariadb-git-6ddab77da26d4529db403e573298f927d315adeb.tar.gz |
Automerge the build fixes of 5.5.0-m2 back into the tree.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make_win_bin_dist | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/make_win_bin_dist b/scripts/make_win_bin_dist index c5d429c2752..51271a3dad0 100755 --- a/scripts/make_win_bin_dist +++ b/scripts/make_win_bin_dist @@ -290,6 +290,11 @@ if [ -d storage/innodb_plugin ]; then cp storage/innodb_plugin/$TARGET/ha_innodb_plugin.dll \ $DESTDIR/lib/plugin/ fi +if [ -d plugin/semisync ]; then + cp plugin/semisync/$TARGET/semisync_master.dll \ + plugin/semisync/$TARGET/semisync_slave.dll \ + $DESTDIR/lib/plugin/ +fi if [ x"$TARGET" != x"release" ] ; then cp libmysql/$TARGET/libmysql.pdb \ @@ -302,6 +307,11 @@ if [ x"$TARGET" != x"release" ] ; then cp storage/innodb_plugin/$TARGET/ha_innodb_plugin.pdb \ $DESTDIR/lib/plugin/ fi + if [ -d plugin/semisync ]; then + cp plugin/semisync/$TARGET/semisync_master.pdb \ + plugin/semisync/$TARGET/semisync_slave.pdb \ + $DESTDIR/lib/plugin/ + fi fi @@ -328,6 +338,15 @@ if [ x"$PACK_DEBUG" = x"" -a -f "libmysql/debug/libmysql.lib" -o \ storage/innodb_plugin/debug/ha_innodb_plugin.pdb \ $DESTDIR/lib/plugin/debug/ fi + if [ -d plugin/semisync ]; then + cp plugin/semisync/debug/semisync_master.dll \ + plugin/semisync/debug/semisync_master.lib \ + plugin/semisync/debug/semisync_master.pdb \ + plugin/semisync/debug/semisync_slave.dll \ + plugin/semisync/debug/semisync_slave.lib \ + plugin/semisync/debug/semisync_slave.pdb \ + $DESTDIR/lib/plugin/debug/ + fi fi # ---------------------------------------------------------------------- |