Changeset b82b7f6


Ignore:
Timestamp:
05/02/2005 12:29:57 AM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
b0f4fe2
Parents:
08e1b289
Message:

Added a note about the shared PP library to the MPlayer instructions; added a sed command to the FFmpeg instructions

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r08e1b289 rb82b7f6  
    2323<itemizedlist>
    2424
    25 <listitem><para>May 1st, 2005 [randy]: Updated to
    26 MPlayer-1.0pre7</para></listitem>
     25<listitem><para>May 1st, 2005 [randy]: Updated to MPlayer-1.0pre7; added a
     26sed command to the FFmpeg instructions to fix an issue on MMX capable
     27machines.</para></listitem>
    2728
    2829<listitem><para>April 29th, 2005 [bdubbs]: Update to aRts 1.4, kde 3.4, and
  • multimedia/videoutils/ffmpeg.xml

    r08e1b289 rb82b7f6  
    88  <!ENTITY ffmpeg-md5sum        "ea5587e3c66d50b1503b82ac4179c303">
    99  <!ENTITY ffmpeg-size          "1.6 MB">
    10   <!ENTITY ffmpeg-buildsize     "49 MB">
    11   <!ENTITY ffmpeg-time          "0.87 SBU">
     10  <!ENTITY ffmpeg-buildsize     "50 MB">
     11  <!ENTITY ffmpeg-time          "0.9 SBU">
    1212]>
    1313
     
    5353<para><xref linkend="libvorbis"/>,
    5454<xref linkend="lame"/>,
    55 <xref linkend="liba52"/>,
    5655<xref linkend="imlib2"/>,
    5756X (<xref linkend="xfree86"/> or <xref linkend="xorg"/>),
     
    7574source tree for information about optimizing the build.</para></note>
    7675
    77 <screen><userinput><command>./configure --prefix=/usr --enable-shared \
     76<screen><userinput><command>sed -i -e "s/static uint64/const uint64/" \
     77    libavcodec/liba52/resample_mmx.c &amp;&amp;
     78./configure --prefix=/usr --enable-shared \
    7879    --enable-pthreads --disable-ffplay &amp;&amp;
    79 make &amp;&amp;
    80 make -C doc {ffmpeg,ffserver,ffplay}.1</command></userinput></screen>
     80make</command></userinput></screen>
     81
     82<para>If you have <application>TeX</application> installed, the man pages
     83and documentation was built during the <command>make</command> process. Skip
     84to the root user installation steps. If you do not have
     85<application>TeX</application> installed, use the following command to build
     86the man pages:</para>
     87
     88<screen><userinput><command>make -C doc {ffmpeg,ffserver,ffplay}.1</command></userinput></screen>
    8189
    8290<para>Now, as the root user:</para>
     
    8492<screen><userinput role='root'><command>make install</command></userinput></screen>
    8593
    86 <para>If you have <application>TeX</application> installed and you wish to
    87 install the <acronym>HTML</acronym> documentation, run the following
    88 command as an unprivileged user:</para>
    89 
    90 <screen><userinput><command>make -C doc</command></userinput></screen>
    91 
    92 <para>Now, as the root user:</para>
    93 
    94 <screen><userinput role='root'><command>install -v -d -m755 /usr/share/doc/ffmpeg-&ffmpeg-version; &amp;&amp;
     94<para>If you have <application>TeX</application> installed (which caused the
     95HTML documentation to be built earlier), install the documentation by issuing
     96the following commands as the root user:</para>
     97
     98<screen><userinput role='root'><command>install -v -m755 -d /usr/share/doc/ffmpeg-&ffmpeg-version; &amp;&amp;
    9599install -v -m644 doc/*.html /usr/share/doc/ffmpeg-&ffmpeg-version;</command></userinput></screen>
    96100
     
    99103<sect2>
    100104<title>Command explanations</title>
     105
     106<para><command>sed -i -e "s/static uint64/const uint64/"
     107libavcodec/liba52/resample_mmx.c</command>: This command fixes an issue
     108on machines with MMX capability and use <application>GCC</application>-3.4.x
     109to compile in A52 support using the <option>--enable-a52</option> parameter
     110passed to the <command>configure</command> script.</para>
    101111
    102112<para><parameter>--enable-shared</parameter>: This switch is needed to
     
    116126the available options and codecs using the
    117127<command>./configure --help</command> command.</para>
    118 
    119 <para><command>make -C doc {ffmpeg,ffserver,ffplay}.1</command>: This builds
    120 the man pages which are installed by <command>make install</command>.</para>
    121 
    122 <note><para>Linking the <application>liba52</application> library using the
    123 <option>--enable-a52</option> parameter to <command>configure</command> is
    124 known to break the build.</para></note>
    125128
    126129</sect2>
  • multimedia/videoutils/mplayer.xml

    r08e1b289 rb82b7f6  
    238238dynamically to this library instead of the default statically linked method.
    239239If you desire to build the shared library,
    240 add <option>--enable-shared-pp</option> to the <command>configure</command>
    241 script.</para>
     240add <option>--enable-shared-pp</option> and
     241<option>--disable-fastmemcpy</option> to the <command>configure</command>
     242script. The <option>--disable-fastmemcpy</option> parameter is required to
     243avoid <computeroutput>undefined reference</computeroutput> errors when other
     244packages link to the shared library.</para>
    242245
    243246<para>You may wish to examine the output from
Note: See TracChangeset for help on using the changeset viewer.