summaryrefslogtreecommitdiff
path: root/port/port.h
diff options
context:
space:
mode:
authordgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529>2011-05-28 00:53:58 +0000
committerdgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529>2011-05-28 00:53:58 +0000
commit740d8b3d009462eed28a94ea516d667e735b0dfc (patch)
tree83959c625c77d893b34d4306e478a5ba38804dc5 /port/port.h
parentda7990950787257cb312ca562ce5977749afc3e9 (diff)
downloadleveldb-740d8b3d009462eed28a94ea516d667e735b0dfc.tar.gz
Update from upstream @21551990
* Patch LevelDB to build for OSX and iOS * Fix race condition in memtable iterator deletion. * Other small fixes. git-svn-id: https://leveldb.googlecode.com/svn/trunk@29 62dab493-f737-651d-591e-8d6aee1b9529
Diffstat (limited to 'port/port.h')
-rw-r--r--port/port.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/port/port.h b/port/port.h
index 816826b..e35db23 100644
--- a/port/port.h
+++ b/port/port.h
@@ -16,6 +16,8 @@
# include "port/port_chromium.h"
#elif defined(LEVELDB_PLATFORM_ANDROID)
# include "port/port_android.h"
+#elif defined(LEVELDB_PLATFORM_OSX)
+# include "port/port_osx.h"
#endif
#endif // STORAGE_LEVELDB_PORT_PORT_H_