1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

little info how to handle missing avformat, swscale libs in ubuntu

This commit is contained in:
Łukasz Wychrystenko 2009-06-27 12:22:13 +00:00
parent 0d7f92b290
commit 1d0d05ad0c

View File

@ -19,6 +19,7 @@ To compile, at least the following packages (and their development counterparts)
* sdl image
* sdl ttf
* zlib
* ffmpeg (libavformat libswscale)
Then do the usual
./configure
@ -26,6 +27,12 @@ Then do the usual
Note that on 64 bits linux, if the boost libraries are installed in /usr/lib64, configure will not find them and will fail. Until this is fixed, use:
./configure --with-boost-libdir=/usr/lib64
Another note on ubuntu(posible others to) - create symlincs to correct libnames in /usr/lib
eg:
sudo ln -s libswscale.so.0.7.1 libswscale.so
sudo ln -s libavformat.so.52 libavformat.so
Then build vcmi:
make