Changeset 87dfe6b


Ignore:
Timestamp:
04/03/2013 08:21:38 PM (11 years ago)
Author:
Krejzi <krejzi@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
3de403d
Parents:
d6e164b
Message:

Fixes.

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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • networking/netutils/networkmanager.xml

    rd6e164b r87dfe6b  
    122122    </para>
    123123
    124 <screen><userinput>./configure --prefix=/usr \
     124<screen><userinput>sed -e "/memset (buffer, 0, sizeof (buffer));/d" \
     125    -i src/dns-manager/nm-dns-manager.c &amp;&amp;
     126sed -e "s/sizeof (expected_ssid)/sizeof (char)/" \
     127    -i src/settings/plugins/keyfile/tests/test-keyfile.c &amp;&amp;
     128./configure --prefix=/usr \
    125129            --sysconfdir=/etc \
    126130            --localstatedir=/var \
     
    144148  <sect2 role="commands">
    145149    <title>Command Explanations</title>
     150
     151    <para>
     152      <command>sed -e ...</command>: These <command>sed</command>s prevent
     153      build failure when using GCC 4.8.
     154    </para>
    146155
    147156    <para>
  • x/lib/gdk-pixbuf.xml

    rd6e164b r87dfe6b  
    118118    </para>
    119119
    120 <screen><userinput>./configure --prefix=/usr --with-x11 &amp;&amp;
     120<screen><userinput>sed -e "s@&lt;stdlib.h&gt;@&amp;\n#include &lt;string.h&gt;@g" \
     121    -i gdk-pixbuf/io-png.c &amp;&amp;
     122./configure --prefix=/usr --with-x11 &amp;&amp;
    121123make</userinput></screen>
    122124
     
    145147  <sect2 role="commands">
    146148    <title>Command Explanations</title>
     149
     150    <para>
     151      <command>sed -e "s@&lt;stdlib.h&gt;@&amp;\n#include &lt;string.h&gt;@g"
     152      ..</command>: This <command>sed</command> silences compiler warnings
     153      when using GCC 4.8.
     154    </para>
    147155
    148156    <para>
  • x/lib/webkitgtk.xml

    rd6e164b r87dfe6b  
    6868        <para>
    6969          Estimated build time: &webkitgtk-time;
     70        </para>
     71      </listitem>
     72    </itemizedlist>
     73
     74    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     75    <itemizedlist spacing="compact">
     76      <listitem>
     77        <para>
     78          Required patch:
     79          <ulink url="&patch-root;/webkitgtk-&webkitgtk-version;-fix_librt_linking-1.patch"/>
    7080        </para>
    7181      </listitem>
     
    135145    </para>
    136146
    137 <screen><userinput>./configure --prefix=/usr \
     147<screen><userinput>patch -Np1 -i ../webkitgtk-&webkitgtk-version;-fix_librt_linking-1.patch &amp;&amp;
     148./configure --prefix=/usr \
    138149            --libexecdir=/usr/lib/WebKitGTK \
    139150            --with-gstreamer=1.0 \
  • xsoft/office/libreoffice.xml

    rd6e164b r87dfe6b  
    134134    <bridgehead renderas="sect4">Required</bridgehead>
    135135    <para role="required">
    136       <xref linkend="cups"/>,
    137136      <xref linkend="gperf"/>,
    138137      <xref linkend="gtk2"/>,
     
    156155
    157156    <para role="recommended">
     157      <xref linkend="cups"/>,
    158158      <xref linkend="curl"/>,
    159159      <xref linkend="dbus"/>,
     
    404404
    405405    <para>
     406      <option>--disable-cups</option>: Use this switch if you don't need
     407      printing support.
     408    </para>
     409
     410    <para>
    406411      <option>--disable-gstreamer-0.10</option>: Use this switch if you've
    407412      not installed <xref linkend="gst-plugins-base"/>.
  • xsoft/other/inkscape.xml

    rd6e164b r87dfe6b  
    124124    </para>
    125125
    126 <screen><userinput>./configure --prefix=/usr &amp;&amp;
     126<screen><userinput>sed -e "s@commands_toolbox,@commands_toolbox@" -i src/widgets/desktop-widget.h &amp;&amp;
     127./configure --prefix=/usr &amp;&amp;
    127128make &amp;&amp;
    128129unset LIBRARY_PATH</userinput></screen>
     
    140141    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    141142      href="../../xincludes/update-icons-and-desktop.xml"/>
     143
     144  </sect2>
     145
     146  <sect2 role="commands">
     147    <title>Command Explanations</title>
     148
     149    <para>
     150      <command>sed -e "s@commands_toolbox,@commands_toolbox@" ...</command>:
     151      This <command>sed</command> fixes building with GCC 4.8.
     152    </para>
     153
    142154  </sect2>
    143155
Note: See TracChangeset for help on using the changeset viewer.