Commit Graph

8 Commits

Author SHA1 Message Date
ajacoutot
a23da81cf1 Remove the pthread chunk.
Respect CXX.
Sync WANTLIB.

ok jasper@
2012-08-21 13:51:12 +00:00
jmatthew
d0600884cd update to leveldb 1.5.0
ok sthen@
-lpthread patch for jasper@
2012-08-21 00:28:34 +00:00
jasper
8a03c9f672 no need to be different, just to be different. 2012-08-19 21:08:34 +00:00
jmatthew
d2db4af8ad include the headers in the package
ok aja sthen
2012-03-18 12:56:56 +00:00
landry
db1388714b It's pointless to add BROKEN-* for each and every arch when the code
explicitely checks for i386/amd64/arm and #errors out otherwise. Mark as
ONLY_FOR_ARCHS accordingly.
2012-02-16 21:27:37 +00:00
sthen
0f7a0ec1f7 BROKEN on sparc64 2011-12-22 15:25:42 +00:00
ajacoutot
9812ddb8b5 BROKEN on powerpc. 2011-10-22 18:10:32 +00:00
jasper
446a0d0c0f import leveldb, svn rev 48
LevelDB is a fast key-value storage library written at Google that
provides an ordered mapping from string keys to string values.

Features:
  - Keys and values are arbitrary byte arrays.
  - Data is stored sorted by key.
  - Callers can provide a custom comparison function to override
    the sort order.
  - The basic operations are Put(key,value), Get(key), Delete(key).
  - Multiple changes can be made in one atomic batch.
  - Users can create a transient snapshot to get a consistent view
    of data.
  - Forward and backward iteration is supported over the data.

ok sthen@
2011-08-19 06:44:00 +00:00