diff options
| author | Po Lu | 2021-11-28 10:11:53 +0800 |
|---|---|---|
| committer | Po Lu | 2021-11-28 10:11:53 +0800 |
| commit | 08d1c405073f614d89bcdf7f6bd19e8c8aaf8356 (patch) | |
| tree | fc28db45720f72cfdbb53f2dac805ae36520a896 | |
| parent | 3c2afa66a217da84760849ed954245856f7e5810 (diff) | |
| download | emacs-08d1c405073f614d89bcdf7f6bd19e8c8aaf8356.tar.gz emacs-08d1c405073f614d89bcdf7f6bd19e8c8aaf8356.zip | |
Fix typos in configure.ac
* configure.ac: Fix typos in wording of XInput 2 options.
| -rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9cf192d4ba9..c36dffde84c 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -487,7 +487,7 @@ OPTION_DEFAULT_ON([modules],[don't compile with dynamic modules support]) | |||
| 487 | OPTION_DEFAULT_ON([threads],[don't compile with elisp threading support]) | 487 | OPTION_DEFAULT_ON([threads],[don't compile with elisp threading support]) |
| 488 | OPTION_DEFAULT_OFF([native-compilation],[compile with Emacs Lisp native compiler support]) | 488 | OPTION_DEFAULT_OFF([native-compilation],[compile with Emacs Lisp native compiler support]) |
| 489 | OPTION_DEFAULT_OFF([cygwin32-native-compilation],[use native compilation on 32-bit Cygwin]) | 489 | OPTION_DEFAULT_OFF([cygwin32-native-compilation],[use native compilation on 32-bit Cygwin]) |
| 490 | OPTION_DEFAULT_OFF([xinput2],[use version 2.0 the X Input Extension for input]) | 490 | OPTION_DEFAULT_OFF([xinput2],[use version 2 of the X Input Extension for input]) |
| 491 | 491 | ||
| 492 | AC_ARG_WITH([file-notification],[AS_HELP_STRING([--with-file-notification=LIB], | 492 | AC_ARG_WITH([file-notification],[AS_HELP_STRING([--with-file-notification=LIB], |
| 493 | [use a file notification library (LIB one of: yes, inotify, kqueue, gfile, w32, no)])], | 493 | [use a file notification library (LIB one of: yes, inotify, kqueue, gfile, w32, no)])], |
| @@ -4389,7 +4389,7 @@ if test "${HAVE_X11}" = "yes" && test "${with_xinput2}" != "no"; then | |||
| 4389 | [AC_CHECK_LIB(Xi, XIGrabButton, HAVE_XINPUT2=yes)]) | 4389 | [AC_CHECK_LIB(Xi, XIGrabButton, HAVE_XINPUT2=yes)]) |
| 4390 | fi | 4390 | fi |
| 4391 | if test $HAVE_XINPUT2 = yes; then | 4391 | if test $HAVE_XINPUT2 = yes; then |
| 4392 | AC_DEFINE(HAVE_XINPUT2, 1, [Define to 1 if the X Input Extension version 2.0 is present.]) | 4392 | AC_DEFINE(HAVE_XINPUT2, 1, [Define to 1 if the X Input Extension version 2.0 or later is present.]) |
| 4393 | if test "$USE_GTK_TOOLKIT" = "GTK2"; then | 4393 | if test "$USE_GTK_TOOLKIT" = "GTK2"; then |
| 4394 | AC_MSG_WARN([You are building Emacs with GTK+ 2 and the X Input Extension version 2. | 4394 | AC_MSG_WARN([You are building Emacs with GTK+ 2 and the X Input Extension version 2. |
| 4395 | This might lead to problems if your version of GTK+ is not built with support for XInput 2.]) | 4395 | This might lead to problems if your version of GTK+ is not built with support for XInput 2.]) |