From 1bdb0e4cc3119db0274bd2b71451d21653537a73 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Wed, 20 Apr 2011 20:37:10 +0300 Subject: configure: fix --enable-3dfx override without dga If --enable-3dfx is specified but dga is not available then 3dfx is disabled nonetheless. However, this disabling is not done properly, and libvo/vo_3dfx.c is still compiled (but cannot be used). Fix. The behavior of automatically disabling vo_3dfx despite --enable-3dfx is itself questionable, but I'm not changing that now. --- configure | 1 + 1 file changed, 1 insertion(+) (limited to 'configure') diff --git a/configure b/configure index 975413261e..c32bb1eb32 100755 --- a/configure +++ b/configure @@ -4071,6 +4071,7 @@ if test "$_3dfx" = yes && test "$_dga" = yes ; then def_3dfx='#define CONFIG_3DFX 1' vomodules="3dfx $vomodules" else + _3dfx=no def_3dfx='#undef CONFIG_3DFX' novomodules="3dfx $novomodules" fi -- cgit v1.2.3