Changeset 19bcba7d for xsoft


Ignore:
Timestamp:
10/08/2015 07:09:42 PM (9 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.9, 8.0, 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, nosym, 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:
2629a88
Parents:
0cdbd71b
Message:

Update to libsic++-2.6.1, poppler-0.36.0, gtk+-3.18.1, glimm-2.46.1,
gobject-introspection-1.46.0, at-spi2-atk-2.18.0, at-spi2-core-2.18.0,
atk-2.18.0, atkmm-2.24.1, cairomm-1.12.0, gdk-pixbuf-2.32.1, gtkmm-3.18.0,
pango-1.38.0, pangomm-2.38.1, glib-2.46? and fix intructions for gtkmm2,
gparted, and inkscape. A big thank to Armin for help with all that.

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

Location:
xsoft/other
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • xsoft/other/gparted.xml

    r0cdbd71b r19bcba7d  
    100100    </para>
    101101
    102 <screen><userinput>./configure --prefix=/usr    \
     102<!-- those fixes have been included in upstream repository, check at next
     103     update -->
     104<screen><userinput>sed -i '\@sigc++/class_slot@d' include/WinGParted.h &amp;&amp;
     105CXXFLAGS="-g -O2 -std=c++11" \
     106./configure --prefix=/usr    \
    103107            --disable-doc    \
    104108            --disable-static &amp;&amp;
     
    119123  <sect2 role="commands">
    120124    <title>Command Explanations</title>
     125
     126    <para>
     127      <command>sed -i '\@sigc++/class_slot@d' ...</command>: Remove an unneeded
     128      inclusion of an obsolete header file, which is not present in the <xref
     129      linkend="libsigc"/> package.
     130    </para>
     131
     132    <para>
     133      <command>CXXFLAGS="-g -O2 -std=c++11" ./configure...</command>: Gparted
     134      has not yet been ported to the 2011 ISO C++ standard, but several of its
     135      dependencies have. <command>-std=c++11</command> has
     136      to be used as an option to <command>g++</command>. We pass it into
     137      <envar>CXXFLAGS</envar> together with the default options.
     138    </para>
    121139
    122140    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • xsoft/other/inkscape.xml

    r0cdbd71b r19bcba7d  
    157157<screen><userinput>patch -Np1 -i ../inkscape-&inkscape-version;-testfiles-1.patch &amp;&amp;
    158158
    159 ./configure --prefix=/usr &amp;&amp;
     159CXXFLAGS="-g -O2 -std=c++11" ./configure --prefix=/usr &amp;&amp;
    160160make</userinput></screen>
    161161
     
    176176  <sect2 role="commands">
    177177    <title>Command Explanations</title>
     178
     179    <para>
     180      <command>CXXFLAGS="-g -O2 -std=c++11" ./configure...</command>: Inkscape
     181      has not yet been ported to the 2011 ISO C++ standard, one of its
     182      dependencies is compiled with this standard.
     183      <command>-std=c++11</command> has
     184      to be used as an option to <command>g++</command>. We pass it into
     185      <envar>CXXFLAGS</envar> together with the default options.
     186    </para>
    178187
    179188    <para>
Note: See TracChangeset for help on using the changeset viewer.