Difference between revisions of "GDBM"
From CBLFS
Jump to navigationJump to searchWeibullguy (talk | contribs) m |
(Updates for gdbm 1.9.1) |
||
Line 11: | Line 11: | ||
{{Note|GDBM does not use ''DESTDIR'', it uses ''INSTALL_ROOT'' instead. Just use ''INSTALL_ROOT'' as you would ''DESTDIR''.}} | {{Note|GDBM does not use ''DESTDIR'', it uses ''INSTALL_ROOT'' instead. Just use ''INSTALL_ROOT'' as you would ''DESTDIR''.}} | ||
+ | {{Note|Append --enable-libgdbm-compat configure option to build and install computability headers and libraries.}} | ||
== Non-Multilib == | == Non-Multilib == | ||
Line 21: | Line 22: | ||
Install the package | Install the package | ||
− | make | + | make install |
− | |||
− | |||
− | |||
− | |||
== Multilib == | == Multilib == | ||
Line 38: | Line 35: | ||
Install the package | Install the package | ||
− | make | + | make install |
− | |||
− | |||
− | |||
− | |||
=== N32 === | === N32 === | ||
Line 53: | Line 46: | ||
Install the package | Install the package | ||
− | make | + | make install |
− | |||
− | |||
− | |||
− | |||
=== 64Bit === | === 64Bit === | ||
Line 68: | Line 57: | ||
Install the package | Install the package | ||
− | make | + | make install |
− | |||
− | |||
− | |||
− | |||
− | |||
= Contents = | = Contents = |
Revision as of 12:13, 19 September 2012
Download Source: | http://ftp.gnu.org/gnu/gdbm/gdbm-1.10.tar.gz |
---|
Contents
Introduction to GDBM
GNU dbm is a set of database routines that use extensible hashing. It works similar to the standard Unix dbm routines.
Project Homepage: http://www.gnu.org/software/gdbm/
Configuration Information
GDBM does not use DESTDIR, it uses INSTALL_ROOT instead. Just use INSTALL_ROOT as you would DESTDIR.
Append --enable-libgdbm-compat configure option to build and install computability headers and libraries.
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package
make install
Contents
Installed Programs: | None |
---|---|
Installed Libraries: | libgdbm.{a,la,so} and libgdbm_compat.{a,la,so} |
Installed Directory: | None |
Short Descriptions
libgdbm.{so,a} | contains functions to manipulate a hashed database. |
---|