[MPlayer-cvslog] CVS: main configure,1.1148,1.1149
Corey Hickey CVS
syncmail at mplayerhq.hu
Tue Mar 21 06:36:12 CET 2006
CVS change done by Corey Hickey CVS
Update of /cvsroot/mplayer/main
In directory mail:/var2/tmp/cvs-serv11577
Modified Files:
configure
Log Message:
Prevent building lavc with xvid support unless xvid version is 1.1 or
higher.
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.1148
retrieving revision 1.1149
diff -u -r1.1148 -r1.1149
--- configure 20 Mar 2006 10:57:30 -0000 1.1148
+++ configure 21 Mar 2006 05:36:09 -0000 1.1149
@@ -6364,7 +6364,6 @@
_xvid4=yes
_def_xvid3='#undef HAVE_XVID3'
_def_xvid4='#define HAVE_XVID4 1'
- _def_lavc_xvid='#define CONFIG_XVID 1'
_codecmodules="xvid $_codecmodules"
else
_xvid=no
@@ -6376,6 +6375,22 @@
fi
echores "$_xvid"
+if test "$_xvid4" = yes ; then
+ echocheck "XviD 1.1 or higher"
+ cat > $TMPC << EOF
+#include <xvid.h>
+int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
+EOF
+ if cc_check $_inc_xvid $_ld_xvid $_ld_lb ; then
+ _lavc_xvid=yes
+ _def_lavc_xvid='#define CONFIG_XVID 1'
+ else
+ _lavc_xvid=no
+ _def_lavc_xvid='#undef CONFIG_XVID'
+ fi
+ echores "$_lavc_xvid"
+fi
+
_xvidcompat=no
_def_decore_xvid='#undef DECORE_XVID'
_def_encore_xvid='#undef ENCORE_XVID'
@@ -7387,7 +7402,7 @@
AMR_WB=$_amr_wb
`echo $_libavcodecs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
CONFIG_FAAC=$_faac
-CONFIG_XVID=$_xvid4
+CONFIG_XVID=$_lavc_xvid
CONFIG_GPL=yes
CONFIG_MUXERS=yes
More information about the MPlayer-cvslog
mailing list