Changeset 33fd7e43


Ignore:
Timestamp:
05/07/2006 03:58:14 AM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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:
dea1509
Parents:
04be25f
Message:

Modified the Tcl and Tk instructions to install the library interface headers using the maintainer's recommended method and removed all the hacks from previous installation methods

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r04be25f r33fd7e43  
    1 <!ENTITY day          "06">                   <!-- Always 2 digits -->
     1<!ENTITY day          "07">                   <!-- Always 2 digits -->
    22<!ENTITY month        "05">                   <!-- Always 2 digits -->
    33<!ENTITY year         "2006">
  • general/prog/tcl.xml

    r04be25f r33fd7e43  
    8080    commands:</para>
    8181
    82 <screen><userinput>cd unix &amp;&amp;
    83 ./configure --prefix=/usr --enable-threads &amp;&amp;
    84 make &amp;&amp;
     82<!-- This is removed per discussion and fairly vigorous testing
    8583sed -i -e "s:${PWD}:/usr/lib:" \
    8684       -e "s:$(dirname ${PWD}):/usr/include/tcl&tcl-ver;:" \
    8785       -e "/TCL_LIB_FILE/ s:':\":g" \
    88     tclConfig.sh</userinput></screen>
     86    tclConfig.sh
     87-->
     88
     89<screen><userinput>cd unix &amp;&amp;
     90./configure --prefix=/usr --enable-threads &amp;&amp;
     91make</userinput></screen>
    8992
    9093    <para>To test the results, issue: <command>make test</command>.</para>
     
    9396
    9497<screen role="root"><userinput>make install &amp;&amp;
     98make install-private-headers &amp;&amp;
     99ln -v -sf tclsh&tcl-ver; /usr/bin/tclsh</userinput></screen>
     100
     101<!-- This is removed per discussion and fairly vigorous testing
    95102install -v -d /usr/include/tcl&tcl-ver;/{unix,generic} &amp;&amp;
    96103install -v -m644 *.h /usr/include/tcl&tcl-ver;/unix/ &amp;&amp;
     
    99106ln -v -nsf ../../include/tcl&tcl-ver; /usr/lib/tcl&tcl-ver;/include &amp;&amp;
    100107ln -v -sf libtcl&tcl-ver;.so /usr/lib/libtcl.so &amp;&amp;
    101 ln -v -sf tclsh&tcl-ver; /usr/bin/tclsh</userinput></screen>
     108-->
    102109
    103110  </sect2>
     
    109116    to build with thread support.</para>
    110117
     118    <para><command>make install-private-headers</command>: This command is
     119    used to install the <application>Tcl</application> library interface
     120    headers used by other packages if they link to the
     121    <application>Tcl</application> library.</para>
     122
     123    <para><command>ln -v -sf tclsh&tcl-ver; /usr/bin/tclsh</command>: This
     124    command is used to create a compatibility symbolic link to the
     125    <command>tclsh&tcl-ver;</command> file as many packages expect a file
     126    named <command>tclsh</command>.</para>
     127
     128    <!-- This is removed per discussion and fairly vigorous testing
    111129    <para><command>sed -i -e ... tclConfig.sh</command>: The
    112130    <application>Tcl</application> package expects that its source tree is
     
    120138    <para><command>ln -v -sf ...</command>: These commands create compatibility
    121139    symbolic links.</para>
     140    -->
    122141
    123142  </sect2>
  • general/prog/tk.xml

    r04be25f r33fd7e43  
    8080commands:</para>
    8181
    82 <screen><userinput>cd unix &amp;&amp;
    83 ./configure --prefix=/usr --enable-threads &amp;&amp;
    84 make &amp;&amp;
     82<!-- This is removed per discussion and fairly vigorous testing
    8583sed -i -e "s:${PWD}:/usr/lib:" \
    8684       -e "s:$(dirname ${PWD}):/usr/include/tk&tk-ver;:" \
    8785    tkConfig.sh</userinput></screen>
     86-->
     87
     88<screen><userinput>cd unix &amp;&amp;
     89./configure --prefix=/usr --enable-threads &amp;&amp;
     90make</userinput></screen>
    8891
    8992    <para>Running the tests is not recommended. Some tests may crash your X
     
    9598
    9699<screen role="root"><userinput>make install &amp;&amp;
     100make install-private-headers &amp;&amp;
     101ln -v -sf wish&tk-ver; /usr/bin/wish</userinput></screen>
     102
     103<!-- This is removed per discussion and fairly vigorous testing
    97104install -v -m755 -d /usr/include/tk&tk-ver;/{unix,generic} &amp;&amp;
    98105install -v -m644 *.h /usr/include/tk&tk-ver;/unix/ &amp;&amp;
     
    102109ln -v -sf libtk&tk-ver;.so /usr/lib/libtk.so &amp;&amp;
    103110ln -v -sf wish&tk-ver; /usr/bin/wish</userinput></screen>
     111-->
    104112
    105113  </sect2>
     
    111119    package to build with thread support.</para>
    112120
     121    <para><command>make install-private-headers</command>: This command is
     122    used to install the <application>Tk</application> library interface
     123    headers used by other packages if they link to the
     124    <application>Tk</application> library.</para>
     125
     126    <para><command>ln -v -sf wish&tk-ver; /usr/bin/wish</command>: This
     127    command is used to create a compatibility symbolic link to the
     128    <command>wish&tk-ver;</command> file as many packages expect a file
     129    named <command>wish</command>.</para>
     130
     131    <!-- This is removed per discussion and fairly vigorous testing
    113132    <para><command>sed -i -e ... tkConfig.sh</command>: The
    114133    <application>Tk</application> package expects that its source tree is
     
    122141    <para><command>ln -v -sf ...</command>: These commands create compatibility
    123142    symbolic links.</para>
     143    -->
    124144
    125145  </sect2>
  • introduction/welcome/changelog.xml

    r04be25f r33fd7e43  
    4343
    4444    <listitem>
     45      <para>May 7th, 2006</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Modified the Tcl and Tk instructions to install
     49          the library interface headers using the maintainer's recommended
     50          method and removed all the hacks from previous installation
     51          methods.</para>
     52        </listitem>
     53      </itemizedlist>
     54    </listitem>
     55
     56    <listitem>
    4557      <para>May 6th, 2006</para>
    4658      <itemizedlist>
Note: See TracChangeset for help on using the changeset viewer.