From 270563a5a51f0ee031405ce6a7b3a7821c415c9f Mon Sep 17 00:00:00 2001 From: Edgar Simo Date: Mon, 25 Aug 2008 09:51:02 +0000 Subject: [PATCH] * Fixed autotools never properly detecting directinput. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index e1c7e39ca..76e70e3b2 100644 --- a/configure.in +++ b/configure.in @@ -1866,7 +1866,7 @@ AC_HELP_STRING([--enable-directx], [use DirectX for Win32 audio/video [[default= if test x$enable_directx = xyes; then AC_CHECK_HEADER(d3d9.h, have_d3d=yes) AC_CHECK_HEADER(dsound.h, have_dsound=yes) - AC_CHECK_HEADER(dinput.h, use_dinput=yes) + AC_CHECK_HEADER(dinput.h, have_dinput=yes) fi }