Changeset ba1e8dd for general/sysutils


Ignore:
Timestamp:
01/03/2014 02:45:45 PM (10 years ago)
Author:
Fernando de Oliveira <fernando@…>
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:
68bd004
Parents:
739148a
Message:

KDE related fixes (patch received, thanks).

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/sysutils/strigi.xml

    r739148a rba1e8dd  
    8989    commands:</para>
    9090
    91 <screen><userinput>mkdir build &amp;&amp;
     91<!-- CMAKE_INSTALL_LIBDIR is used so the package doesn't write over lib64 symlink on 64 bit system -->
     92<screen><userinput>sed -i "s|BufferedStream :|STREAMS_EXPORT &amp;|" libstreams/include/strigi/bufferedstream.h &amp;&amp;
     93mkdir build &amp;&amp;
    9294cd build &amp;&amp;
    93 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &amp;&amp;
     95cmake -DCMAKE_INSTALL_PREFIX=/usr \
     96      -DCMAKE_INSTALL_LIBDIR=lib  \
     97      -DCMAKE_BUILD_TYPE=Release  \
     98      .. &amp;&amp;
    9499make</userinput></screen>
    95100
     
    106111
    107112    <para>
     113      <command>sed -i "..."</command>: This command fixes the build with recent
     114      <application>GCC</application> versions.
     115    </para>
     116
     117    <para>
     118      <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used to
     119      apply higher level of the compiler optimizations.
     120    </para>
     121
     122    <para>
    108123      <option>-DENABLE_DBUS=OFF</option>: Use this <command>cmake</command>
    109124      variable if you don't have <application>D-Bus</application> installed.
     
    116131      <application>D-Bus</application> support.
    117132    </para>
     133
    118134  </sect2>
    119135
Note: See TracChangeset for help on using the changeset viewer.