Commit fd39f25c authored by Sergei Petrunia's avatar Sergei Petrunia

MariaRocks: fix compilation on Oracle Linux Server 7.3.

#define __STDC_FORMAT_MACROS. Unfortunately there is no single location
that would be #includ'ed before everything else. Have to put the #define
into each .cc file
parent e19f1dd6
......@@ -20,6 +20,9 @@
#define MYSQL_SERVER 1
/* For use of 'PRIu64': */
#define __STDC_FORMAT_MACROS
#include <my_config.h>
#include <inttypes.h>
......
......@@ -18,6 +18,9 @@
#pragma implementation // gcc: Class implementation
#endif
/* For use of 'PRIu64': */
#define __STDC_FORMAT_MACROS
#include <my_config.h>
#include <inttypes.h>
......
......@@ -18,6 +18,9 @@
#pragma implementation // gcc: Class implementation
#endif
/* For use of 'PRIu64': */
#define __STDC_FORMAT_MACROS
#include <my_config.h>
/* This C++ file's header file */
#include "./rdb_datadic.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment