GDBM: Difference between revisions
I added the package description from BLFS. |
I added the "Contents" section from BLFS. |
||
| Line 74: | Line 74: | ||
make BINOWN=root BINGRP=root install-compat | make BINOWN=root BINGRP=root install-compat | ||
= Contents = | |||
{| style="text-align: left;" | |||
|- | |||
! Installed Programs: | |||
| libgdbm.{so,a} and libgdbm_compat.{so,a} | |||
|- | |||
! Installed Libraries: | |||
| ??? | |||
|- | |||
! Installed Directory: | |||
| None | |||
|} | |||
=== Short Descriptions === | |||
{| style="text-align: left;" | |||
|- | |||
! libgdbm.{so,a} | |||
| contains functions to manipulate a hashed database. | |||
|} | |||
Revision as of 21:27, 7 December 2006
| Download Source: | http://ftp.gnu.org/gnu/gdbm/gdbm-1.8.3.tar.gz |
|---|
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. |
|---|