GDBM-1.8.3

Introduction to GDBM

The GDBM package contains the GNU Database Manager. This is useful for database routines that use extendible hashing.

Package information

Installation of GDBM

Install GDBM by running the following commands:

./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man &&
make &&
make BINOWN=root BINGRP=root install

In addition, you may need to install the compatibility headers for gdbm. Apache 1.3, for example, will need these headers. Install the compatibility headers by running the following command:

make BINOWN=root BINGRP=root install-compat

Command explanations

--infodir=/usr/share/info --mandir=/usr/share/man: These switches set the documentation directory to /usr/share instead of /usr.

BINOWN=root BINGRP=root: This command changes the file ownership to root instead of the bin user.

Contents

The GDBM package contains libgdbm libraries.

Description

gdbm libraries

libgdbm libraries contain functions that perform database routines using extendible hashing.