diff options
author | dgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529> | 2011-05-28 00:53:58 +0000 |
---|---|---|
committer | dgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529> | 2011-05-28 00:53:58 +0000 |
commit | 740d8b3d009462eed28a94ea516d667e735b0dfc (patch) | |
tree | 83959c625c77d893b34d4306e478a5ba38804dc5 /port/port.h | |
parent | da7990950787257cb312ca562ce5977749afc3e9 (diff) | |
download | leveldb-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.h | 2 |
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_ |