成功编译 mplayer 1.0 rc2 

本来我的mplayer是用ubuntu-tweak安装的,最近突然想要自己编译安装,于是就动手了。

我的configure:
./configure --prefix=/usr/local/mplayer --enable-gui --enable-largefiles --enable-linux-devfs --enable-radio --enable-radio-capture --enable-xvmc --enable-dynamic-plugins --disable-ivtv

缺什么lib就apt-get 一下.

make的时候如果出现
undefined reference to `video_out_ivtv' collect2: ld returned 1 exit status
的时候,
解决方法是 找到源代码文件夹下的libvo文件夹里的video_out.c 文件,找到

extern vo_functions_t video_out_dxr3; 这行

改写成
#ifdef HAVE_DXR3
extern vo_functions_t video_out_dxr3;
#endif
即可通过编译.
[ ] ( 2640 次浏览 ) 永久链接 ( 3 / 2913 )

<< <上一页 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 下一页> >>