Skip to content

Commit

Permalink
Don't configure in Linux input events on any BSD distro. For bug #34373.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Savoye committed Sep 24, 2011
1 parent 33b7184 commit b9e5fa3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion configure.ac
Expand Up @@ -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"
;;
Expand Down

0 comments on commit b9e5fa3

Please sign in to comment.