switched over to using glib lists which will allow us the use of hashes when

we do the KKD records.
This commit is contained in:
brianb
2000-02-17 03:04:13 +00:00
parent 30ab45dc35
commit d4e241606c
6 changed files with 47 additions and 19 deletions

View File

@@ -1,8 +1,8 @@
CC = gcc
INC = -I ../include
LIBS = -L ../libmdb -lmdb
INC = -I ../include `glib-config --cflags`
LIBS = -L ../libmdb -lmdb `glib-config --libs`
PROGS = prcat
PRCATOBJS = prcat.o

View File

@@ -38,7 +38,7 @@ MDB_HANDLE *mdb;
mdb = mdb_open(argv[1]);
mdb_catalog_dump(mdb,(argc > 2) ? atoi(argv[2]) : MDB_TABLE);
mdb_dump_catalog(mdb,(argc > 2) ? atoi(argv[2]) : MDB_TABLE);
mdb_free_handle(mdb);
}