source: general/genlib/pth.xml@ d8069d7

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 d8069d7 was d8069d7, checked in by Bruce Dubbs <bdubbs@…>, 13 years ago

Update to Berkeley DB-5.2.36.
Add sharutils-4.11.
Update to tcl-8.5.10.
Update to libpng-1.5.5.
Update to jpeg-8c.
Update to libffi-3.0.10.

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

  • Property mode set to 100644
File size: 4.7 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 pth-download-http "http://ftp.gnu.org/gnu/pth/pth-&pth-version;.tar.gz">
8 <!ENTITY pth-download-ftp "ftp://ftp.gnu.org/gnu/pth/pth-&pth-version;.tar.gz">
9 <!ENTITY pth-md5sum "9cb4a25331a4c4db866a31cbe507c793">
10 <!ENTITY pth-size "652 KB">
11 <!ENTITY pth-buildsize "5 MB">
12 <!ENTITY pth-time "0.2 SBU">
13]>
14
15<sect1 id="pth" xreflabel="Pth-&pth-version;">
16 <?dbhtml filename="pth.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Pth-&pth-version;</title>
24
25 <indexterm zone="pth">
26 <primary sortas="a-Pth">Pth</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Pth</title>
31
32 <para>The <application>Pth</application> package contains a very portable
33 POSIX/ANSI-C based library for Unix platforms which provides non-preemptive
34 priority-based scheduling for multiple threads of execution (multithreading)
35 inside event-driven applications. All threads run in the same address space
36 of the server application, but each thread has its own individual
37 program-counter, run-time stack, signal mask and errno variable. </para>
38
39 &lfs70_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>Download (HTTP): <ulink url="&pth-download-http;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download (FTP): <ulink url="&pth-download-ftp;"/></para>
48 </listitem>
49 <listitem>
50 <para>Download MD5 sum: &pth-md5sum;</para>
51 </listitem>
52 <listitem>
53 <para>Download size: &pth-size;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated disk space required: &pth-buildsize;</para>
57 </listitem>
58 <listitem>
59 <para>Estimated build time: &pth-time;</para>
60 </listitem>
61 </itemizedlist>
62
63 <para condition="html" role="usernotes">User Notes:
64 <ulink url="&blfs-wiki;/pth"/></para>
65
66 </sect2>
67
68 <sect2 role="installation">
69 <title>Installation of Pth</title>
70
71 <caution>
72 <para>Don't add the <option>--enable-pthread</option> parameter to the
73 <command>configure</command> command below else you will overwrite the
74 pthread library and interface header installed by the
75 <application>Glibc</application> package in LFS.</para>
76 </caution>
77
78 <para>Install <application>Pth</application> by running the
79 following commands:</para>
80
81<screen><userinput>./configure --prefix=/usr &amp;&amp;
82make</userinput></screen>
83
84 <para>To test the results, issue: <command>make check</command>.</para>
85
86 <para>Now, as the <systemitem class="username">root</systemitem>
87 user:</para>
88
89<screen role="root"><userinput>make install &amp;&amp;
90install -v -m755 -d /usr/share/doc/pth-&pth-version; &amp;&amp;
91install -v -m644 README PORTING SUPPORT TESTS \
92 /usr/share/doc/pth-&pth-version;</userinput></screen>
93
94 </sect2>
95
96 <sect2 role="content">
97 <title>Contents</title>
98
99 <segmentedlist>
100 <segtitle>Installed Program</segtitle>
101 <segtitle>Installed Library</segtitle>
102 <segtitle>Installed Directory</segtitle>
103
104 <seglistitem>
105 <seg>pth-config</seg>
106 <seg>libpth.{so,a}</seg>
107 <seg>/usr/share/doc/pth-&pth-version;</seg>
108 </seglistitem>
109 </segmentedlist>
110
111 <variablelist>
112 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
113 <?dbfo list-presentation="list"?>
114 <?dbhtml list-presentation="table"?>
115
116 <varlistentry id="pth-config">
117 <term><command>pth-config</command></term>
118 <listitem>
119 <para>is a utility used to configure and build applications based on
120 the pth(3) library. It can be used to query the C compiler and
121 linker flags which are required to correctly compile and link the
122 application against the pth(3) library.</para>
123 <indexterm zone="pth pth-config">
124 <primary sortas="b-pth-config">pth-config</primary>
125 </indexterm>
126 </listitem>
127 </varlistentry>
128
129 <varlistentry id="libpth">
130 <term><filename class='libraryfile'>libpth.{so,a}</filename></term>
131 <listitem>
132 <para>contains the API functions used by the GNU Portable Threads
133 Library.</para>
134 <indexterm zone="pth libpth">
135 <primary sortas="c-libpth">libpth.{so,a}</primary>
136 </indexterm>
137 </listitem>
138 </varlistentry>
139
140 </variablelist>
141
142 </sect2>
143
144</sect1>
Note: See TracBrowser for help on using the repository browser.