mirror of https://github.com/encounter/SDL.git
Fixed bug 4655 - evdev is available on FreeBSD, check in 'configure' limited to Linux
Jan Martin Mikkelsen The evdev interface is available on FreeBSD, with the xf86-input-evdev for include files in /usr/local/include/linux, so <linux/input.h> works, or when build with the native evdev option, where <dev/evdev/input.h> is available.
This commit is contained in:
parent
23569362dc
commit
6c0b304c93
|
@ -24403,13 +24403,13 @@ case "$host" in
|
||||||
CheckVulkan
|
CheckVulkan
|
||||||
CheckWayland
|
CheckWayland
|
||||||
CheckLibUDev
|
CheckLibUDev
|
||||||
|
CheckInputEvents
|
||||||
CheckDBus
|
CheckDBus
|
||||||
CheckIME
|
CheckIME
|
||||||
CheckIBus
|
CheckIBus
|
||||||
CheckFcitx
|
CheckFcitx
|
||||||
case $ARCH in
|
case $ARCH in
|
||||||
linux)
|
linux)
|
||||||
CheckInputEvents
|
|
||||||
CheckInputKD
|
CheckInputKD
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -3333,6 +3333,7 @@ case "$host" in
|
||||||
CheckOpenGLESX11
|
CheckOpenGLESX11
|
||||||
CheckVulkan
|
CheckVulkan
|
||||||
CheckWayland
|
CheckWayland
|
||||||
|
CheckInputEvents
|
||||||
CheckLibUDev
|
CheckLibUDev
|
||||||
CheckDBus
|
CheckDBus
|
||||||
CheckIME
|
CheckIME
|
||||||
|
@ -3340,7 +3341,6 @@ case "$host" in
|
||||||
CheckFcitx
|
CheckFcitx
|
||||||
case $ARCH in
|
case $ARCH in
|
||||||
linux)
|
linux)
|
||||||
CheckInputEvents
|
|
||||||
CheckInputKD
|
CheckInputKD
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in New Issue