diff options
author | Po Lu <luangruo@yahoo.com> | 2022-05-04 16:48:24 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-05-04 16:51:48 +0800 |
commit | 0105a4ddb8a58146f3fc71c265e57291c873af0b (patch) | |
tree | ba28d987eb1c1a870a4d070317b18eb60f42ead1 /configure.ac | |
parent | 69521ffcb0f2a28f84e24137bfc789ffd0ec3f2f (diff) | |
download | emacs-0105a4ddb8a58146f3fc71c265e57291c873af0b.tar.gz emacs-0105a4ddb8a58146f3fc71c265e57291c873af0b.tar.bz2 emacs-0105a4ddb8a58146f3fc71c265e57291c873af0b.zip |
Turn on XInput 2 support by default
The support doesn't interfere with compatibility, since Emacs
built with XInput 2 support transparently falls back to Core
Input when a suitable version of the input extension is not
available. It also matured much sooner than expected, so
enabling this by default will lead to new features being
available to more users.
* INSTALL:
* configure.ac:
* etc/NEWS: Enable XInput 2 support by default.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b7189593a63..484ce980a52 100644 --- a/configure.ac +++ b/configure.ac @@ -490,7 +490,7 @@ OPTION_DEFAULT_ON([modules],[don't compile with dynamic modules support]) OPTION_DEFAULT_ON([threads],[don't compile with elisp threading support]) OPTION_DEFAULT_OFF([native-compilation],[compile with Emacs Lisp native compiler support]) OPTION_DEFAULT_OFF([cygwin32-native-compilation],[use native compilation on 32-bit Cygwin]) -OPTION_DEFAULT_OFF([xinput2],[use version 2 of the X Input Extension for input]) +OPTION_DEFAULT_ON([xinput2],[don't use version 2 of the X Input Extension for input]) AC_ARG_WITH([file-notification],[AS_HELP_STRING([--with-file-notification=LIB], [use a file notification library (LIB one of: yes, inotify, kqueue, gfile, w32, no)])], |