Difference between revisions of "GDBM"

From CBLFS
Jump to navigationJump to search
(I added the "Contents" section from BLFS.)
m (I fixed the vertical alignment in of the tables in the "Contents" section.)
Line 79: Line 79:
  
 
{| style="text-align: left;"
 
{| style="text-align: left;"
|-
+
|-valign="top"
 
! Installed Programs:
 
! Installed Programs:
 
|  libgdbm.{so,a} and libgdbm_compat.{so,a}
 
|  libgdbm.{so,a} and libgdbm_compat.{so,a}
|-
+
|-valign="top"
 
! Installed Libraries:
 
! Installed Libraries:
| ???
+
| None
|-
+
|-valign="top"
 
! Installed Directory:
 
! Installed Directory:
 
| None
 
| None
Line 93: Line 93:
  
 
{| style="text-align: left;"
 
{| style="text-align: left;"
|-
+
|-valign="top"
 
! libgdbm.{so,a}
 
! libgdbm.{so,a}
 
| contains functions to manipulate a hashed database.
 
| contains functions to manipulate a hashed database.
 
|}
 
|}

Revision as of 15:46, 8 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: None
Installed Directory: None

Short Descriptions

libgdbm.{so,a} contains functions to manipulate a hashed database.