diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-11-01 23:48:58 +0200 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-11-01 23:48:58 +0200 |
commit | d7d931abe01a8cf555b027f2bcfcccd5e9053e52 (patch) | |
tree | 0268d0ab5091f187cbeaa2309a1e6aefc3be9a05 /configure.ac | |
parent | 81728558a044fdde0e1d63da7b6314755f77296e (diff) |
configure.ac: remove check for rate/period
Keyboard stuff is now handled in the kbd driver.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/configure.ac b/configure.ac index aa6c607ec..8935aa088 100644 --- a/configure.ac +++ b/configure.ac @@ -1194,25 +1194,6 @@ dnl has it in libc), or if libdl is needed to get it. *) ;; esac - - # check whether struct kbd_repeat has the 'period' field. - # on kernels < 2.5.42 it's called 'rate' instead. - AC_TRY_COMPILE([ -#include <linux/kd.h> -#ifdef __sparc__ -#include <asm/param.h> -#include <asm/kbio.h> -#endif -],[ -int main () { - struct kbd_repeat k; - k.period = 0; - return 0; -}], - [period_field="period"], - [period_field="rate"]) - AC_DEFINE_UNQUOTED(LNX_KBD_PERIOD_NAME, [$period_field], - [Name of the period field in struct kbd_repeat]) ;; freebsd* | kfreebsd*-gnu) XORG_OS="freebsd" |