GDBM
Download Source: | http://ftp.gnu.org/gnu/gdbm/gdbm-1.8.3.tar.gz |
---|
Contents
Introduction to GDBM
The GDBM package contains the GNU Database Manager. This is a disk file format database which stores key/data-pairs in single files. The actual data of any record being stored is indexed by a unique key, which can be retrieved in less time than if it was stored in a text file.
Dependencies
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make BINOWN=root BINGRP=root install
You may need to install the DBM and NDBM compatibility headers and library since some applications look for these older dbm routines.
make BINOWN=root BINGRP=root install-compat
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr && make
Install the package
make BINOWN=root BINGRP=root install
You may need to install the DBM and NDBM compatibility headers and library since some applications look for these older dbm routines.
make BINOWN=root BINGRP=root install-compat
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package
make BINOWN=root BINGRP=root install
You may need to install the DBM and NDBM compatibility headers and library since some applications look for these older dbm routines.
make BINOWN=root BINGRP=root install-compat
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package
make BINOWN=root BINGRP=root install
You may need to install the DBM and NDBM compatibility headers and library since some applications look for these older dbm routines.
make BINOWN=root BINGRP=root install-compat
Contents
Installed Programs: | libgdbm.{so,a} and libgdbm_compat.{so,a} |
---|---|
Installed Libraries: | ??? |
Installed Directory: | None |
Short Descriptions
libgdbm.{so,a} | contains functions to manipulate a hashed database. |
---|