summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure21
1 files changed, 20 insertions, 1 deletions
diff --git a/configure b/configure
index 338626e948..69db6b5b2f 100755
--- a/configure
+++ b/configure
@@ -385,6 +385,7 @@ Video output:
--disable-tga disable Targa video output [enable]
--disable-pnm disable PNM video output [enable]
--disable-md5sum disable md5sum video output [enable]
+ --disable-yuv4mpeg disable yuv4mpeg video output [enable]
Audio output:
--disable-alsa disable ALSA audio output [autodetect]
@@ -533,6 +534,7 @@ _png=auto
_jpeg=auto
_pnm=yes
_md5sum=yes
+_yuv4mpeg=yes
_gif=auto
_gl=auto
_ggi=auto
@@ -852,6 +854,8 @@ for ac_option do
--disable-pnm) _pnm=no ;;
--enable-md5sum) _md5sum=yes ;;
--disable-md5sum) _md5sum=no ;;
+ --enable-yuv4mpeg) _yuv4mpeg=yes ;;
+ --disable-yuv4mpeg) _yuv4mpeg=no ;;
--enable-gif) _gif=yes ;;
--disable-gif) _gif=no ;;
--enable-gl) _gl=yes ;;
@@ -3779,6 +3783,18 @@ fi
echores "$_md5sum"
+echocheck "yuv4mpeg support"
+if test "$_yuv4mpeg" = yes; then
+ _def_yuv4mpeg="#define HAVE_YUV4MPEG"
+ _vosrc="$_vosrc vo_yuv4mpeg.c"
+ _vomodules="yuv4mpeg $_vomodules"
+else
+ _def_yuv4mpeg="#undef HAVE_YUV4MPEG"
+ _novomodules="yuv4mpeg $_novomodules"
+fi
+echores "$_yuv4mpeg"
+
+
echocheck "bl"
if test "$_bl" = yes ; then
_def_bl='#define HAVE_BL 1'
@@ -7539,7 +7555,7 @@ echocheck "DVD support (libdvdnav)"
if test "$_dvdnav" = auto ; then
if test "$_dvdread_internal" = yes ; then
_dvdnav=no
- echores "disabled due to the usage of the internal copy of dvdread. Append --disable-dvdread-internal"
+ _res_comment="Disabled in favor of the internal copy of dvdread. Append --disable-dvdread-internal."
else
$_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
fi
@@ -8370,6 +8386,9 @@ $_def_pnm
/* enable md5sum support */
$_def_md5sum
+/* enable yuv4mpeg support */
+$_def_yuv4mpeg
+
/* enable GIF support */
$_def_gif
$_def_gif_4