diff options
author | holyfoot@deer.(none) <> | 2006-04-26 13:25:09 +0500 |
---|---|---|
committer | holyfoot@deer.(none) <> | 2006-04-26 13:25:09 +0500 |
commit | 46e79f6708a28c8a0ac28c67ce58d736a9641ca6 (patch) | |
tree | 89dfa8cb20e548ce6bf589eb60493db81b96e9ed | |
parent | 25f56ce8b44fe5364c0e953d5699c59e574dba9b (diff) | |
download | mariadb-git-46e79f6708a28c8a0ac28c67ce58d736a9641ca6.tar.gz |
bug #18518 (embedded server crashes starting)
-rw-r--r-- | include/my_global.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/my_global.h b/include/my_global.h index 1f53804affe..6ada86a113c 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -87,6 +87,15 @@ #endif #endif /* _WIN32... */ +#ifndef EMBEDDED_LIBRARY +#ifdef WITH_ROW_BASED_REPLICATION +#define HAVE_ROW_BASED_REPLICATION 1 +#endif +#ifdef WITH_NDB_BINLOG +#define HAVE_NDB_BINLOG 1 +#endif +#endif /* !EMBEDDED_LIBRARY */ + /* Some defines to avoid ifdefs in the code */ #ifndef NETWARE_YIELD #define NETWARE_YIELD |