Changeset 820d6822


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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

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

    rfe316a64 r820d6822  
    4444
    4545    <listitem>
     46      <para>August 31st, 2017</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[pierre] - Fix midori build with newer vala. Thanks to
     50          Christoph Feikes for the report. Fix taken from Archlinux.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55    <listitem>
    4656      <para>August 30th, 2017</para>
    4757      <itemizedlist>
     
    5666      <itemizedlist>
    5767        <listitem>
    58           <para>[bdinns] - Promote highlight to a recommended dependency for
     68          <para>[bdubbs] - Promote highlight to a recommended dependency for
    5969          gtk-doc.</para>
    6070        </listitem>
  • 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.