Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed build on newer Cygwin installs.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jun 5, 2013
1 parent 10f4e6f commit 81f2910
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions configure.in
Expand Up @@ -2016,6 +2016,14 @@ AC_HELP_STRING([--enable-directx], [use DirectX for Windows audio/video [[defaul
AC_CHECK_HEADER(dsound.h, have_dsound=yes)
AC_CHECK_HEADER(dinput.h, have_dinput=yes)
AC_CHECK_HEADER(xaudio2.h, have_xaudio2=yes)

# 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
}

Expand Down

0 comments on commit 81f2910

Please sign in to comment.