Changeset 90f49b3


Ignore:
Timestamp:
03/11/2021 09:38:40 PM (3 years ago)
Author:
Ken Moffat <ken@…>
Branches:
11.0, 11.1, 11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, 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:
af85ac3
Parents:
4f808b6
Message:

Fix segfault when urxvt shuts down.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r4f808b6 r90f49b3  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "10">                   <!-- Always 2 digits -->
     3<!ENTITY day          "11">                   <!-- Always 2 digits -->
    44<!ENTITY month        "03">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2021">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "March 10th, &year;">
     9<!ENTITY releasedate  "March 11th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    r4f808b6 r90f49b3  
    4343    -->
    4444    <listitem>
     45      <para>March 11th, 2021</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[ken] - Prevent a (mostly harmless) segfault when a urxvt
     49          term (from rxvt-unicode) shuts down.</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
     54    <listitem>
    4555      <para>March 10th, 2021</para>
    4656      <itemizedlist>
  • xsoft/other/rxvt-unicode.xml

    r4f808b6 r90f49b3  
    110110    </para>
    111111
    112 <screen><userinput>./configure --prefix=/usr --enable-everything &amp;&amp;
     112<screen><userinput>sed -i '/if (perl)/,+5d' src/rxvtperl.xs      &amp;&amp;
     113./configure --prefix=/usr --enable-everything &amp;&amp;
    113114make</userinput></screen>
    114115
     
    127128  <sect2 role="commands">
    128129    <title>Command Explanations</title>
     130
     131    <para>
     132      <command>sed -i '/if (perl)/,+5d' src/rxvtperl.xs</command>:
     133      This prevents a segmentation fault when closing a urxvt terminal,
     134      caused by deallocating a private environment copy before destructing
     135      the perl interpreter which calls getenv().
     136      <!--https://bugzilla.redhat.com/show_bug.cgi?id=1894917
     137          http://lists.schmorp.de/pipermail/rxvt-unicode/2020q2/002583.html -->
     138    </para>
    129139
    130140    <para>
Note: See TracChangeset for help on using the changeset viewer.