summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-24 18:26:37 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-24 18:26:37 +0000
commit284a5b6ec50e1556519e5c5e76106a653613debf (patch)
treef2d2af5d47ddcf3ae0ada64f6c46b2685f34e4f3 /configure
parentcbecdb30962db8203ebdbfe24c2e6951f93edc1c (diff)
downloadmpv-284a5b6ec50e1556519e5c5e76106a653613debf.tar.bz2
mpv-284a5b6ec50e1556519e5c5e76106a653613debf.tar.xz
TGA image output VO module
patch by Daniele Forghieri ( guru@digitalfantasy.it ) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10690 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure18
1 files changed, 17 insertions, 1 deletions
diff --git a/configure b/configure
index 71282368b9..b46a5d6074 100755
--- a/configure
+++ b/configure
@@ -227,7 +227,8 @@ Video output:
--enable-zr build with ZR360[56]7/ZR36060 support [autodetect]
--enable-bl build with Blinkenlights support [disable]
--enable-tdfxvid build with tdfx vid support [disable]
-
+ --disable_tga disable targa output support [enable]
+
Audio output:
--disable-ossaudio disable OSS sound support [autodetect]
--disable-arts disable aRts sound support [autodetect]
@@ -1120,6 +1121,7 @@ _termios=auto
_3dfx=no
_tdfxfb=no
_tdfxvid=no
+_tga=yes
_directfb=auto
_zr=auto
_bl=no
@@ -1318,6 +1320,8 @@ for ac_option do
--enable-tdfxfb) _tdfxfb=yes ;;
--disable-tdfxvid) _tdfxvid=no ;;
--enable-tdfxvid) _tdfxvid=yes ;;
+ --disable-tga) _tga=no ;;
+ --enable-tga) _tga=yes ;;
--disable-tdfxfb) _tdfxfb=no ;;
--enable-directfb) _directfb=yes ;;
--disable-directfb) _directfb=no ;;
@@ -2591,6 +2595,17 @@ else
fi
echores "$_tdfxfb"
+echocheck "tga"
+if test "$_tga" = yes ; then
+ _def_tga='#define HAVE_TGA 1'
+ _vosrc="$_vosrc vo_tga.c"
+ _vomodules="tga $_vomodules"
+else
+ _def_tga='#undef HAVE_TGA'
+ _novomodules="tga $_novomodules"
+fi
+echores "$_tga"
+
echocheck "DirectFB headers presence"
if test -z "$_inc_directfb" ; then
for I in /usr/include /usr/local/include; do
@@ -6065,6 +6080,7 @@ $_def_svga
$_def_vesa
$_def_xdpms
$_def_aa
+$_def_tga
/* used by GUI: */
$_def_xshape