Skip to content

Commit

Permalink
Only check for Linux-specific input APIs on Linux targets (thanks, Ma…
Browse files Browse the repository at this point in the history
…rcus!).

This is only for the configure script. The CMake project files already make
this Linux-exclusive.

Fixes Bugzilla #2659.
  • Loading branch information
icculus committed Apr 26, 2015
1 parent e5f9c34 commit 5c09bf7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions configure
Expand Up @@ -23001,8 +23001,12 @@ case "$host" in
CheckLibUDev
CheckDBus
CheckIBus
CheckInputEvents
CheckInputKD
case $ARCH in
linux)
CheckInputEvents
CheckInputKD
;;
esac
CheckTslib
CheckUSBHID
CheckPTHREAD
Expand Down
8 changes: 6 additions & 2 deletions configure.in
Expand Up @@ -2897,8 +2897,12 @@ case "$host" in
CheckLibUDev
CheckDBus
CheckIBus
CheckInputEvents
CheckInputKD
case $ARCH in
linux)
CheckInputEvents
CheckInputKD
;;
esac
CheckTslib
CheckUSBHID
CheckPTHREAD
Expand Down

0 comments on commit 5c09bf7

Please sign in to comment.