Changeset b82b7f6
- Timestamp:
- 05/02/2005 12:29:57 AM (18 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.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/inkscape-core-mods, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- b0f4fe2
- Parents:
- 08e1b289
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
r08e1b289 rb82b7f6 23 23 <itemizedlist> 24 24 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 26 sed command to the FFmpeg instructions to fix an issue on MMX capable 27 machines.</para></listitem> 27 28 28 29 <listitem><para>April 29th, 2005 [bdubbs]: Update to aRts 1.4, kde 3.4, and -
multimedia/videoutils/ffmpeg.xml
r08e1b289 rb82b7f6 8 8 <!ENTITY ffmpeg-md5sum "ea5587e3c66d50b1503b82ac4179c303"> 9 9 <!ENTITY ffmpeg-size "1.6 MB"> 10 <!ENTITY ffmpeg-buildsize " 49MB">11 <!ENTITY ffmpeg-time "0. 87SBU">10 <!ENTITY ffmpeg-buildsize "50 MB"> 11 <!ENTITY ffmpeg-time "0.9 SBU"> 12 12 ]> 13 13 … … 53 53 <para><xref linkend="libvorbis"/>, 54 54 <xref linkend="lame"/>, 55 <xref linkend="liba52"/>,56 55 <xref linkend="imlib2"/>, 57 56 X (<xref linkend="xfree86"/> or <xref linkend="xorg"/>), … … 75 74 source tree for information about optimizing the build.</para></note> 76 75 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 && 78 ./configure --prefix=/usr --enable-shared \ 78 79 --enable-pthreads --disable-ffplay && 79 make && 80 make -C doc {ffmpeg,ffserver,ffplay}.1</command></userinput></screen> 80 make</command></userinput></screen> 81 82 <para>If you have <application>TeX</application> installed, the man pages 83 and documentation was built during the <command>make</command> process. Skip 84 to the root user installation steps. If you do not have 85 <application>TeX</application> installed, use the following command to build 86 the man pages:</para> 87 88 <screen><userinput><command>make -C doc {ffmpeg,ffserver,ffplay}.1</command></userinput></screen> 81 89 82 90 <para>Now, as the root user:</para> … … 84 92 <screen><userinput role='root'><command>make install</command></userinput></screen> 85 93 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; && 94 <para>If you have <application>TeX</application> installed (which caused the 95 HTML documentation to be built earlier), install the documentation by issuing 96 the following commands as the root user:</para> 97 98 <screen><userinput role='root'><command>install -v -m755 -d /usr/share/doc/ffmpeg-&ffmpeg-version; && 95 99 install -v -m644 doc/*.html /usr/share/doc/ffmpeg-&ffmpeg-version;</command></userinput></screen> 96 100 … … 99 103 <sect2> 100 104 <title>Command explanations</title> 105 106 <para><command>sed -i -e "s/static uint64/const uint64/" 107 libavcodec/liba52/resample_mmx.c</command>: This command fixes an issue 108 on machines with MMX capability and use <application>GCC</application>-3.4.x 109 to compile in A52 support using the <option>--enable-a52</option> parameter 110 passed to the <command>configure</command> script.</para> 101 111 102 112 <para><parameter>--enable-shared</parameter>: This switch is needed to … … 116 126 the available options and codecs using the 117 127 <command>./configure --help</command> command.</para> 118 119 <para><command>make -C doc {ffmpeg,ffserver,ffplay}.1</command>: This builds120 the man pages which are installed by <command>make install</command>.</para>121 122 <note><para>Linking the <application>liba52</application> library using the123 <option>--enable-a52</option> parameter to <command>configure</command> is124 known to break the build.</para></note>125 128 126 129 </sect2> -
multimedia/videoutils/mplayer.xml
r08e1b289 rb82b7f6 238 238 dynamically to this library instead of the default statically linked method. 239 239 If you desire to build the shared library, 240 add <option>--enable-shared-pp</option> to the <command>configure</command> 241 script.</para> 240 add <option>--enable-shared-pp</option> and 241 <option>--disable-fastmemcpy</option> to the <command>configure</command> 242 script. The <option>--disable-fastmemcpy</option> parameter is required to 243 avoid <computeroutput>undefined reference</computeroutput> errors when other 244 packages link to the shared library.</para> 242 245 243 246 <para>You may wish to examine the output from
Note:
See TracChangeset
for help on using the changeset viewer.