Changeset 2b9f9dc


Ignore:
Timestamp:
11/16/2014 04:41:31 PM (9 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.7, 7.8, 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:
8ad9b196
Parents:
3cc0f5b
Message:

Modify a boost header to fix a problem with Qt's moc command

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r3cc0f5b r2b9f9dc  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "15">                   <!-- Always 2 digits -->
     3<!ENTITY day          "16">                   <!-- Always 2 digits -->
    44<!ENTITY month        "11">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2014">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "November 15th, &year;">
     9<!ENTITY releasedate  "November 16th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • general/genlib/boost.xml

    r3cc0f5b r2b9f9dc  
    9494    </para>
    9595
    96 <screen><userinput>./bootstrap.sh --prefix=/usr &amp;&amp;
     96<screen><userinput>sed -e '1 i#ifndef Q_MOC_RUN' \
     97    -e '$ a#endif'            \
     98    -i boost/type_traits/detail/has_binary_operator.hpp &amp;&amp;
     99
     100./bootstrap.sh --prefix=/usr &amp;&amp;
    97101./b2 stage threading=multi link=shared</userinput></screen>
    98102
     
    113117  <sect2 role="commands">
    114118    <title>Command Explanations</title>
     119
     120    <para>
     121      <command>sed ... has_binary_operator.hpp</command>: This command
     122      fixes a header to overcome a problem with Qt's moc command.  It
     123      is necessary for building some KDE packages.
     124    </para>
    115125
    116126    <para>
  • introduction/welcome/changelog.xml

    r3cc0f5b r2b9f9dc  
    4646
    4747    <listitem>
     48      <para>November 16th, 2014</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[bdubbs] - Modify a boost header to fix a problem
     52          with Qt's moc command.</para>
     53        </listitem>
     54      </itemizedlist>
     55    </listitem>
     56
     57    <listitem>
    4858      <para>November 15th, 2014</para>
    4959      <itemizedlist>
Note: See TracChangeset for help on using the changeset viewer.