Changeset bb04e2c5


Ignore:
Timestamp:
09/21/2017 08:32:20 PM (7 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, 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:
b925752c
Parents:
babf0a0
Message:

Fix gtk-xfce-engine for glib-2.54.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rbabf0a0 rbb04e2c5  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "20">                   <!-- Always 2 digits -->
     3<!ENTITY day          "21">                   <!-- Always 2 digits -->
    44<!ENTITY month        "09">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2017">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "September 20th, &year;">
     9<!ENTITY releasedate  "September 21st, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    rbabf0a0 rbb04e2c5  
    4343-->
    4444    <listitem>
     45      <para>September 21st, 2017</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[ken] - Fix gtk-xfce-engine-3.2.0 for glib-2.54 (glib-mkenum has
     49          been rewritten in python and crashes on an ISO-8859-1 character). Fixes
     50          <ulink url="&blfs-ticket-root;9783">#9783</ulink>.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55    <listitem>
    4556      <para>September 20th, 2017</para>
    4657      <itemizedlist>
  • xfce/core/gtk-xfce-engine.xml

    rbabf0a0 rbb04e2c5  
    100100    </para>
    101101
    102 <screen><userinput>./configure --prefix=/usr --enable-gtk3 &amp;&amp;
     102<screen><userinput>sed -i 's/\xd6/\xc3\x96/' gtk-3.0/xfce_style_types.h &amp;&amp;
     103./configure --prefix=/usr --enable-gtk3              &amp;&amp;
    103104make</userinput></screen>
    104105
     
    112113
    113114<screen role="root"><userinput>make install</userinput></screen>
     115
     116  </sect2>
     117
     118  <sect2 role="commands">
     119    <title>Command Explanations</title>
     120
     121    <para>
     122      <command>sed -i 's/\xd6/\xc3\x96/' ...</command>: The script
     123      <command>glib-mkenums</command> has now been rewritten from
     124      <application>perl</application> to <application>python</application>
     125      and will crash when it encounters an ISO-8859-1 character in a comment.
     126      This sed converts that character to UTF-8.
     127    </para>
    114128
    115129  </sect2>
Note: See TracChangeset for help on using the changeset viewer.