diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-10-02 11:57:40 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-10-02 11:57:40 +0200 |
commit | aa36d9e74225f6db32fa01a8e1a2a3a6e6a5b77f (patch) | |
tree | 67a18a7571770c9642be560f6316d04f211c2c13 /storage/example | |
parent | 02125587e12b761a6049c6cc5fc6a6c4b6ea7a10 (diff) | |
download | mariadb-git-aa36d9e74225f6db32fa01a8e1a2a3a6e6a5b77f.tar.gz |
MDEV-5120 Test suite test maria-no-logging fails
stat structure (from <sys/stat.h>) is conditionally defined
to have different layout and size depending on the defined macros.
The correct macro is defined in my_config.h, which means it MUST be
included first (or, at least before <features.h> - so, practically,
before including any system headers).
Diffstat (limited to 'storage/example')
-rw-r--r-- | storage/example/ha_example.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc index 83c923dc69f..e865eaae017 100644 --- a/storage/example/ha_example.cc +++ b/storage/example/ha_example.cc @@ -98,6 +98,7 @@ #pragma implementation // gcc: Class implementation #endif +#include <my_config.h> #include <mysql/plugin.h> #include "ha_example.h" #include "sql_class.h" |