| OLD | NEW |
| 1 \input texinfo @c -*- texinfo -*- | 1 \input texinfo @c -*- texinfo -*- |
| 2 | 2 |
| 3 @settitle General Documentation | 3 @settitle General Documentation |
| 4 @titlepage | 4 @titlepage |
| 5 @sp 7 | 5 @sp 7 |
| 6 @center @titlefont{General Documentation} | 6 @center @titlefont{General Documentation} |
| 7 @sp 3 | 7 @sp 3 |
| 8 @end titlepage | 8 @end titlepage |
| 9 | 9 |
| 10 | 10 |
| (...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 If you want to build FFmpeg with additional libraries, download Cygwin | 1018 If you want to build FFmpeg with additional libraries, download Cygwin |
| 1019 "Devel" packages for Ogg and Vorbis from any Cygwin packages repository: | 1019 "Devel" packages for Ogg and Vorbis from any Cygwin packages repository: |
| 1020 @example | 1020 @example |
| 1021 libogg-devel, libvorbis-devel | 1021 libogg-devel, libvorbis-devel |
| 1022 @end example | 1022 @end example |
| 1023 | 1023 |
| 1024 These library packages are only available from Cygwin Ports | 1024 These library packages are only available from Cygwin Ports |
| 1025 (@url{http://sourceware.org/cygwinports/}) : | 1025 (@url{http://sourceware.org/cygwinports/}) : |
| 1026 | 1026 |
| 1027 @example | 1027 @example |
| 1028 yasm, libSDL-devel, libdirac-devel, libfaac-devel, libfaad-devel, libgsm-devel, | 1028 yasm, libSDL-devel, libdirac-devel, libfaac-devel, libgsm-devel, |
| 1029 libmp3lame-devel, libschroedinger1.0-devel, speex-devel, libtheora-devel, | 1029 libmp3lame-devel, libschroedinger1.0-devel, speex-devel, libtheora-devel, |
| 1030 libxvidcore-devel | 1030 libxvidcore-devel |
| 1031 @end example | 1031 @end example |
| 1032 | 1032 |
| 1033 The recommendation for libnut and x264 is to build them from source by | 1033 The recommendation for libnut and x264 is to build them from source by |
| 1034 yourself, as they evolve too quickly for Cygwin Ports to be up to date. | 1034 yourself, as they evolve too quickly for Cygwin Ports to be up to date. |
| 1035 | 1035 |
| 1036 Cygwin 1.7.x has IPv6 support. You can add IPv6 to Cygwin 1.5.x by means | 1036 Cygwin 1.7.x has IPv6 support. You can add IPv6 to Cygwin 1.5.x by means |
| 1037 of the @code{libgetaddrinfo-devel} package, available at Cygwin Ports. | 1037 of the @code{libgetaddrinfo-devel} package, available at Cygwin Ports. |
| 1038 | 1038 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1052 @example | 1052 @example |
| 1053 ./configure --target-os=mingw32 --enable-memalign-hack --enable-static --disable
-shared --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin | 1053 ./configure --target-os=mingw32 --enable-memalign-hack --enable-static --disable
-shared --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin |
| 1054 @end example | 1054 @end example |
| 1055 | 1055 |
| 1056 and for a build with shared libraries | 1056 and for a build with shared libraries |
| 1057 @example | 1057 @example |
| 1058 ./configure --target-os=mingw32 --enable-memalign-hack --enable-shared --disable
-static --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin | 1058 ./configure --target-os=mingw32 --enable-memalign-hack --enable-shared --disable
-static --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin |
| 1059 @end example | 1059 @end example |
| 1060 | 1060 |
| 1061 @bye | 1061 @bye |
| OLD | NEW |