From b9e5fa3b9abb45cb872cc69722638ecdb3724f5c Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Fri, 23 Sep 2011 19:34:43 -0600 Subject: [PATCH] Don't configure in Linux input events on any BSD distro. For bug #34373. --- configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 06f0dbe3d..c71c44108 100644 --- a/configure.ac +++ b/configure.ac @@ -850,7 +850,11 @@ AC_ARG_ENABLE(input, a*) dnl all build_ps2mouse=yes build_ps2keyboard=yes - build_input_events=yes + if test x"${bsd} = x"yes"; then + build_input_events=no + else + build_input_events=yes + fi build_tslib=yes input_events="PS/2 Mouse, PS/2 Keyboard, Input Devices, Touchscreen via Tslib" ;;