aboutsummaryrefslogtreecommitdiff
path: root/src/leveldb
AgeCommit message (Collapse)Author
2018-08-09Merge leveldb subtreeMarcoFalke
Merge commit 'ec749b1bcdf2483b642fb51d635800e272c68ba6' into HEAD
2018-02-16Bump leveldb subtreeMarcoFalke
2017-08-01Update LevelDB with latest Bitcoin-specific patchesPieter Wuille
2017-06-22Fixed multiple typosDimitris Tsapakidis
A few "a->an" and "an->a". "Shows, if the supplied default SOCKS5 proxy" -> "Shows if the supplied default SOCKS5 proxy". Change made on 3 occurrences. "without fully understanding the ramification of a command" -> "without fully understanding the ramifications of a command". Removed duplicate words such as "the the".
2017-06-09Update to LevelDB 1.20Pieter Wuille
2016-12-01Merge in LevelDB 1.19 changesPieter Wuille
2015-11-04Update LevelDBPieter Wuille
2014-10-16Merge src/leveldb changes for LevelDB 1.18.Pieter Wuille
2014-05-09Merge src/leveldb changes for LevelDB 1.17.Pieter Wuille
2014-01-18Merge src/leveldb changes: temporarily revert to writing .sst files.Pieter Wuille
2013-12-12Merge src/leveldb changes for LevelDB 1.15Pieter Wuille
2013-08-24Merge src/leveldb changes for LevelDB 1.13Pieter Wuille
2013-08-20Merge leveldb subtree change.Pieter Wuille
* On Mac OS X fsync does not guarantee write to disk. Use fcntl F_FULLFSYNC instead.
2013-08-18Merge commit '84d6d69fc69662b2709fffbeaf3c3b4f53c535b1'Pieter Wuille
2013-07-01Merge commit 'adae78ea9940f4d44382967d1296e7db0b54a4de' into leveldb-squashedVinnie Falco
2013-06-12Added GNU/kFreeBSD kernel name (TARGET_OS)Vaclav Vobornik
uname -s returns "GNU/kFreeBSD" on Debian GNU/kFreeBSD port. See http://www.debian.org/ports/kfreebsd-gnu/
2013-04-28Allow files to be opened for reading multiple timesPieter Wuille
2013-04-27Checking whether closing succeedsPieter Wuille
2013-04-27Print actual Win32 error that occurred on file creation failure.Pieter Wuille
2013-01-23Fix corruption bug found and analyzed by dhruba@gmail.comDavid Grogan
https://groups.google.com/d/msg/leveldb/Kc9JxuIUu5A/9P0N9RL4ar8J
2013-01-23added utility to dump leveldb filesSanjay Ghemawat
2013-01-23Port leveldb to MinGW32Gavin Andresen
Several changes to make the native windows leveldb code compile with mingw32 and run on 32-bit Windows: * Remove -std=c++0x dependency (modified code to use NULL instead of nullptr) * Link with -lshlwapi * Only #define snprintf/etc if compiling with Visual Studio * Do not link against DbgHelp.lib (wrote a CreateDir instead of using DbgHelp's MakeSureDirectoryPathExists * Define WINVER=0x0500 so MinGW32 can use the 64-bit-filesystem Windows api calls * Define __USE_MINGW_ANSI_STDIO=1 to use MinGW's printf (which supports %ll) I also cleaned up makefile.mingw, assuming that dependencies would be in the standard /usr/local/{include,lib} by default but allowing overriding with make DEPSDIR=... etc
2013-01-23Mingw support for Windows LevelDB portPieter Wuille
2013-01-23Pre-Vista leveldb::port::InitOnce implementationPieter Wuille
2013-01-23Native Windows LevelDB portPieter Wuille
Import native Windows LevelDB port by Hiram Chirino. Extracted from from https://github.com/chirino/leveldb.git using git diff dd0d562..aea83b7
2013-01-23Remove Snappy supportPieter Wuille
2013-01-23Replace leveldb/ with vanilla 1.7.0Pieter Wuille
2012-12-12LevelDB: build_detect_platform fix NATIVE_WINDOWS indentationPhilip Kaufmann
- fix some indentation issues
2012-12-12Merge pull request #1940 from grimd34th/patch-1Gavin Andresen
Add NATIVE_WINDOWS
2012-11-15Merge pull request #1945 from centromere/leveldb_fixJeff Garzik
Fixed compile error on FreeBSD 9.
2012-11-01Fixed making leveldb with custom CFLAGS/CXXFLAGS in the same way as ↵Arnav Singh
makefile.unix
2012-10-22Fixed compile error on FreeBSD 9.Alex
See http://code.google.com/p/leveldb/issues/detail?id=98
2012-10-21Add NATIVE_WINDOWSgrimd34th
With a change of libs, and specifying NATIVE_WINDOWS as TARGET_OS it should compile libleveldb.a and libmemenv.a just fine, it did for me and Diapolo when testing.
2012-10-20Backport Win32 LevelDB env from C++0x to C++Pieter Wuille
Since the gitian mingw compiler doesn't support C++0x yet.
2012-10-20Disable libsnappy detection in LevelDBPieter Wuille
2012-10-20Leveldb Windows port by Edouard Alligand, adapted for MingW by me.justmoon
2012-10-20Import LevelDB 1.5, it will be used for the transaction database.Mike Hearn