Changeset 985d9e0


Ignore:
Timestamp:
09/15/2014 07:23:10 PM (10 years ago)
Author:
Fernando de Oliveira <fernando@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, 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, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
b7068390
Parents:
cf24093
Message:

ICU-53.1: not anymore broken with clang++.
Revert 'add optional instructions for sqlite-tcl to SQLite-3.8.6'.

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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rcf24093 r985d9e0  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "14">                   <!-- Always 2 digits -->
     3<!ENTITY day          "15">                   <!-- Always 2 digits -->
    44<!ENTITY month        "09">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2014">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "September 14th, &year;">
     9<!ENTITY releasedate  "September 15th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • general/genlib/icu.xml

    rcf24093 r985d9e0  
    9595
    9696<screen><userinput>cd source &amp;&amp;
    97 CXX=g++ ./configure --prefix=/usr &amp;&amp;
     97./configure --prefix=/usr &amp;&amp;
    9898make</userinput></screen>
    9999
     
    113113
    114114    <para>
    115       <envar>CXX=g++</envar>: This environment variable forces use of
    116       <command>g++</command> compiler since building with
    117       <command>clang++</command> is currently broken.
     115
     116      <envar>CXX=g++</envar>: If you prefer, this environment variable, used in
     117      the configure line, forces use of <command>g++</command> compiler insted
     118      of <command>clang++</command>, if the latter is installed.
     119
    118120    </para>
    119121
  • general/prog/tcl.xml

    rcf24093 r985d9e0  
    124124    </para>
    125125
    126 <screen><userinput>rm -rf pkgs/sqlite3.8.6 &amp;&amp;
    127 export SRCDIR=`pwd`     &amp;&amp;
     126<screen><userinput>export SRCDIR=`pwd` &amp;&amp;
    128127
    129128cd unix &amp;&amp;
     
    211210
    212211    <para>
    213       <command>rm -rf pkgs/sqlite3.8.6 </command>: <application>SQLite Tcl
    214       Extension Architecture (TEA)</application> is removed, because it is
    215       optionally installed by <xref linkend="sqlite"/>
    216     </para>
    217 
    218     <para>
    219212      <command>sed -e ...</command>: The <application>Tcl</application> package
    220213      expects that its source tree is preserved so that packages depending on
     
    243236        <seg>
    244237          /usr/lib/itcl4.0.1,
     238          /usr/lib/sqlite3.8.6
    245239          /usr/lib/tcl8,
    246240          /usr/lib/tcl&tcl-ver;,
  • introduction/welcome/changelog.xml

    rcf24093 r985d9e0  
    4444
    4545-->
     46
     47    <listitem>
     48      <para>September 14th, 2014</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[fernando] - Revert 'add optional instructions for sqlite-tcl to
     52          SQLite-3.8.6'. Fixes
     53          <ulink url="&blfs-ticket-root;5512">#5512</ulink>.</para>
     54        </listitem>
     55        <listitem>
     56          <para>[fernando] - ICU-53.1: not anymore broken with clang++.</para>
     57        </listitem>
     58      </itemizedlist>
     59    </listitem>
    4660
    4761    <listitem>
  • server/databases/sqlite.xml

    rcf24093 r985d9e0  
    105105    <bridgehead renderas="sect4">Optional</bridgehead>
    106106    <para role="optional">
    107       <xref linkend="tcl"/> (required to build <application>SQLite Tcl
    108       Extension Architecture - TEA</application>, also know as
    109       <application>sqlite-tcl</application>) and
    110107      <xref linkend="unzip"/> (required to unzip the documentation)
    111108    </para>
     
    139136
    140137    <para>
    141       If you wish to install <application>sqlite-tcl</application>, run the
    142       following commands:
    143     </para>
    144 
    145 <screen><userinput>cd tea &amp;&amp;
    146 ./configure --prefix=/usr --with-system-sqlite &amp;&amp;
    147 make &amp;&amp;
    148 cd ..</userinput></screen>
    149 
    150     <para>
    151138      This package does not come with a test suite.
    152139    </para>
     
    165152<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/sqlite-&sqlite-version; &amp;&amp;
    166153cp -v -R sqlite-doc-&sqlite-doc-version;/* /usr/share/doc/sqlite-&sqlite-version;</userinput></screen>
    167 
    168     <para>
    169       If you decided to install <application>sqlite-tcl</application>, issue
    170       the following commands as the
    171       <systemitem class="username">root</systemitem> user:
    172     </para>
    173 
    174 <screen><userinput>cd tea       &amp;&amp;
    175 make install &amp;&amp;
    176 cd ..</userinput></screen>
    177154
    178155  </sect2>
     
    204181    <segmentedlist>
    205182      <segtitle>Installed Program</segtitle>
    206       <segtitle>Installed Libraries</segtitle>
    207       <segtitle>Installed Directories</segtitle>
     183      <segtitle>Installed Library</segtitle>
     184      <segtitle>Installed Directory</segtitle>
    208185
    209186      <seglistitem>
     
    212189        </seg>
    213190        <seg>
    214           libsqlite3.so and (optionally)
    215           /usr/lib/sqlite&sqlite-version;/libsqlite&sqlite-version;.so
     191          libsqlite3.so
    216192        </seg>
    217193        <seg>
    218           /usr/lib/sqlite&sqlite-version; (optionally) and
    219194          /usr/share/doc/sqlite-&sqlite-version;
    220195        </seg>
Note: See TracChangeset for help on using the changeset viewer.