mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Release 0.9.8
This commit is contained in:
parent
7e58cc0fd3
commit
0f842a2710
3 changed files with 3 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
LMDB 0.9 Change Log
|
||||
|
||||
LMDB 0.9.8 Engineering
|
||||
LMDB 0.9.8 Release (2013/09/09)
|
||||
Allow mdb_env_set_mapsize() on an open environment
|
||||
Fix mdb_dbi_flags() (ITS#7672)
|
||||
Fix mdb_page_unspill() in nested txns
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@ liblmdb.a: mdb.o midl.o
|
|||
ar rs $@ mdb.o midl.o
|
||||
|
||||
liblmdb.so: mdb.o midl.o
|
||||
# $(CC) $(LDFLAGS) -pthread -shared -Wl,-Bsymbolic -o $@ mdb.o midl.o $(SOLIBS)
|
||||
$(CC) $(LDFLAGS) -pthread -shared -o $@ mdb.o midl.o $(SOLIBS)
|
||||
|
||||
mdb_stat: mdb_stat.o liblmdb.a
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ typedef int mdb_filehandle_t;
|
|||
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
|
||||
|
||||
/** The release date of this library version */
|
||||
#define MDB_VERSION_DATE "August 29, 2013"
|
||||
#define MDB_VERSION_DATE "September 9, 2013"
|
||||
|
||||
/** A stringifier for the version info */
|
||||
#define MDB_VERSTR(a,b,c,d) "MDB " #a "." #b "." #c ": (" d ")"
|
||||
|
|
|
|||
Loading…
Reference in a new issue