From 6c0b304c93e08d7d8195d6a3fffe541118ce5fd1 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 5 Jun 2019 12:03:45 -0700 Subject: [PATCH] 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 works, or when build with the native evdev option, where is available. --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 4a078eb634426..7e21bed34a541 100755 --- a/configure +++ b/configure @@ -24403,13 +24403,13 @@ case "$host" in CheckVulkan CheckWayland CheckLibUDev + CheckInputEvents CheckDBus CheckIME CheckIBus CheckFcitx case $ARCH in linux) - CheckInputEvents CheckInputKD ;; esac diff --git a/configure.ac b/configure.ac index f81e0c797491e..b76c4d25b5603 100644 --- a/configure.ac +++ b/configure.ac @@ -3333,6 +3333,7 @@ case "$host" in CheckOpenGLESX11 CheckVulkan CheckWayland + CheckInputEvents CheckLibUDev CheckDBus CheckIME @@ -3340,7 +3341,6 @@ case "$host" in CheckFcitx case $ARCH in linux) - CheckInputEvents CheckInputKD ;; esac