271
edits
m (modify bin/sdl2-config not bin/sdl-config) |
Ccawley2011 (talk | contribs) |
||
Line 186: | Line 186: | ||
libogg should be compiled before libvorbis and libFLAC | libogg should be compiled before libvorbis and libFLAC | ||
Unzip the libogg archive in a folder, open MSYS, go to the libogg folder and issue these commands to compile the library: | Unzip the libogg archive in a folder, open MSYS, go to the libogg folder and issue these commands to compile and install the library: | ||
./configure --disable-shared --prefix=/mingw | ./configure --disable-shared --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
=== libvorbis === | === libvorbis === | ||
Unzip the libvorbis archive in a folder, open MSYS, go to the libvorbis folder and issue these commands to compile the library: | Unzip the libvorbis archive in a folder, open MSYS, go to the libvorbis folder and issue these commands to compile and install the library: | ||
./configure --disable-shared --prefix=/mingw | ./configure --disable-shared --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
Line 211: | Line 207: | ||
sed -i '/-fforce-mem/d' configure | sed -i '/-fforce-mem/d' configure | ||
Then issue these commands to compile the library: | Then issue these commands to compile and install the library: | ||
./configure --disable-shared --prefix=/mingw | ./configure --disable-shared --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
Line 223: | Line 217: | ||
Unzip the libmpeg2 archive into a folder. Open MSYS, go to the libmpeg2 folder. | Unzip the libmpeg2 archive into a folder. Open MSYS, go to the libmpeg2 folder. | ||
Then issue these commands to compile the library: | Then issue these commands to compile and install the library: | ||
./configure --disable-sdl --disable-shared --prefix=/mingw | ./configure --disable-sdl --disable-shared --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
Note that if you are compiling x64 i.e. for a 64-bit target, then currently (v0.5.1), the following patch is needed: | Note that if you are compiling x64 i.e. for a 64-bit target, then currently (v0.5.1), the following patch is needed: | ||
Line 255: | Line 247: | ||
=== FLAC === | === FLAC === | ||
Unzip the flac archive in a folder, open MSYS, go to the flac folder and issue these commands to compile the library: | Unzip the flac archive in a folder, open MSYS, go to the flac folder and issue these commands to compile and install the library: | ||
./configure --disable-shared --prefix=/mingw | ./configure --disable-shared --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
Line 290: | Line 280: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Then issue these commands to compile the library: | Then issue these commands to compile and install the library: | ||
./configure --disable-shared --prefix=/mingw | ./configure --disable-shared --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
=== libpng === | === libpng === | ||
Unzip the libpng archive in a folder, open MSYS, go to the libpng folder and issue these commands to compile the library: | Unzip the libpng archive in a folder, open MSYS, go to the libpng folder and issue these commands to compile and install the library: | ||
./configure --disable-shared --prefix=/mingw | ./configure --disable-shared --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
=== libtheora === | === libtheora === | ||
Unzip the libtheora archive in a folder, open MSYS, go to the libtheora folder and issue these commands to compile the library: | Unzip the libtheora archive in a folder, open MSYS, go to the libtheora folder and issue these commands to compile and install the library: | ||
./configure --disable-shared --disable-examples --prefix=/mingw | ./configure --disable-shared --disable-examples --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
Line 338: | Line 322: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Then issue these commands to compile the library: | Then issue these commands to compile and install the library: | ||
./configure --disable-shared --prefix=/mingw | ./configure --disable-shared --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
=== freetype === | === freetype === | ||
Unzip the freetype archive in a folder, open MSYS, go to the freetype folder and issue these commands to compile the library: | Unzip the freetype archive in a folder, open MSYS, go to the freetype folder and issue these commands to compile and install the library: | ||
./configure --disable-shared --prefix=/mingw | ./configure --disable-shared --prefix=/mingw | ||
make | make | ||
make install | |||
make install | |||
== Compiling ScummVM == | == Compiling ScummVM == |
edits