mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
bug #18518 (embedded server crashes starting)
include/my_global.h: we #define HAVE_ROW_BASED_REPLICATION and HAVE_NDB_BINLOG if it's the case
This commit is contained in:
parent
7e52383d61
commit
ca3277a87c
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue