Rename libmdb to liblmdb, lmdb.h

Avoid naming conflicts with other mdb* packages. Bump version to 0.9.5
vmware
Howard Chu 12 years ago
parent f165507199
commit 13f3bcd59c
  1. 30
      libraries/libmdb/Makefile
  2. 18
      libraries/libmdb/lmdb.h
  3. 2
      libraries/libmdb/mdb.c
  4. 2
      libraries/libmdb/mdb_copy.c
  5. 2
      libraries/libmdb/mdb_stat.c
  6. 2
      libraries/libmdb/mfree.c
  7. 2
      libraries/libmdb/mtest.c
  8. 2
      libraries/libmdb/mtest2.c
  9. 2
      libraries/libmdb/mtest3.c
  10. 2
      libraries/libmdb/mtest4.c
  11. 2
      libraries/libmdb/mtest5.c
  12. 2
      libraries/libmdb/mtest6.c

@ -6,7 +6,7 @@ LDLIBS =
SOLIBS = SOLIBS =
PROGS = mdb_stat mdb_copy mtest mtest2 mtest3 mtest4 mtest5 PROGS = mdb_stat mdb_copy mtest mtest2 mtest3 mtest4 mtest5
all: libmdb.a libmdb.so $(PROGS) all: liblmdb.a liblmdb.so $(PROGS)
clean: clean:
rm -rf $(PROGS) *.[ao] *.so *~ testdb rm -rf $(PROGS) *.[ao] *.so *~ testdb
@ -15,23 +15,23 @@ test: all
mkdir testdb mkdir testdb
./mtest && ./mdb_stat testdb ./mtest && ./mdb_stat testdb
libmdb.a: mdb.o midl.o liblmdb.a: mdb.o midl.o
ar rs $@ mdb.o midl.o ar rs $@ mdb.o midl.o
libmdb.so: mdb.o midl.o liblmdb.so: mdb.o midl.o
gcc -pthread -shared -o $@ mdb.o midl.o $(SOLIBS) gcc -pthread -shared -o $@ mdb.o midl.o $(SOLIBS)
mdb_stat: mdb_stat.o libmdb.a mdb_stat: mdb_stat.o liblmdb.a
mdb_copy: mdb_copy.o libmdb.a mdb_copy: mdb_copy.o liblmdb.a
mtest: mtest.o libmdb.a mtest: mtest.o liblmdb.a
mtest2: mtest2.o libmdb.a mtest2: mtest2.o liblmdb.a
mtest3: mtest3.o libmdb.a mtest3: mtest3.o liblmdb.a
mtest4: mtest4.o libmdb.a mtest4: mtest4.o liblmdb.a
mtest5: mtest5.o libmdb.a mtest5: mtest5.o liblmdb.a
mtest6: mtest6.o libmdb.a mtest6: mtest6.o liblmdb.a
mfree: mfree.o libmdb.a mfree: mfree.o liblmdb.a
mdb.o: mdb.c mdb.h midl.h mdb.o: mdb.c lmdb.h midl.h
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c mdb.c $(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c mdb.c
midl.o: midl.c midl.h midl.o: midl.c midl.h
@ -40,5 +40,5 @@ midl.o: midl.c midl.h
%: %.o %: %.o
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@ $(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
%.o: %.c mdb.h %.o: %.c lmdb.h
$(CC) $(CFLAGS) $(CPPFLAGS) -c $< $(CC) $(CFLAGS) $(CPPFLAGS) -c $<

@ -1,7 +1,7 @@
/** @file mdb.h /** @file lmdb.h
* @brief memory-mapped database library * @brief Lightning memory-mapped database library
* *
* @mainpage MDB Memory-Mapped Database Manager * @mainpage MDB Lightning Memory-Mapped Database Manager
* *
* @section intro_sec Introduction * @section intro_sec Introduction
* MDB is a Btree-based database management library modeled loosely on the * MDB is a Btree-based database management library modeled loosely on the
@ -127,8 +127,8 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
#ifndef _MDB_H_ #ifndef _LMDB_H_
#define _MDB_H_ #define _LMDB_H_
#include <sys/types.h> #include <sys/types.h>
@ -138,7 +138,7 @@ extern "C" {
/** @defgroup mdb MDB API /** @defgroup mdb MDB API
* @{ * @{
* @brief OpenLDAP Memory-Mapped Database Manager * @brief OpenLDAP Lightning Memory-Mapped Database Manager
*/ */
/** @defgroup Version Version Macros /** @defgroup Version Version Macros
* @{ * @{
@ -148,7 +148,7 @@ extern "C" {
/** Library minor version */ /** Library minor version */
#define MDB_VERSION_MINOR 9 #define MDB_VERSION_MINOR 9
/** Library patch version */ /** Library patch version */
#define MDB_VERSION_PATCH 4 #define MDB_VERSION_PATCH 5
/** Combine args a,b,c into a single integer for easy version comparisons */ /** Combine args a,b,c into a single integer for easy version comparisons */
#define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c)) #define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c))
@ -158,7 +158,7 @@ extern "C" {
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH) MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
/** The release date of this library version */ /** The release date of this library version */
#define MDB_VERSION_DATE "September 14, 2012" #define MDB_VERSION_DATE "November 30, 2012"
/** A stringifier for the version info */ /** A stringifier for the version info */
#define MDB_VERSTR(a,b,c,d) "MDB " #a "." #b "." #c ": (" d ")" #define MDB_VERSTR(a,b,c,d) "MDB " #a "." #b "." #c ": (" d ")"
@ -1160,4 +1160,4 @@ int mdb_dcmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *a, const MDB_val *b);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#endif /* _MDB_H_ */ #endif /* _LMDB_H_ */

@ -117,7 +117,7 @@
#define MISALIGNED_OK 1 #define MISALIGNED_OK 1
#endif #endif
#include "mdb.h" #include "lmdb.h"
#include "midl.h" #include "midl.h"
#if (BYTE_ORDER == LITTLE_ENDIAN) == (BYTE_ORDER == BIG_ENDIAN) #if (BYTE_ORDER == LITTLE_ENDIAN) == (BYTE_ORDER == BIG_ENDIAN)

@ -13,7 +13,7 @@
*/ */
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include "mdb.h" #include "lmdb.h"
int main(int argc,char * argv[]) int main(int argc,char * argv[])
{ {

@ -15,7 +15,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include "mdb.h" #include "lmdb.h"
static void prstat(MDB_stat *ms) static void prstat(MDB_stat *ms)
{ {

@ -15,7 +15,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <time.h> #include <time.h>
#include "mdb.h" #include "lmdb.h"
#include "midl.h" #include "midl.h"
int main(int argc,char * argv[]) int main(int argc,char * argv[])

@ -15,7 +15,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <time.h> #include <time.h>
#include "mdb.h" #include "lmdb.h"
int main(int argc,char * argv[]) int main(int argc,char * argv[])
{ {

@ -18,7 +18,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <time.h> #include <time.h>
#include "mdb.h" #include "lmdb.h"
int main(int argc,char * argv[]) int main(int argc,char * argv[])
{ {

@ -18,7 +18,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include "mdb.h" #include "lmdb.h"
int main(int argc,char * argv[]) int main(int argc,char * argv[])
{ {

@ -18,7 +18,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include "mdb.h" #include "lmdb.h"
int main(int argc,char * argv[]) int main(int argc,char * argv[])
{ {

@ -18,7 +18,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include "mdb.h" #include "lmdb.h"
int main(int argc,char * argv[]) int main(int argc,char * argv[])
{ {

@ -18,7 +18,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include "mdb.h" #include "lmdb.h"
char dkbuf[1024]; char dkbuf[1024];

Loading…
Cancel
Save