|
|
我在make的时候它出现这种提示:
vosub_vidix.c: In function 'vidix_init':
vosub_vidix.c:567: warning: assignment from incompatible pointer type
vosub_vidix.c:569: warning: assignment from incompatible pointer type
vosub_vidix.c:570: warning: assignment from incompatible pointer type
vosub_vidix.c: In function 'vidix_preinit':
vosub_vidix.c:744: warning: assignment from incompatible pointer type
vosub_vidix.c:745: warning: assignment from incompatible pointer type
然后我没理它就make install了,结果它在出现下面几行提示后就结束了
install -d /usr/local/man/man1
for i in en; do \
if test "$i" = en ; then \
install -c -m 644 DOCS/man/en/mplayer.1 /usr/local/man/man1/mplayer.1 ; \
else \
install -d /usr/local/man/$i/man1 ; \
install -c -m 644 DOCS/man/$i/mplayer.1 /usr/local/man/$i/man1/mplayer.1 ; \
fi ; \
done
install -m 755 -s mencoder /usr/local/bin/mencoder
for i in en; do \
if test "$i" = en ; then \
ln -sf mplayer.1 /usr/local/man/man1/mencoder.1 ; \
else \
ln -sf mplayer.1 /usr/local/man/$i/man1/mencoder.1 ; \
fi ; \
done
*** Download font at http://www.mplayerhq.hu/dload.html
*** for OSD/Subtitles support and extract to /usr/local/share/mplayer/font/
是不是我的什么字体没装啊?还是我的显示器哪方面有问题啊? |
|