mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
24 lines
515 B
C
24 lines
515 B
C
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_MDB_H_INCLUDED
|
|
#define RIPPLE_MDB_H_INCLUDED
|
|
|
|
#include "beast/modules/beast_core/system/beast_TargetPlatform.h"
|
|
|
|
#if ! BEAST_WIN32
|
|
#define RIPPLE_MDB_AVAILABLE 1
|
|
|
|
#include "mdb/libraries/liblmdb/lmdb.h"
|
|
|
|
#else
|
|
// mdb is unsupported on Win32
|
|
#define RIPPLE_MDB_AVAILBLE 0
|
|
|
|
#endif
|
|
|
|
#endif
|