mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-01-03 07:29:37 +01:00
Only check for Linux-specific input APIs on Linux targets (thanks, Marcus!).
This is only for the configure script. The CMake project files already make this Linux-exclusive. Fixes Bugzilla #2659.
This commit is contained in:
parent
e5f9c347ef
commit
5c09bf73b2
4
configure
vendored
4
configure
vendored
@ -23001,8 +23001,12 @@ case "$host" in
|
|||||||
CheckLibUDev
|
CheckLibUDev
|
||||||
CheckDBus
|
CheckDBus
|
||||||
CheckIBus
|
CheckIBus
|
||||||
|
case $ARCH in
|
||||||
|
linux)
|
||||||
CheckInputEvents
|
CheckInputEvents
|
||||||
CheckInputKD
|
CheckInputKD
|
||||||
|
;;
|
||||||
|
esac
|
||||||
CheckTslib
|
CheckTslib
|
||||||
CheckUSBHID
|
CheckUSBHID
|
||||||
CheckPTHREAD
|
CheckPTHREAD
|
||||||
|
@ -2897,8 +2897,12 @@ case "$host" in
|
|||||||
CheckLibUDev
|
CheckLibUDev
|
||||||
CheckDBus
|
CheckDBus
|
||||||
CheckIBus
|
CheckIBus
|
||||||
|
case $ARCH in
|
||||||
|
linux)
|
||||||
CheckInputEvents
|
CheckInputEvents
|
||||||
CheckInputKD
|
CheckInputKD
|
||||||
|
;;
|
||||||
|
esac
|
||||||
CheckTslib
|
CheckTslib
|
||||||
CheckUSBHID
|
CheckUSBHID
|
||||||
CheckPTHREAD
|
CheckPTHREAD
|
||||||
|
Loading…
Reference in New Issue
Block a user