source: general/genlib/apr.xml@ a98af0b4

nosym
Last change on this file since a98af0b4 was fa12bca, checked in by Bruce Dubbs <bdubbs@…>, 8 years ago

Create branch without lib64 symlinks

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/nosym@18024 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.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-download-http
8 "http://archive.apache.org/dist/apr/apr-&apr-version;.tar.bz2">
9 <!ENTITY apr-download-ftp
10 "ftp://ftp.mirrorservice.org/sites/ftp.apache.org/apr/apr-&apr-version;.tar.bz2">
11 <!ENTITY apr-md5sum "4e9769f3349fe11fc0a5e1b224c236aa">
12 <!ENTITY apr-size "808 KB">
13 <!ENTITY apr-buildsize "13 MB (additional 3 MB for the tests)">
14 <!ENTITY apr-time "0.2 SBU (1.1 with tests)">
15]>
16
17<sect1 id="apr" xreflabel="Apr-&apr-version;">
18 <?dbhtml filename="apr.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>Apr-&apr-version;</title>
26
27 <indexterm zone="apr">
28 <primary sortas="a-apr">Apr</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to Apr</title>
33
34 <para>
35 The Apache Portable Runtime (APR) is a supporting library for the
36 Apache web server. It provides a set of application programming interfaces
37 (APIs) that map to the underlying Operating System (OS). Where the OS
38 doesn't support a particular function, APR will provide an emulation. Thus
39 programmers can use the APR to make a program portable across different
40 platforms.
41 </para>
42
43 &lfs7a_checked;
44
45 <bridgehead renderas="sect3">Package Information</bridgehead>
46 <itemizedlist spacing="compact">
47 <listitem>
48 <para>
49 Download (HTTP): <ulink url="&apr-download-http;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download (FTP): <ulink url="&apr-download-ftp;"/>
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download MD5 sum: &apr-md5sum;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Download size: &apr-size;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated disk space required: &apr-buildsize;
70 </para>
71 </listitem>
72 <listitem>
73 <para>
74 Estimated build time: &apr-time;
75 </para>
76 </listitem>
77 </itemizedlist>
78
79 <para condition="html" role="usernotes">
80 User Notes: <ulink url="&blfs-wiki;/apr"/>
81 </para>
82 </sect2>
83
84 <sect2 role="installation">
85 <title>Installation of Apr</title>
86
87 <para>
88 Install <application>Apr</application> by running the following commands:
89 </para>
90
91<screen><userinput>./configure --prefix=/usr \
92 --disable-static \
93 --with-installbuilddir=/usr/share/apr-1/build &amp;&amp;
94make</userinput></screen>
95
96 <para>
97 To test the results, issue: <command>make test</command>.
98 </para>
99
100 <para>
101 Now, as the <systemitem class="username">root</systemitem> user:
102 </para>
103
104<screen role="root"><userinput>make install</userinput></screen>
105 </sect2>
106
107 <sect2 role="commands">
108 <title>Command Explanations</title>
109
110 <para>
111 <command>sed -i ...</command>: This sed silences several meaningless
112 warnings from libtool.
113 </para>
114
115 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
116 href="../../xincludes/static-libraries.xml"/>
117
118 </sect2>
119
120 <sect2 role="content">
121 <title>Contents</title>
122
123 <segmentedlist>
124 <segtitle>Installed Program</segtitle>
125 <segtitle>Installed Library</segtitle>
126 <segtitle>Installed Directories</segtitle>
127
128 <seglistitem>
129 <seg>
130 apr-1-config
131 </seg>
132 <seg>
133 libapr-1.so
134 </seg>
135 <seg>
136 /usr/include/apr-1 and
137 /usr/share/apr-1
138 </seg>
139 </seglistitem>
140 </segmentedlist>
141
142 <variablelist>
143 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
144 <?dbfo list-presentation="list"?>
145 <?dbhtml list-presentation="table"?>
146
147 <varlistentry id="apr-1-config">
148 <term><command>apr-1-config</command></term>
149 <listitem>
150 <para>
151 is a shell script used to retrieve information about the apr
152 library in the system. It is typically used to compile and link
153 against the library.
154 </para>
155 <indexterm zone="apr apr-1-config">
156 <primary sortas="b-apr-1-config">apr-1-config</primary>
157 </indexterm>
158 </listitem>
159 </varlistentry>
160
161 <varlistentry id="libapr-1">
162 <term><filename class="libraryfile">libapr-1.so</filename></term>
163 <listitem>
164 <para>
165 is the Apache Portable Runtime library.
166 </para>
167 <indexterm zone="apr libapr-1">
168 <primary sortas="c-libapr-1">libapr-1.so</primary>
169 </indexterm>
170 </listitem>
171 </varlistentry>
172 </variablelist>
173
174 </sect2>
175</sect1>
Note: See TracBrowser for help on using the repository browser.