mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-27 09:42:12 +08:00
e1e58be454
neither firefox nor epiphany can download them, and they are not well maintained, because rarely tested. This is WIP because the "(HTTP)" part of "Download (HTTP)" will need to be removed too. But let's see what users think first...
210 lines
6.0 KiB
XML
210 lines
6.0 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY apr-util-download-http
|
|
"https://archive.apache.org/dist/apr/apr-util-&apr-util-version;.tar.bz2">
|
|
<!ENTITY apr-util-download-ftp " ">
|
|
<!ENTITY apr-util-md5sum "b6e8c9b31d938fe5797ceb0d1ff2eb69">
|
|
<!ENTITY apr-util-size "423 KB">
|
|
<!ENTITY apr-util-buildsize "7.6 MB (add 1.4 MB for tests)">
|
|
<!ENTITY apr-util-time "less than 0.1 SBU (add 0.3 SBU for tests)">
|
|
]>
|
|
|
|
<sect1 id="apr-util" xreflabel="Apr-Util-&apr-util-version;">
|
|
<?dbhtml filename="apr-util.html"?>
|
|
|
|
|
|
<title>Apr-Util-&apr-util-version;</title>
|
|
|
|
<indexterm zone="apr-util">
|
|
<primary sortas="a-Apr-Util">Apr-Util</primary>
|
|
</indexterm>
|
|
|
|
<sect2 role="package">
|
|
<title>Introduction to Apr Util</title>
|
|
|
|
<para>
|
|
The Apache Portable Runtime Utility Library provides a predictable and
|
|
consistent interface to underlying client library interfaces. This
|
|
application programming interface assures predictable if not identical
|
|
behavior regardless of which libraries are available on a given platform.
|
|
</para>
|
|
|
|
&lfs120_checked;
|
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>
|
|
Download (HTTP): <ulink url="&apr-util-download-http;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download (FTP): <ulink url="&apr-util-download-ftp;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download MD5 sum: &apr-util-md5sum;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download size: &apr-util-size;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated disk space required: &apr-util-buildsize;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated build time: &apr-util-time;
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<bridgehead renderas="sect3">Apr Util Dependencies</bridgehead>
|
|
|
|
<bridgehead renderas="sect4">Required</bridgehead>
|
|
<para role="required">
|
|
<xref linkend="apr"/>
|
|
</para>
|
|
<!--
|
|
<bridgehead renderas="sect4">Recommended</bridgehead>
|
|
<para role="recommended">
|
|
<xref linkend="openssl"/>
|
|
</para>
|
|
-->
|
|
<bridgehead renderas="sect4">Optional</bridgehead>
|
|
<para role="optional">
|
|
<xref linkend="db"/>,
|
|
<ulink url="https://www.freetds.org/">FreeTDS</ulink>,
|
|
<xref linkend="mariadb"/> or <ulink url="https://www.mysql.com/">MySQL</ulink>,
|
|
<xref linkend="openldap"/>,
|
|
<xref linkend="postgresql"/>,
|
|
<xref linkend="sqlite"/> and
|
|
<xref linkend="unixodbc"/>
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of Apr Util</title>
|
|
|
|
<para>
|
|
Install <application>Apr Util</application> by running the following
|
|
commands:
|
|
</para>
|
|
|
|
<screen><userinput>./configure --prefix=/usr \
|
|
--with-apr=/usr \
|
|
--with-gdbm=/usr \
|
|
--with-openssl=/usr \
|
|
--with-crypto &&
|
|
make</userinput></screen>
|
|
|
|
<para>
|
|
To test the results, issue: <command>make -j1 test</command>.
|
|
One test, testdbm, is known to fail.
|
|
</para>
|
|
|
|
<para>
|
|
Now, as the <systemitem class="username">root</systemitem> user:
|
|
</para>
|
|
|
|
<screen role="root"><userinput>make install</userinput></screen>
|
|
</sect2>
|
|
|
|
<sect2 role="commands">
|
|
<title>Command Explanations</title>
|
|
|
|
<para>
|
|
<parameter>--with-gdbm=/usr</parameter>: This switch enables the
|
|
<filename class="libraryfile">apr_dbm_gdbm-1.so</filename> plugin.
|
|
</para>
|
|
|
|
<para>
|
|
<parameter>--with-openssl=/usr --with-crypto</parameter>: These
|
|
switches enable the
|
|
<filename class="libraryfile">apr_crypto_openssl-1.so</filename>
|
|
plugin.
|
|
</para>
|
|
|
|
<para>
|
|
<option>--with-berkeley-db=/usr</option>: If you have installed
|
|
<xref linkend="db"/>, use this switch to compile the
|
|
<filename class="libraryfile">apr_dbm_db-1.so</filename> plugin.
|
|
</para>
|
|
|
|
<para>
|
|
<option>--with-ldap</option>: If you have installed
|
|
<xref linkend="openldap"/>, use this switch to compile the
|
|
<filename class="libraryfile">apr_ldap.so</filename> plugin.
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="content">
|
|
<title>Contents</title>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Installed Program</segtitle>
|
|
<segtitle>Installed Library</segtitle>
|
|
<segtitle>Installed Directory</segtitle>
|
|
|
|
<seglistitem>
|
|
<seg>
|
|
apu-1-config
|
|
</seg>
|
|
<seg>
|
|
libaprutil-1.so
|
|
</seg>
|
|
<seg>
|
|
/usr/lib/apr-util-1
|
|
</seg>
|
|
</seglistitem>
|
|
</segmentedlist>
|
|
|
|
<variablelist>
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
<?dbfo list-presentation="list"?>
|
|
<?dbhtml list-presentation="table"?>
|
|
|
|
<varlistentry id="apu-1-config">
|
|
<term><command>apu-1-config</command></term>
|
|
<listitem>
|
|
<para>
|
|
is an APR-util script designed to allow easy command line access to
|
|
APR-util configuration parameters
|
|
</para>
|
|
<indexterm zone="apr-util apu-1-config">
|
|
<primary sortas="b-apu-1-config">apu-1-config</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="libaprutil-1">
|
|
<term><filename class="libraryfile">libaprutil-1.so</filename></term>
|
|
<listitem>
|
|
<para>
|
|
contains functions that provide a predictable and consistent
|
|
interface to underlying client library interfaces
|
|
</para>
|
|
<indexterm zone="apr-util libaprutil-1">
|
|
<primary sortas="c-libaprutil-1">libaprutil-1.so</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|