source: general/genlib/nspr.xml@ 1353bb4

systemd-13485
Last change on this file since 1353bb4 was 1353bb4, checked in by Douglas R. Reno <renodr@…>, 8 years ago

Update to LibRaw-0.17.2
Update to libevdev-1.5.1
Above merged from trunk r17363.
GCC6 Tags

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

  • Property mode set to 100644
File size: 6.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 nspr-download-http "https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v&nspr-version;/src/nspr-&nspr-version;.tar.gz">
8<!-- <!ENTITY nspr-download-ftp "ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v&nspr-version;/src/nspr-&nspr-version;.tar.gz">-->
9 <!ENTITY nspr-download-ftp " ">
10 <!ENTITY nspr-md5sum "0de760c1e00a92e180e611cf06ce9589">
11 <!ENTITY nspr-size "1.1 MB">
12 <!ENTITY nspr-buildsize "12 MB">
13 <!ENTITY nspr-time "less than 0.1 SBU">
14]>
15
16<sect1 id="nspr" xreflabel="NSPR-&nspr-version;">
17 <?dbhtml filename="nspr.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>NSPR-&nspr-version;</title>
25
26 <indexterm zone="nspr">
27 <primary sortas="a-NSPR">NSPR</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to NSPR</title>
32
33 <para>
34 <application>The Netscape Portable Runtime</application> (NSPR) provides a
35 platform-neutral API for system level and libc like functions.
36 </para>
37
38 &lfs79_checked;
39
40 &gcc6_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&nspr-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&nspr-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &nspr-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &nspr-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &nspr-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &nspr-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <para condition="html" role="usernotes">
77 User Notes: <ulink url="&blfs-wiki;/nspr"/>
78 </para>
79 </sect2>
80
81 <sect2 role="installation">
82 <title>Installation of NSPR</title>
83
84 <para>
85 Install <application>NSPR</application> by running the following commands:
86 </para>
87
88<screen><userinput>cd nspr &amp;&amp;
89sed -ri 's#^(RELEASE_BINS =).*#\1#' pr/src/misc/Makefile.in &amp;&amp;
90sed -i 's#$(LIBRARY) ##' config/rules.mk &amp;&amp;
91
92./configure --prefix=/usr \
93 --with-mozilla \
94 --with-pthreads \
95 $([ $(uname -m) = x86_64 ] &amp;&amp; echo --enable-64bit) &amp;&amp;
96make</userinput></screen>
97
98 <para>
99 This package does not come with a test suite.
100 </para>
101
102 <para>
103 Now, as the <systemitem class="username">root</systemitem> user:
104 </para>
105
106<screen role="root"><userinput>make install</userinput></screen>
107 </sect2>
108
109 <sect2 role="commands">
110 <title>Command Explanations</title>
111
112 <para>
113 <command>sed -ri 's#^(RELEASE_BINS =).*#\1#'
114 pr/src/misc/Makefile.in</command>: This sed disables installing two unneeded
115 scripts.
116 </para>
117
118 <para>
119 <command>sed -i 's#$(LIBRARY) ##' config/rules.mk</command>: This sed disables
120 installing the static libraries.
121 </para>
122
123 <para>
124 <parameter>--with-mozilla</parameter>: This parameter adds Mozilla support
125 to the libraries (required if you want to build any other Mozilla
126 products and link them to these libraries).
127 </para>
128
129 <para>
130 <parameter>--with-pthreads</parameter>: This parameter forces use of the
131 system pthread library.
132 </para>
133
134 <para>
135 <parameter>$([ $(uname -m) = x86_64 ] &amp;&amp; echo
136 --enable-64bit)</parameter>: The --enable-64bit parameter is
137 <emphasis>required</emphasis> on an x86_64 system to prevent
138 <command>configure</command> failing with a claim that this is a system
139 without pthread support. The [ $(uname -m) = x86_64 ] test ensures it has
140 no effect on a 32 bit system.
141 </para>
142
143 </sect2>
144
145 <sect2 role="content">
146 <title>Contents</title>
147
148 <segmentedlist>
149 <segtitle>Installed Programs</segtitle>
150 <segtitle>Installed Libraries</segtitle>
151 <segtitle>Installed Directories</segtitle>
152
153 <seglistitem>
154 <seg>
155 nspr-config
156 </seg>
157 <seg>
158 libnspr4.so, libplc4.so and libplds4.so
159 </seg>
160 <seg>
161 /usr/include/nspr
162 </seg>
163 </seglistitem>
164 </segmentedlist>
165
166 <variablelist>
167 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
168 <?dbfo list-presentation="list"?>
169 <?dbhtml list-presentation="table"?>
170
171 <varlistentry id="nspr-config">
172 <term><command>nspr-config</command></term>
173 <listitem>
174 <para>
175 provides compiler and linker options to other packages that use
176 <application>NSPR</application>.
177 </para>
178 <indexterm zone="nspr nspr-config">
179 <primary sortas="b-nspr-config">nspr-config</primary>
180 </indexterm>
181 </listitem>
182 </varlistentry>
183
184 <varlistentry id="libnspr4">
185 <term><filename class='libraryfile'>libnspr4.so</filename></term>
186 <listitem>
187 <para>
188 contains functions that provide platform independence for non-GUI
189 operating system facilities such as threads, thread synchronization,
190 normal file and network I/O, interval timing and calendar time,
191 basic memory management and shared library linking.
192 </para>
193 <indexterm zone="nspr libnspr4">
194 <primary sortas="c-libnspr4">libnspr4.so</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry id="libplc4">
200 <term><filename class='libraryfile'>libplc4.so</filename></term>
201 <listitem>
202 <para>
203 contains functions that implement many of the features offered by
204 libnspr4
205 </para>
206 <indexterm zone="nspr libplc4">
207 <primary sortas="c-libplc4">libplc4.so</primary>
208 </indexterm>
209 </listitem>
210 </varlistentry>
211
212 <varlistentry id="libplds4">
213 <term><filename class='libraryfile'>libplds4.so</filename></term>
214 <listitem>
215 <para>
216 contains functions that provide data structures.
217 </para>
218 <indexterm zone="nspr libplds4">
219 <primary sortas="c-libplds4">libplds4.so</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223
224 </variablelist>
225
226 </sect2>
227
228</sect1>
Note: See TracBrowser for help on using the repository browser.