source: general/genlib/gdbm.xml@ 5cd0959d

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 5cd0959d was 5cd0959d, checked in by Archaic <archaic@…>, 20 years ago

Resetting keywords

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2592 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[52d29f7]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!ENTITY gdbm-download-http "http://ftp.gnu.org/gnu/gdbm/gdbm-&gdbm-version;.tar.gz">
8<!ENTITY gdbm-download-ftp "ftp://ftp.gnu.org/gnu/gdbm/gdbm-&gdbm-version;.tar.gz">
9<!ENTITY gdbm-size "223 KB">
10<!ENTITY gdbm-buildsize "4.1 MB">
11<!ENTITY gdbm-time "0.08 SBU">
12
13]>
14
[ca89a835]15<sect1 id="gdbm" xreflabel="GDBM-&gdbm-version;">
[a0f03b0]16<sect1info>
[5cd0959d]17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
[a0f03b0]19</sect1info>
[7f72cbf]20<?dbhtml filename="gdbm.html"?>
[ca89a835]21<title>GDBM-&gdbm-version;</title>
[777e407]22
[52d29f7]23<sect2>
24<title>Introduction to <application><acronym>GDBM</acronym></application></title>
25
26<para>The <application><acronym>GDBM</acronym></application> package
27contains the <acronym>GNU</acronym> Database Manager. This
28is a disk file format database which stores key/data-pairs in single
29files. The actual data of any record being stored is indexed by a unique
30key, which can be retrieved in less time than if it was stored in a text
31file.</para>
32
33<sect3><title>Package information</title>
34<itemizedlist spacing='compact'>
35<listitem><para>Download (HTTP): <ulink
36url="&gdbm-download-http;"/></para></listitem>
37<listitem><para>Download (FTP): <ulink
38url="&gdbm-download-ftp;"/></para></listitem>
39<listitem><para>Download size: &gdbm-size;</para></listitem>
40<listitem><para>Estimated Disk space required:
41&gdbm-buildsize;</para></listitem>
42<listitem><para>Estimated build time:
43&gdbm-time;</para></listitem></itemizedlist>
44</sect3>
45
46
47</sect2>
48
49<sect2>
50<title>Installation of <application><acronym>GDBM</acronym></application></title>
51
52<para>Install <application><acronym>GDBM</acronym></application> by running the following commands:
53</para>
54
55<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
56make &amp;&amp;
57make BINOWN=root BINGRP=root install</command></userinput></screen>
58
59<para>In addition, you may need to install the <application>DBM</application>
60and <application>NDBM</application> compatibility headers since some
61applications look for these older dbm routines.</para>
62
63<screen><userinput><command>make BINOWN=root BINGRP=root install-compat</command></userinput></screen>
64
65</sect2>
66
67<sect2>
68<title>Command explanations</title>
69
[82f09cd1]70<para><command>make BINOWN=root BINGRP=root install</command>: This
71command overrides the <varname>BINOWN</varname> and
72<varname>BINGRP</varname> variables in the <filename>Makefile</filename>
73changing ownership of the installed files to root instead of the bin
74user.</para>
[52d29f7]75
76</sect2>
77
78<sect2>
79<title>Contents</title>
80
81<para>The <application><acronym>GDBM</acronym></application> package
82contains <filename class="libraryfile">libgdbm</filename> libraries.</para>
83
84</sect2>
85
86<sect2><title>Description</title>
87
88<sect3><title>gdbm libraries</title>
89<para><filename class="libraryfile">libgdbm</filename> libraries contain functions that perform
90database routines using extendible hashing.</para></sect3>
91
92
93</sect2>
[777e407]94
95</sect1>
96
Note: See TracBrowser for help on using the repository browser.