Changeset 820d6822 for xsoft/graphweb


Ignore:
Timestamp:
08/30/2017 10:18:35 AM (7 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.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:
8ebf0b04
Parents:
fe316a64
Message:

Fix midori build with newer vala

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • xsoft/graphweb/midori.xml

    rfe316a64 r820d6822  
    111111    </para>
    112112
    113 <screen><userinput>mkdir build &amp;&amp;
     113<screen><userinput>sed -e 's/protected Tally/public Tally/g'  \
     114    -i midori/midori-notebook.vala         &amp;&amp;
     115sed -e 's/%d other files/%u other files/g' \
     116    -i extensions/transfers.vala           &amp;&amp;
     117
     118for f in transfers adblock/widgets apps history-list notes; do
     119    sed -e 's/.remove (iter/.remove (ref iter/g' \
     120        -i "extensions/$f.vala"
     121done        &amp;&amp;
     122
     123mkdir build &amp;&amp;
    114124cd    build &amp;&amp;
    115125
     
    137147    <title>Command Explanations</title>
    138148
    139     <para><parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
    140     used to apply a higher level of compiler optimizations.</para>
     149    <para>
     150      <command>sed ...</command>: The recent release of vala generates errors
     151      for some constructs that were accepted before. The <command>sed</command>
     152      commands fix those errors.
     153    </para>
     154
     155    <para>
     156      <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
     157      used to apply a higher level of compiler optimizations.
     158    </para>
    141159
    142160    <para>
Note: See TracChangeset for help on using the changeset viewer.