From 9ed4d812bce44c05621e1ae2c021cb6a04bf831d Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Wed, 6 May 2015 17:10:57 -0400 Subject: [PATCH] Added LEVELDB_PLATFORM_UV to LevelDB port.h to fix test. --- deps/leveldb/leveldb-1.18.0/port/port.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deps/leveldb/leveldb-1.18.0/port/port.h b/deps/leveldb/leveldb-1.18.0/port/port.h index e667db40..e009fb60 100644 --- a/deps/leveldb/leveldb-1.18.0/port/port.h +++ b/deps/leveldb/leveldb-1.18.0/port/port.h @@ -10,7 +10,9 @@ // Include the appropriate platform specific file below. If you are // porting to a new platform, see "port_example.h" for documentation // of what the new port_.h file must provide. -#if defined(LEVELDB_PLATFORM_POSIX) +#if defined(LEVELDB_PLATFORM_UV) +# include "port_uv.h" +#elif defined(LEVELDB_PLATFORM_POSIX) # include "port/port_posix.h" #elif defined(LEVELDB_PLATFORM_CHROMIUM) # include "port/port_chromium.h"