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
This commit is contained in:
Bruce Dubbs 2014-11-16 16:41:31 +00:00
parent 3cc0f5be7e
commit 2b9f9dc9c1
3 changed files with 23 additions and 3 deletions

View File

@ -1,12 +1,12 @@
<!-- $LastChangedBy$ $Date$ -->
<!ENTITY day "15"> <!-- Always 2 digits -->
<!ENTITY day "16"> <!-- Always 2 digits -->
<!ENTITY month "11"> <!-- Always 2 digits -->
<!ENTITY year "2014">
<!ENTITY copyrightdate "2001-&year;">
<!ENTITY copyholder "The BLFS Development Team">
<!ENTITY version "&year;-&month;-&day;">
<!ENTITY releasedate "November 15th, &year;">
<!ENTITY releasedate "November 16th, &year;">
<!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
<!ENTITY blfs-version "svn"> <!-- svn|[release #] -->
<!ENTITY lfs-version "development"> <!-- x.y|development] -->

View File

@ -93,7 +93,11 @@
commands:
</para>
<screen><userinput>./bootstrap.sh --prefix=/usr &amp;&amp;
<screen><userinput>sed -e '1 i#ifndef Q_MOC_RUN' \
-e '$ a#endif' \
-i boost/type_traits/detail/has_binary_operator.hpp &amp;&amp;
./bootstrap.sh --prefix=/usr &amp;&amp;
./b2 stage threading=multi link=shared</userinput></screen>
<para>
@ -113,6 +117,12 @@
<sect2 role="commands">
<title>Command Explanations</title>
<para>
<command>sed ... has_binary_operator.hpp</command>: This command
fixes a header to overcome a problem with Qt's moc command. It
is necessary for building some KDE packages.
</para>
<para>
<parameter>threading=multi</parameter>: This parameter ensures that
<application>Boost</application> is built with multithreading support.

View File

@ -44,6 +44,16 @@
-->
<listitem>
<para>November 16th, 2014</para>
<itemizedlist>
<listitem>
<para>[bdubbs] - Modify a boost header to fix a problem
with Qt's moc command.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>November 15th, 2014</para>
<itemizedlist>