source: general/genutils/apr-util.xml@ 504cfe3b

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 504cfe3b was 504cfe3b, checked in by Bruce Dubbs <bdubbs@…>, 11 years ago

Add option to explanations of apr-utils when
building openssl plugin.

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

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