Changeset e0850a7 for chapter08


Ignore:
Timestamp:
06/09/2024 10:30:21 PM (3 months ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib
Children:
7f3f152
Parents:
30d408c (diff), 2ef9bea (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Automatic merge of trunk into multilib

Location:
chapter08
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter08/expect.xml

    r30d408c re0850a7  
    7777            --with-tcl=/usr/lib     \
    7878            --enable-shared         \
     79            --disable-rpath         \
    7980            --mandir=/usr/share/man \
    8081            --with-tclinclude=/usr/include</userinput></screen>
  • chapter08/readline.xml

    r30d408c re0850a7  
    5050sed -i '/{OLDSUFF}/c:' support/shlib-install</userinput></screen>
    5151
     52    <para>Prevent hard coding library search paths (rpath) into
     53    the shared libraries.  This package does not need rpath for an
     54    installation into the standard location, and rpath may sometimes cause
     55    unwanted effects or even security issues:</para>
     56
     57<screen><userinput>sed -i 's/-Wl,-rpath,[^ ]*//' support/shobj-conf</userinput></screen>
     58
    5259    <para>Now fix a problem identified upstream:</para>
    5360
  • chapter08/tcl.xml

    r30d408c re0850a7  
    5656cd unix
    5757./configure --prefix=/usr           \
    58             --mandir=/usr/share/man</userinput></screen>
     58            --mandir=/usr/share/man \
     59            --disable-rpath</userinput></screen>
     60
     61    <variablelist>
     62      <title>The meaning of the new configure parameters:</title>
     63
     64      <varlistentry>
     65        <term><parameter>--disable-rpath</parameter></term>
     66        <listitem>
     67          <para>This parameter prevents hard coding library search paths
     68          (rpath) into the binary executable files and shared libraries.
     69          This package does not need rpath for an installation into the
     70          standard location, and rpath may sometimes cause unwanted effects
     71          or even security issues.</para>
     72        </listitem>
     73      </varlistentry>
     74    </variablelist>
    5975
    6076    <para>Build the package:</para>
Note: See TracChangeset for help on using the changeset viewer.