Difference between revisions of "QDBM"
From CBLFS
Jump to navigationJump to search (New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://qdbm.sourceforge.net/qdbm-1.8.77.tar.gz |} ---- {{Package-Introduction|QDBM is a library of routin...) |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 7: | Line 7: | ||
---- | ---- | ||
− | {{Package-Introduction|QDBM is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table or B+ tree.}} | + | {{Package-Introduction|QDBM is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table or B+ tree.|http://qdbm.sourceforge.net/}} |
== Dependencies == | == Dependencies == | ||
Line 34: | Line 34: | ||
Install the package | Install the package | ||
− | make install | + | make install |
=== N32 === | === N32 === | ||
Line 46: | Line 46: | ||
Install the package | Install the package | ||
− | make install | + | make install |
=== 64Bit === | === 64Bit === | ||
Line 59: | Line 59: | ||
make install | make install | ||
+ | |||
+ | [[Category:General Utilities]] |
Latest revision as of 14:02, 19 March 2009
Download Source: | http://qdbm.sourceforge.net/qdbm-1.8.77.tar.gz |
---|
Contents
Introduction to QDBM
QDBM is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table or B+ tree.
Project Homepage: http://qdbm.sourceforge.net/
Dependencies
Non-Multilib
Compile the package:
./configure --prefix=/usr --enable-bzip && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \ ./configure --prefix=/usr --enable-bzip && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=n32 \ ./configure --prefix=/usr --libdir=/usr/lib32 --enable-bzip && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \ ./configure --prefix=/usr --libdir=/usr/lib64 --enable-bzip && make
Install the package
make install