source: general/genlib/apr-util.xml@ a1f2d184

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.6 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind 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 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since a1f2d184 was 56605b9, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Remove XML::Parser from perl modules
Archive acl, attr, intltool, expat, gperf
Synchronize libcap with LFS.

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

  • Property mode set to 100644
File size: 5.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY apr-util-download-http
8 "http://archive.apache.org/dist/apr/apr-util-&apr-util-version;.tar.bz2">
9 <!ENTITY apr-util-download-ftp "ftp://ftp.mirrorservice.org/sites/ftp.apache.org/apr/apr-util-&apr-util-version;.tar.bz2">
10 <!ENTITY apr-util-md5sum "6f3417691c7a27090f36e7cf4d94b36e">
11 <!ENTITY apr-util-size "680 KB">
12 <!ENTITY apr-util-buildsize "11 MB">
13 <!ENTITY apr-util-time "0.2 SBU">
14]>
15
16<sect1 id="apr-util" xreflabel="Apr-Util-&apr-util-version;">
17 <?dbhtml filename="apr-util.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Apr-Util-&apr-util-version;</title>
25
26 <indexterm zone="apr-util">
27 <primary sortas="a-Apr-Util">Apr-Util</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Apr Util</title>
32
33 <para>
34 The Apache Portable Runtime Utility Library provides a predictable and
35 consistent interface to underlying client library interfaces. This
36 application programming interface assures predictable if not identical
37 behaviour regardless of which libraries are available on a given platform.
38 </para>
39
40 &lfs75_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&apr-util-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&apr-util-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &apr-util-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &apr-util-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &apr-util-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &apr-util-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">Apr Util Dependencies</bridgehead>
77
78 <bridgehead renderas="sect4">Required</bridgehead>
79 <para role="required">
80 <xref linkend="apr"/>
81 </para>
82
83 <bridgehead renderas="sect4">Recommended</bridgehead>
84 <para role="recommended">
85 <xref linkend="openssl"/>
86 </para>
87
88 <bridgehead renderas="sect4">Optional</bridgehead>
89 <para role="optional">
90 <xref linkend="db"/>,
91 <ulink url="http://www.freetds.org/">FreeTDS</ulink>,
92 <xref linkend="mariadb"/> or <ulink url="http://www.mysql.com/">MySQL</ulink>,
93 <xref linkend="openldap"/>,
94 <xref linkend="postgresql"/>,
95 <xref linkend="sqlite"/> and
96 <xref linkend="unixodbc"/>
97 </para>
98
99 <para condition="html" role="usernotes">
100 User Notes: <ulink url="&blfs-wiki;/apr-util"/>
101 </para>
102 </sect2>
103
104 <sect2 role="installation">
105 <title>Installation of Apr Util</title>
106
107 <para>
108 Install <application>Apr Util</application> by running the following
109 commands:
110 </para>
111
112<screen><userinput>./configure --prefix=/usr \
113 --with-apr=/usr \
114 --with-gdbm=/usr \
115 --with-openssl=/usr \
116 --with-crypto &amp;&amp;
117make</userinput></screen>
118
119 <para>
120 To test the results, issue: <command>make test</command>.
121 </para>
122
123 <para>
124 Now, as the <systemitem class="username">root</systemitem> user:
125 </para>
126
127<screen role="root"><userinput>make install</userinput></screen>
128 </sect2>
129
130 <sect2 role="commands">
131 <title>Command Explanations</title>
132
133 <para>
134 <parameter>--with-gdbm=/usr</parameter>: This switch enables the
135 <filename class="libraryfile">apr_dbm_gdbm-1.so</filename> plugin.
136 </para>
137
138 <para>
139 <parameter>--with-openssl=/usr --with-crypto</parameter>: These
140 switches enable the
141 <filename class="libraryfile">apr_crypto_openssl-1.so</filename>
142 plugin. Remove them if you have not installed
143 <xref linkend="openssl"/>.
144 </para>
145
146 <para>
147 <option>--with-berkeley-db=/usr</option>: If you have installed
148 <xref linkend="db"/>, use this switch to compile the
149 <filename class="libraryfile">apr_dbm_db-1.so</filename> plugin.
150 </para>
151
152 <para>
153 <option>--with-ldap</option>: If you have installed
154 <xref linkend="openldap"/>, use this switch to compile the
155 <filename class="libraryfile">apr_ldap.so</filename> plugin.
156 </para>
157
158 </sect2>
159
160 <sect2 role="content">
161 <title>Contents</title>
162
163 <segmentedlist>
164 <segtitle>Installed Program</segtitle>
165 <segtitle>Installed Library</segtitle>
166 <segtitle>Installed Directory</segtitle>
167
168 <seglistitem>
169 <seg>
170 apu-1-config
171 </seg>
172 <seg>
173 libaprutil-1.so
174 and several plugins under /usr/lib/apr-util-1/
175 </seg>
176 <seg>
177 /usr/lib/apr-util-1
178 </seg>
179 </seglistitem>
180 </segmentedlist>
181
182 <variablelist>
183 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
184 <?dbfo list-presentation="list"?>
185 <?dbhtml list-presentation="table"?>
186
187 <varlistentry id="libaprutil-1">
188 <term><filename class="libraryfile">libaprutil-1.so</filename></term>
189 <listitem>
190 <para>
191 contains functions that provide a predictable and consistent
192 interface to underlying client library interfaces.
193 </para>
194 <indexterm zone="apr-util libaprutil-1">
195 <primary sortas="c-libaprutil-1">libaprutil-1.so</primary>
196 </indexterm>
197 </listitem>
198 </varlistentry>
199
200 </variablelist>
201
202 </sect2>
203
204</sect1>
Note: See TracBrowser for help on using the repository browser.