Fixed compiling on < C++11 compilers
This commit is contained in:
parent
45e4cddec9
commit
994ad94fde
1 changed files with 4 additions and 0 deletions
|
@ -21,6 +21,10 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
static const char * DBG_LVL_LIST[] = {"NONE", "FAIL", "ERROR", "WARN", "INFO", "MEDIUM", "HIGH", "VERYHIGH", "EXTREME", "INSANE", "DONTEVEN"};
|
static const char * DBG_LVL_LIST[] = {"NONE", "FAIL", "ERROR", "WARN", "INFO", "MEDIUM", "HIGH", "VERYHIGH", "EXTREME", "INSANE", "DONTEVEN"};
|
||||||
|
|
||||||
|
#if !defined(PRIu64)
|
||||||
|
#define PRIu64 "llu"
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(__APPLE__) && !defined(__MACH__) && defined(__GNUC__)
|
#if !defined(__APPLE__) && !defined(__MACH__) && defined(__GNUC__)
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue