summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2010-10-30 07:55:31 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:16:45 +0200
commit62112dedb0a6c874289734b2a64d9ce93b8ae4f0 (patch)
tree5fea8737eb83e1363ce83fa892c88ba53abe01c6 /configure
parent9b00269483584abdbc485cc1883201bb5e0ba495 (diff)
downloadmpv-62112dedb0a6c874289734b2a64d9ce93b8ae4f0.tar.bz2
mpv-62112dedb0a6c874289734b2a64d9ce93b8ae4f0.tar.xz
enable vo_mga, vo_xmga, vf_palette, vf_halfpack
Nothing should depend on libswscale internals any more, so re-enable everything. vf_palette and vf_halfpack were actually fixed earlier but were not properly enabled.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure22
1 files changed, 4 insertions, 18 deletions
diff --git a/configure b/configure
index 71e418f3a9..5d729bdc30 100755
--- a/configure
+++ b/configure
@@ -7087,15 +7087,8 @@ if test "$_mga" = auto ; then
test -c /dev/mga_vid && _mga=yes
fi
if test "$_mga" = yes ; then
- if test "$_libswscale_internals" = yes ; then
- def_mga='#define CONFIG_MGA 1'
- vomodules="mga $vomodules"
- else
- res_comment="libswscale internal headers are required by mga, sorry"
- _mga=no
- def_mga='#undef CONFIG_MGA'
- novomodules="mga $novomodules"
- fi
+ def_mga='#define CONFIG_MGA 1'
+ vomodules="mga $vomodules"
else
def_mga='#undef CONFIG_MGA'
novomodules="mga $novomodules"
@@ -7109,15 +7102,8 @@ if test "$_xmga" = auto ; then
test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
fi
if test "$_xmga" = yes ; then
- if test "$_libswscale_internals" = yes ; then
- def_xmga='#define CONFIG_XMGA 1'
- vomodules="xmga $vomodules"
- else
- res_comment="libswscale internal headers are required by xmga, sorry"
- _xmga=no
- def_xmga='#undef CONFIG_XMGA'
- novomodules="xmga $novomodules"
- fi
+ def_xmga='#define CONFIG_XMGA 1'
+ vomodules="xmga $vomodules"
else
def_xmga='#undef CONFIG_XMGA'
novomodules="xmga $novomodules"