Changeset 3aedf67


Ignore:
Timestamp:
11/06/2013 09:19:45 PM (10 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 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:
c936adc6
Parents:
965ffe1
Message:

Fix avahi to build with current gtk+-3.

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r965ffe1 r3aedf67  
    4848      <itemizedlist>
    4949        <listitem>
     50          <para>[ken] - fix avahi for deprecation in current gtk+-3.</para>
     51        </listitem>
     52        <listitem>
    5053          <para>[fernando] - Update to gnutls-3.2.6. Fixes
    5154          <ulink url="&blfs-ticket-root;4264">#4264</ulink>.</para>
  • networking/netutils/avahi.xml

    r965ffe1 r3aedf67  
    124124    commands:</para>
    125125
    126 <screen><userinput>./configure --prefix=/usr        \
     126<!-- final part of sed removes " -DGDK_DISABLE_DEPRECATED=1 -DGTK_DISABLE_DEPRECATED=1 \" -->
     127<screen><userinput>sed -i 's/\(CFLAGS=.*\)-Werror \(.*\)/\1\2/' configure &amp;&amp;
     128sed -i -e 's/-DG_DISABLE_DEPRECATED=1//' \
     129 -e '/-DGDK_DISABLE_DEPRECATED/d' avahi-ui/Makefile.in &amp;&amp;
     130./configure --prefix=/usr        \
    127131            --sysconfdir=/etc    \
    128132            --localstatedir=/var \
     
    149153  <sect2 role="commands">
    150154    <title>Command Explanations</title>
     155
     156    <para>
     157      <command>sed -i ...</command>: These seds allow the package to build after
     158      the deprecation of symbols in <literal>gtkstock.h</literal> by current
     159      <application>gtk+-3</application> by removing <literal>-Werror</literal>
     160      and by removing the defines for G{,DK,TK}_DISABLE_DEPRECATED.
     161    </para>
    151162
    152163    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
Note: See TracChangeset for help on using the changeset viewer.