From 8cd8985182c2f048ccc09207c0fcf60b779c46fb Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 4 Jun 2013 22:13:06 -0700 Subject: [PATCH] Updated configure with Ryan's cygwin workaround --- configure | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configure b/configure index f353418df..789436acb 100755 --- a/configure +++ b/configure @@ -21427,6 +21427,14 @@ if test "x$ac_cv_header_xaudio2_h" = xyes; then : fi + + # FIXME: latest Cygwin finds dinput headers, but we die on other win32 headers. + # FIXME: ...so force it off for now. + case "$host" in + *-*-cygwin*) + have_dinput=false + ;; + esac fi }