source: networking/netlibs/neon.xml@ 94b42903

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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 94b42903 was 94b42903, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Archive openssl-1.1.x. Moved to LFS.
Update to v4l-utils-1.14.2.
Update to vlc-3.0.0.

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

  • Property mode set to 100644
File size: 6.0 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 neon-download-http "http://www.webdav.org/neon/neon-&neon-version;.tar.gz"> -->
8 <!ENTITY neon-download-http "https://fossies.org/linux/www/neon-&neon-version;.tar.gz">
9 <!ENTITY neon-download-ftp " ">
10 <!ENTITY neon-md5sum "e28d77bf14032d7f5046b3930704ef41">
11 <!ENTITY neon-size "911 KB">
12 <!ENTITY neon-buildsize "8.5 MB (additional 18 MB for the tests)">
13 <!ENTITY neon-time "0.1 SBU (additional 0.3 SBU for the tests)">
14]>
15
16<sect1 id="neon" xreflabel="neon-&neon-version;">
17 <?dbhtml filename="neon.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>neon-&neon-version;</title>
25
26 <indexterm zone="neon">
27 <primary sortas="a-neon">neon</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to neon</title>
32
33 <para>
34 <application>neon</application> is an HTTP and WebDAV
35 client library, with a C interface.
36 </para>
37
38 &lfs81_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&neon-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&neon-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &neon-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &neon-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &neon-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &neon-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">neon Dependencies</bridgehead>
75<!--
76 <bridgehead renderas="sect4">Recommended</bridgehead>
77 <para role="recommended">
78 <xref linkend="openssl"/> or
79 <xref linkend="gnutls"/>
80 </para>
81-->
82 <bridgehead renderas="sect4">Optional</bridgehead>
83 <para role="optional">
84 <xref linkend="gnutls"/>,
85 <xref linkend="libxml2"/>,
86 <xref linkend="mitkrb"/>,
87 <ulink url="https://github.com/libproxy/libproxy">libproxy</ulink>, and
88 <ulink url="http://www.manyfish.co.uk/pakchois/">pakchois</ulink>,
89 </para>
90
91 <para condition="html" role="usernotes">User Notes:
92 <ulink url="&blfs-wiki;/neon"/>
93 </para>
94 </sect2>
95
96 <sect2 role="installation">
97 <title>Installation of neon</title>
98
99 <para>Fix some code when building with gnutls-3.4 and later:</para>
100
101<screen><userinput>sed -e 's/client_set/set/' \
102 -e 's/gnutls_retr/&amp;2/' \
103 -e 's/type = t/cert_&amp;/' \
104 -i src/ne_gnutls.c</userinput></screen>
105
106 <para>
107 Install <application>neon</application> by running the following
108 commands:
109 </para>
110
111<screen><userinput>./configure --prefix=/usr \
112 --with-ssl \
113 --enable-shared \
114 --disable-static &amp;&amp;
115make</userinput></screen>
116
117 <para>
118 To test the results, issue: <command>make check</command>.
119 Most of the <parameter>ssl</parameter> tests fail, using
120 <option>--with-ssl=gnutls</option>.
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
129 </sect2>
130
131 <sect2 role="commands">
132 <title>Command Explanations</title>
133
134 <para>
135 <parameter>--with-ssl</parameter>: This switch enables SSL support
136 using <application>OpenSSL</application> or
137 <application>GnuTLS</application> respectively. Remove it if
138 you don't have any of these installed. To force
139 <application>GnuTLS</application> usage when both are present,
140 simply pass <option>--with-ssl=gnutls</option> and
141 <option>--with-ca-bundle=/etc/ssl/ca-bundle.crt</option> to the
142 <command>configure</command> script.
143 </para>
144
145 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
146 href="../../xincludes/static-libraries.xml"/>
147
148 <para>
149 <option>--with-libxml2</option>: This switch forces the use of
150 <application>libxml2</application> instead of
151 <application>Expat</application>.
152 </para>
153
154 </sect2>
155
156 <sect2 role="content">
157 <title>Contents</title>
158
159 <segmentedlist>
160 <segtitle>Installed Program</segtitle>
161 <segtitle>Installed Library</segtitle>
162 <segtitle>Installed Directories</segtitle>
163
164 <seglistitem>
165 <seg>
166 neon-config
167 </seg>
168 <seg>
169 libneon.so
170 </seg>
171 <seg>
172 /usr/include/neon and
173 /usr/share/doc/neon-&neon-version;
174 </seg>
175 </seglistitem>
176 </segmentedlist>
177
178 <variablelist>
179 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
180 <?dbfo list-presentation="list"?>
181 <?dbhtml list-presentation="table"?>
182
183 <varlistentry id="neon-config">
184 <term><command>neon-config</command></term>
185 <listitem>
186 <para>
187 is a script that provide information about an installed copy
188 of the neon library.
189 </para>
190 <indexterm zone="neon neon-config">
191 <primary sortas="b-neon-config">neon-config</primary>
192 </indexterm>
193 </listitem>
194 </varlistentry>
195
196 <varlistentry id="libneon">
197 <term><filename class="libraryfile">libneon.so</filename></term>
198 <listitem>
199 <para>
200 is used as a high-level interface to common HTTP and WebDAV
201 methods.
202 </para>
203 <indexterm zone="neon libneon">
204 <primary sortas="c-libneon">libneon.so</primary>
205 </indexterm>
206 </listitem>
207 </varlistentry>
208
209 </variablelist>
210
211 </sect2>
212
213</sect1>
Note: See TracBrowser for help on using the repository browser.