1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

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
This commit is contained in:
Sergei Petrunia
2017-03-10 14:05:17 +03:00
parent e19f1dd61e
commit fd39f25ca7
3 changed files with 9 additions and 0 deletions

View File

@@ -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"