Changeset 66765fe


Ignore:
Timestamp:
02/07/2024 05:04:48 PM (3 months ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
12.1, ken/TL2024, lazarus, rahul/power-profiles-daemon, trunk, xry111/llvm18
Children:
bfcd313
Parents:
f93c7d2
Message:

Fix building WebKitGTK on i686 systems.

See https://bugs.webkit.org/show_bug.cgi?id=268739 and
https://github.com/WebKit/WebKit/commit/3d53735756

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rf93c7d2 r66765fe  
    3939    </listitem>
    4040    -->
     41
     42    <listitem>
     43      <para>February 7th, 2024</para>
     44      <itemizedlist>
     45        <listitem>
     46          <para>[renodr] - Fix building WebKitGTK on 32-bit systems.</para>
     47        </listitem>
     48      </itemizedlist>
     49    </listitem>
    4150
    4251    <listitem>
  • x/lib/webkitgtk.xml

    rf93c7d2 r66765fe  
    167167    </important>
    168168
    169 <!--
    170     <para>
    171       First, fix a build failure caused by libxml2-2.12.x:
    172     </para>
    173 
    174 <screen><userinput remap="pre">patch -Np1 -i ../webkitgtk-&webkitgtk-version;-upstream_fixes-1.patch</userinput></screen>
    175 -->
     169
     170    <!-- https://github.com/WebKit/WebKit/commit/3d53735756 and
     171         https://bugs.webkit.org/show_bug.cgi?id=268739 -->
     172
     173    <para>
     174      First, if you are on a 32-bit machine, fix a build failure:
     175    </para>
     176
     177<screen><userinput remap="pre">case $(uname -m) in
     178   i?86) sed -e '/UNUSED_VARIABLE(t6)/d' \
     179             -e '/UNUSED_VARIABLE(t7)/d' \
     180             -i Source/JavaScriptCore/llint/LowLevelInterpreter.cpp ;;
     181esac</userinput></screen>
    176182
    177183    <para>
Note: See TracChangeset for help on using the changeset viewer.