source: general/genlib/libxml2.xml@ 31120d7c

12.0 12.1 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 31120d7c was d96a39e, checked in by Douglas R. Reno <renodr@…>, 13 months ago

Update to libxml2-2.10.4 (Security Update)

  • Property mode set to 100644
File size: 8.4 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 <!-- Also update the download, md5, size entities in libxml2py2.xml -->
8 <!ENTITY libxml2-download-http "https://download.gnome.org/sources/libxml2/2.10/libxml2-&libxml2-version;.tar.xz">
9<!-- <!ENTITY libxml2-download-http "http://xmlsoft.org/sources/libxml2-&libxml2-version;.tar.xz">-->
10 <!ENTITY libxml2-download-ftp " ">
11 <!ENTITY libxml2-md5sum "76808c467a58c31e2dbd511e71d5fd13">
12 <!ENTITY libxml2-size "2.5 MB">
13 <!ENTITY libxml2-buildsize "106 MB (with tests)">
14 <!ENTITY libxml2-time "0.4 SBU (Using parallelism=4; with tests)">
15 <!ENTITY testsuite-version "20130923">
16]>
17
18<sect1 id="libxml2" xreflabel="libxml2-&libxml2-version;">
19 <?dbhtml filename="libxml2.html"?>
20
21
22 <title>libxml2-&libxml2-version;</title>
23
24 <indexterm zone="libxml2">
25 <primary sortas="a-libxml2">libxml2</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to libxml2</title>
30
31 <para>
32 The <application>libxml2</application> package contains libraries
33 and utilities used for parsing XML files.
34 </para>
35
36 &lfs113_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>
42 Download (HTTP): <ulink url="&libxml2-download-http;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download (FTP): <ulink url="&libxml2-download-ftp;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download MD5 sum: &libxml2-md5sum;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download size: &libxml2-size;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated disk space required: &libxml2-buildsize;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated build time: &libxml2-time;
68 </para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
73 <itemizedlist spacing="compact">
74 <listitem>
75 <para>
76 Optional Test Suite:
77 <ulink url="https://www.w3.org/XML/Test/xmlts&testsuite-version;.tar.gz"/> - This
78 enables <command>make check</command> to do complete testing.
79 </para>
80 </listitem>
81 </itemizedlist>
82
83 <bridgehead renderas="sect3">libxml2 Dependencies</bridgehead>
84<!-- do not advertize python2 here, except in the note below
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="python2"/>
88 </para>
89-->
90 <bridgehead renderas="sect4">Optional</bridgehead>
91 <para role="optional">
92 <xref linkend="icu"/> (see below) and
93 <xref linkend="valgrind"/> (may be used in the tests)
94 </para>
95
96 <note>
97 <para>
98 The old <application>Python2</application> module can be built after
99 <filename class="libraryfile">libxml2.so</filename> has been installed,
100 see <xref linkend="libxml2py2"/>.
101 </para>
102 </note>
103
104 <para condition="html" role="usernotes">
105 User Notes: <ulink url="&blfs-wiki;/libxml2"/>
106 </para>
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of libxml2</title>
111
112 <para>
113 Install <application>libxml2</application> by running the following
114 commands:
115 </para>
116
117<screen><userinput>./configure --prefix=/usr \
118 --sysconfdir=/etc \
119 --disable-static \
120 --with-history \
121 PYTHON=/usr/bin/python3 \
122 --docdir=/usr/share/doc/libxml2-&libxml2-version; &amp;&amp;
123make</userinput></screen>
124
125 <para>
126 If you downloaded the test suite, issue the following command:
127 </para>
128
129<screen><userinput>tar xf ../xmlts&testsuite-version;.tar.gz</userinput></screen>
130
131 <para>
132 To test the results, issue: <command>make check &gt; check.log</command>.
133 A summary of the results can be obtained with <command>grep -E
134 '^Total|expected' check.log</command>. If <xref linkend="valgrind"/> is
135 installed and you want to check for memory leaks, replace
136 <command>check</command> with <command>check-valgrind</command>.
137 </para>
138
139 <note>
140 <para>
141 The tests use <ulink url="http://localhost/">http://localhost/</ulink>
142 to test parsing of external entities. If the machine where you run the
143 tests serves as a web site, the tests may hang, depending on the
144 content of the file served. It is therefore recommended to shut down
145 the server during the tests, as the <systemitem
146 class="username">root</systemitem> user:
147 </para>
148
149<screen role="nodump" revision="sysv"><userinput>/etc/init.d/httpd stop</userinput></screen>
150<screen role="nodump" revision="systemd"><userinput>systemctl stop httpd.service</userinput></screen>
151
152 </note>
153
154 <para>
155 Now, as the <systemitem class="username">root</systemitem> user:
156 </para>
157
158<screen role="root"><userinput>make install</userinput></screen>
159 </sect2>
160
161 <sect2 role="commands">
162 <title>Command Explanations</title>
163
164 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
165 href="../../xincludes/static-libraries.xml"/>
166
167 <para>
168 <parameter>--with-history</parameter>: This switch enables
169 <application>Readline</application> support when running
170 <command>xmlcatalog</command> or <command>xmllint</command> in shell mode.
171 </para>
172
173 <para>
174 <parameter>PYTHON=/usr/bin/python3</parameter>: Allows building
175 the libxml2 module with Python3 instead of Python2.
176 </para>
177
178 <para>
179 <option>--with-icu</option>: Add this switch if you have built
180 <xref linkend="icu"/>, for better unicode support.
181 </para>
182
183 </sect2>
184
185 <sect2 role="content">
186 <title>Contents</title>
187
188 <segmentedlist>
189 <segtitle>Installed Programs</segtitle>
190 <segtitle>Installed Libraries</segtitle>
191 <segtitle>Installed Directories</segtitle>
192
193 <seglistitem>
194 <seg>
195 xml2-config,
196 xmlcatalog, and
197 xmllint
198 </seg>
199 <seg>
200 libxml2.so
201 </seg>
202 <seg>
203 /usr/include/libxml2,
204 /usr/lib/cmake/libxml2,
205 /usr/share/doc/libxml2-&libxml2-version;, and
206 /usr/share/gtk-doc/html/libxml2
207 </seg>
208 </seglistitem>
209 </segmentedlist>
210
211 <variablelist>
212 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
213 <?dbfo list-presentation="list"?>
214 <?dbhtml list-presentation="table"?>
215
216 <varlistentry id="xml2-config">
217 <term><command>xml2-config</command></term>
218 <listitem>
219 <para>
220 determines the compile and linker flags that should be used to
221 compile and link programs that use
222 <filename class="libraryfile">libxml2</filename>
223 </para>
224 <indexterm zone="libxml2 xml2-config">
225 <primary sortas="b-xml2-config">xml2-config</primary>
226 </indexterm>
227 </listitem>
228 </varlistentry>
229
230 <varlistentry id="xmlcatalog">
231 <term><command>xmlcatalog</command></term>
232 <listitem>
233 <para>
234 is used to monitor and manipulate XML and SGML catalogs
235 </para>
236 <indexterm zone="libxml2 xmlcatalog">
237 <primary sortas="b-xmlcatalog">xmlcatalog</primary>
238 </indexterm>
239 </listitem>
240 </varlistentry>
241
242 <varlistentry id="xmllint">
243 <term><command>xmllint</command></term>
244 <listitem>
245 <para>
246 parses XML files and outputs reports (based upon options) to detect
247 errors in XML coding
248 </para>
249 <indexterm zone="libxml2 xmllint">
250 <primary sortas="b-xmllint">xmllint</primary>
251 </indexterm>
252 </listitem>
253 </varlistentry>
254
255 <varlistentry id="libxml2-lib">
256 <term><filename class="libraryfile">libxml2.so</filename></term>
257 <listitem>
258 <para>
259 provides functions for programs to parse files that use the XML
260 format
261 </para>
262 <indexterm zone="libxml2 libxml2-lib">
263 <primary sortas="c-libxml2">libxml2.so</primary>
264 </indexterm>
265 </listitem>
266 </varlistentry>
267
268 </variablelist>
269
270 </sect2>
271
272</sect1>
Note: See TracBrowser for help on using the repository browser.