From abab14a938887abb680db69f237ceb9e0b85c523 Mon Sep 17 00:00:00 2001 From: Julian Gruber Date: Thu, 11 Aug 2016 19:48:57 +0200 Subject: [PATCH] apply port_uv.h path --- deps/leveldb/leveldb-1.19/port/port.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deps/leveldb/leveldb-1.19/port/port.h b/deps/leveldb/leveldb-1.19/port/port.h index e667db40..e009fb60 100755 --- a/deps/leveldb/leveldb-1.19/port/port.h +++ b/deps/leveldb/leveldb-1.19/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"