source: general/genlib/nspr.xml@ 839ac504

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 839ac504 was fda1167, checked in by Krejzi <krejzi@…>, 11 years ago

Package updates.

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

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