mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
29 lines
607 B
C
29 lines
607 B
C
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
// Unity build file for MDB
|
|
|
|
#include "BeastConfig.h"
|
|
|
|
#include "ripple_mdb.h"
|
|
|
|
#if RIPPLE_MDB_AVAILABLE
|
|
|
|
#if BEAST_GCC
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
#pragma GCC diagnostic ignored "-Waddress"
|
|
#endif
|
|
|
|
#include "mdb/libraries/liblmdb/mdb.c"
|
|
#include "mdb/libraries/liblmdb/midl.c"
|
|
|
|
#if BEAST_GCC
|
|
#pragma GCC diagnostic pop
|
|
#endif
|
|
|
|
#endif
|