Changeset b03b3db


Ignore:
Timestamp:
06/26/2004 11:09:13 AM (20 years ago)
Author:
Igor Živković <igor@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 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:
f384a9d
Parents:
67d6349d
Message:

fixed libFLAC/libm linking

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r67d6349d rb03b3db  
    1 <!ENTITY day          "25">
     1<!ENTITY day          "26">
    22<!ENTITY month        "06">
    33<!ENTITY year         "2004">
  • general/genutils/screen.xml

    r67d6349d rb03b3db  
    77<!ENTITY screen-download-http "http://ftp.gnu.org/pub/gnu/screen/screen-&screen-version;.tar.gz">
    88<!ENTITY screen-download-ftp "ftp://ftp.gnu.org/pub/gnu/screen/screen-&screen-version;.tar.gz">
    9 <!ENTITY screen-size "725 KB">
     9<!ENTITY screen-size "825 KB">
    1010<!ENTITY screen-buildsize "5.8 MB">
    1111<!ENTITY screen-time "0.17 SBU">
  • introduction/welcome/changelog.xml

    r67d6349d rb03b3db  
    1818
    1919<itemizedlist>
     20
     21<listitem><para>June 26th, 2004 [igor]: Linked libFLAC with libm
     22(fixes kdemultimedia FLAC detection) as suggested by Ryan
     23Reich.</para></listitem>
    2024
    2125<listitem><para>June 25th, 2004 [randy]: Clarified and repaired the Enigmail
  • multimedia/libdriv/flac.xml

    r67d6349d rb03b3db  
    4747following commands:</para>
    4848
    49 <screen><userinput><command>./configure --prefix=/usr &amp;&amp;
    50 make &amp;&amp;
     49<screen><userinput><command>./configure --prefix=/usr</command></userinput></screen>
     50
     51<para><filename class="libraryfile">libFLAC</filename> uses a function
     52from the math library but is not linked with <filename
     53class="libraryfile">libm</filename>. Simply adding
     54<parameter>-lm</parameter> to <varname>LIBS</varname> variable in the relevant
     55<filename>Makefile</filename> corrects this problem.</para>
     56
     57<screen><userinput><command>sed -i "s/^LIBS = /LIBS = -lm/" src/libFLAC/Makefile</command></userinput></screen>
     58
     59<para>Continue with the installation:</para>
     60
     61<screen><userinput><command>make &amp;&amp;
    5162make install</command></userinput></screen>
    5263
Note: See TracChangeset for help on using the changeset viewer.