具体解决方法是:vi mplayer目录中的shell文件configure中 -echocheck "IVTV TV-Out" 部分源码。[code]-echocheck "IVTV TV-Out"
+echocheck "IVTV TV-Out (pre linux-2.6.24)"
if test "$_ivtv" = auto ; then
cat > $TMPC << EOF
#include
@@ -4935,7 +4935,13 @@ if test "$_ivtv" = auto ; then
#include
#include
#include
-int main(void) { return 0; }
+#include
+int main(void) {
+struct ivtv_cfg_stop_decode sd;
+struct ivtv_cfg_start_decode sd1;
+ioctl (0, IVTV_IOC_START_DECODE, &sd1);
+ioctl (0, IVTV_IOC_STOP_DECODE, &sd);
+return 0; }
EOF
_ivtv=no
cc_check && _ivtv=yes[/code]注释:-号去除该行。
+号增加该行.
@@为注释,可以去除。
编译后,执行./configure --language=zh_CN --enable-gui --prefix=/usr --with-vidix-drivers=nvidia&& \
make&&make install成功。