summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-09 10:18:18 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-09 10:18:18 +0000
commit70fdab9d3a03b720521fe7f6142f88546a8025b2 (patch)
treea791cd2cec2f19a5880b7e7eb46138dff03701cb /configure
parent80c34123091a8297273b1a0fb48e6f594d787abb (diff)
downloadmpv-70fdab9d3a03b720521fe7f6142f88546a8025b2.tar.bz2
mpv-70fdab9d3a03b720521fe7f6142f88546a8025b2.tar.xz
Move vo_3dfx check after vo_dga check, vo_3dfx needs -lXxf86dga to link.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24381 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure24
1 files changed, 12 insertions, 12 deletions
diff --git a/configure b/configure
index 2a7a4eb0be..6ae0cee967 100755
--- a/configure
+++ b/configure
@@ -3668,18 +3668,6 @@ echores "$_smbsupport"
#########
-echocheck "3dfx"
-if test "$_3dfx" = yes ; then
- _def_3dfx='#define HAVE_3DFX 1'
- _vosrc="$_vosrc vo_3dfx.c"
- _vomodules="3dfx $_vomodules"
-else
- _def_3dfx='#undef HAVE_3DFX'
- _novomodules="3dfx $_novomodules"
-fi
-echores "$_3dfx"
-
-
echocheck "tdfxfb"
if test "$_tdfxfb" = yes ; then
_def_tdfxfb='#define HAVE_TDFXFB 1'
@@ -4103,6 +4091,18 @@ fi
echores "$_dga"
+echocheck "3dfx"
+if test "$_3dfx" = yes && test "$_dga" = yes ; then
+ _def_3dfx='#define HAVE_3DFX 1'
+ _vosrc="$_vosrc vo_3dfx.c"
+ _vomodules="3dfx $_vomodules"
+else
+ _def_3dfx='#undef HAVE_3DFX'
+ _novomodules="3dfx $_novomodules"
+fi
+echores "$_3dfx"
+
+
echocheck "OpenGL"
#Note: this test is run even with --enable-gl since we autodetect linker flags
if (test "$_x11" = yes || win32) && test "$_gl" != no ; then