Changeset d5e3ba1


Ignore:
Timestamp:
01/15/2013 04:51:28 AM (11 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
619b9a8
Parents:
30c3f09
Message:

Remove an unneeded parameter from the libmpeg2 instructions

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r30c3f09 rd5e3ba1  
    4949      <itemizedlist>
    5050        <listitem>
     51          <para>[randy] - Remove an unneeded parameter from the libmpeg2
     52          instructions.</para>
     53        </listitem>
     54        <listitem>
    5155          <para>[randy] - Corrected the API documentation installation
    5256          instructions in the xine-lib instructions.</para>
  • multimedia/libdriv/libmpeg2.xml

    r30c3f09 rd5e3ba1  
    7575    <title>Installation of libmpeg2</title>
    7676
    77     <para>First a problem that occurs in more recent compilers:</para>
    78 
    79 <screen><userinput>sed -i 's/static const/static/' libmpeg2/idct_mmx.c</userinput></screen>
    80 
    8177    <para>Install <application>libmpeg2</application> by running the following
    8278    commands:</para>
    8379
    84 <screen><userinput>./configure --prefix=/usr --enable-shared &amp;&amp;
     80<screen><userinput>sed -i 's/static const/static/' libmpeg2/idct_mmx.c &amp;&amp;
     81./configure --prefix=/usr                           &amp;&amp;
    8582make</userinput></screen>
    8683
     
    10198    <title>Command Explanations</title>
    10299
    103     <para><parameter>--enable-shared</parameter>: This parameter forces
    104     building shared versions of the libraries as well as the static
    105     versions.</para>
    106 
     100    <para><command>sed -i ...</command>: This <command>sed</command> fixes
     101    problems with recent GCC compilers.</para>
    107102  </sect2>
    108103
Note: See TracChangeset for help on using the changeset viewer.