Ignore:
Timestamp:
08/01/2015 04:26:22 AM (9 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
systemd-13485
Children:
ad6910d
Parents:
4a83293
Message:

Import back into SVN from Github

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@16309 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • multimedia/audioutils/lame.xml

    r4a83293 rac38e9dc  
    3636    </para>
    3737
    38     &lfs76_checked;
     38    &lfs77_checked;
    3939
    4040    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    9191
    9292    <para>
    93       First, if you are using i686, fix a compile problem inroduced by
    94       <application>&gcc-490;</application>:
    95     </para>
    96 
    97 <screen role="nodump"><userinput>sed -i -e '/xmmintrin\.h/d' configure</userinput></screen>
     93      First, fix a compiler error introduced by
     94      <application>&gcc-490;</application> on 32-bit machines:
     95    </para>
     96
     97<screen><userinput>case $(uname -m) in
     98   i?86) sed -i -e '/xmmintrin\.h/d' configure ;;
     99esac</userinput></screen>
    98100
    99101    <para>
     
    121123
    122124    <para>
    123       <option>sed -i -e '/xmmintrin\.h/d' configure</option> : with
    124       gcc-4.9.0, 32-bit i686 builds fail in <filename>xmm_quantize_sub.c</filename>
    125       with an error message <literal>error: inlining failed in call to always_inline
     125      <command>sed -i -e '/xmmintrin\.h/d' configure</command> : with
     126      gcc-4.9.0 and above, the compiler issues an error on 32-bit machines,
     127      while compiling <filename>xmm_quantize_sub.c</filename>. The error
     128      message is: <literal>error: inlining failed in call to always_inline
    126129      '_mm_loadu_ps'</literal>. This sed makes it appear as if
    127130      <filename>xmmintrin.h</filename> is not present. Do not use this on other
    128       versions of gcc, or on x86_64.
    129     </para>
    130 
    131     <para>
    132       <option>--enable-mp3rtp</option>: This switch enables building
    133       of the encode-to-RTP program.
     131      versions of gcc.
     132    </para>
     133
     134    <para>
     135      <parameter>--enable-mp3rtp</parameter>: This switch enables building
     136      the encode-to-RTP program.
    134137    </para>
    135138
Note: See TracChangeset for help on using the changeset viewer.