Changeset db32c4c


Ignore:
Timestamp:
06/07/2012 11:38:52 AM (12 years ago)
Author:
Andrew Benton <andy@…>
Branches:
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
Children:
efd03f7
Parents:
3d9aec91
Message:

nspr-4.9.1

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r3d9aec91 rdb32c4c  
    225225<!ENTITY libxslt-version              "1.1.26">
    226226<!ENTITY LZO-version                  "2.06">
    227 <!ENTITY nspr-version                 "4.9">
     227<!ENTITY nspr-version                 "4.9.1">
    228228<!ENTITY pcre-version                 "8.30">
    229229<!ENTITY popt-version                 "1.16">
  • general/genlib/nspr.xml

    r3d9aec91 rdb32c4c  
    99  <!ENTITY nspr-download-ftp
    1010  "ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v&nspr-version;/src/nspr-&nspr-version;.tar.gz">
    11   <!ENTITY nspr-md5sum        "aa0c960b23a9d66a3c30c3e6ba80a99a">
     11  <!ENTITY nspr-md5sum        "d36d7b65a38f5b43ebd50ad3ad227120">
    1212  <!ENTITY nspr-size          "1.2 MB">
    1313  <!ENTITY nspr-buildsize     "15 MB">
     
    8686
    8787<screen><userinput>cd mozilla/nsprpub &amp;&amp;
    88 sed -i 's#^\(RELEASE_BINS =\).*#\1#' pr/src/misc/Makefile.in &amp;&amp;
    89 sed -i 's#$(LIBRARY) ##' config/rules.mk &amp;&amp;
    90 ./configure --prefix=/usr --with-mozilla --with-pthreads \
    91   $([ $(uname -m) = x86_64 ] &amp;&amp; echo --enable-64bit) &amp;&amp;
     88sed -ri 's#^(RELEASE_BINS =).*#\1#' pr/src/misc/Makefile.in &amp;&amp;
     89sed -i 's#$(LIBRARY) ##' config/rules.mk                     &amp;&amp;
     90./configure --prefix=/usr --with-mozilla --with-pthreads     \
     91  $([ $(uname -m) = x86_64 ] &amp;&amp; echo --enable-64bit)         &amp;&amp;
    9292make</userinput></screen>
    9393
     
    101101
    102102<screen role="root"><userinput>make install &amp;&amp;
    103 
    104103cat &gt; /usr/lib/pkgconfig/nspr.pc &lt;&lt; "HERE_DOC"
    105104prefix=/usr
     
    131130
    132131    <para>
    133       <parameter>$([ $(uname -m) ... --enable-64bit</parameter>: This parameter is
    134       required <emphasis>on an x86_64 system</emphasis> to prevent
     132      <parameter>$([ $(uname -m) = x86_64 ] &amp;&amp; echo
     133      --enable-64bit)</parameter>: The --enable-64bit option is
     134      <emphasis>required</emphasis> on an x86_64 system to prevent
    135135      <command>configure</command> failing with a claim that this is a system
    136       without pthread support. It has no effect on a 32 bit system.
    137     </para>
    138 
    139     <para>
    140       <command>sed -i 's#^\(RELEASE_BINS ...</command>: This disables installing
    141       two unneeded scripts.
     136      without pthread support. The [ $(uname -m) = x86_64 ] test ensures it has
     137      no effect on a 32 bit system.
     138    </para>
     139
     140    <para>
     141      <command>sed -ri 's#^(RELEASE_BINS =).*#\1#'
     142      pr/src/misc/Makefile.in</command>: This disables installing two unneeded
     143      scripts.
    142144    </para>
    143145
     
    147149    </para>
    148150
    149     <para><command>cat &gt; /usr/lib/pkgconfig/nspr.pc ...</command>Create a
    150      pkg-config file to help other programs finding the nspr libraries.</para>
     151    <para>
     152      <command>cat &gt; /usr/lib/pkgconfig/nspr.pc ...</command>: This creates a
     153      pkg-config file to help other programs find the nspr libraries.
     154    </para>
    151155
    152156  </sect2>
  • introduction/welcome/changelog.xml

    r3d9aec91 rdb32c4c  
    5454          <para>[abenton] - Updated NSS to 3.13.5.</para>
    5555        </listitem>
     56        <listitem>
     57          <para>[abenton] - Updated NSPR to 4.9.1.</para>
     58        </listitem>
    5659      </itemizedlist>
    5760    </listitem>
Note: See TracChangeset for help on using the changeset viewer.