diff options
author | unknown <kent@mysql.com> | 2006-02-25 21:27:49 +0100 |
---|---|---|
committer | unknown <kent@mysql.com> | 2006-02-25 21:27:49 +0100 |
commit | 1c8bf361f50ea9482eb02a405e7b20c6ca51f0ae (patch) | |
tree | 146b20eb88e52a6ae3c94da1a9fd076c98a27dc8 | |
parent | 0d97c20ec049e5a241ff88b0502a6c965e8c7e6b (diff) | |
download | mariadb-git-1c8bf361f50ea9482eb02a405e7b20c6ca51f0ae.tar.gz |
config-win.h:
Enable row based replication for Windows build
replication.m4:
Made help text more clear, default is with row based replication enabled
config/ac-macros/replication.m4:
Made help text more clear, default is with row based replication enabled
include/config-win.h:
Enable row based replication for Windows build
-rw-r--r-- | config/ac-macros/replication.m4 | 4 | ||||
-rw-r--r-- | include/config-win.h | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/config/ac-macros/replication.m4 b/config/ac-macros/replication.m4 index f73b9319b86..3a0c83d6498 100644 --- a/config/ac-macros/replication.m4 +++ b/config/ac-macros/replication.m4 @@ -7,8 +7,8 @@ dnl --------------------------------------------------------------------------- AC_DEFUN([MYSQL_CHECK_REPLICATION], [ AC_ARG_WITH([row-based-replication], - AC_HELP_STRING([--with-row-based-replication], - [Include row-based replication]), + AC_HELP_STRING([--without-row-based-replication], + [Don't include row-based replication]), [row_based="$withval"], [row_based=yes]) AC_MSG_CHECKING([for row-based replication]) diff --git a/include/config-win.h b/include/config-win.h index 4e952f8248d..5131c2a67eb 100644 --- a/include/config-win.h +++ b/include/config-win.h @@ -427,6 +427,7 @@ inline double ulonglong2double(ulonglong value) #define HAVE_SPATIAL 1 #define HAVE_RTREE_KEYS 1 +#define HAVE_ROW_BASED_REPLICATION 1 /* #undef HAVE_OPENSSL */ /* #undef HAVE_YASSL */ |