2012-09-01 04:01:31 -07:00
|
|
|
/*
|
|
|
|
* =====================================================================
|
|
|
|
* Version: 1.0
|
|
|
|
* Created: 01.09.2012 12:58:02
|
|
|
|
* Author: Miroslav Bendík
|
|
|
|
* Company: LinuxOS.sk
|
|
|
|
* =====================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if MSDOS || __OS2__ || __NT__ || _WIN32
|
|
|
|
#define PATH_SEPARATOR '\\'
|
|
|
|
#else
|
|
|
|
#define PATH_SEPARATOR '/'
|
|
|
|
#endif
|
2012-09-01 05:36:14 -07:00
|
|
|
|
|
|
|
#define BLOCK_SIZE 16
|
2014-03-05 12:41:27 -08:00
|
|
|
|
|
|
|
#ifdef USE_CMAKE_CONFIG_H
|
|
|
|
#include "cmake_config.h"
|
|
|
|
#else
|
|
|
|
#define USE_LEVELDB 0
|
|
|
|
#endif
|