* configure.ac: Doc fixes related to --with-xim.
This commit is contained in:
parent
d0d162c2d6
commit
2695b7e745
1 changed files with 5 additions and 4 deletions
|
@ -362,7 +362,7 @@ OPTION_DEFAULT_ON([m17n-flt],[don't use m17n-flt for text shaping])
|
||||||
|
|
||||||
OPTION_DEFAULT_ON([toolkit-scroll-bars],[don't use Motif or Xaw3d scroll bars])
|
OPTION_DEFAULT_ON([toolkit-scroll-bars],[don't use Motif or Xaw3d scroll bars])
|
||||||
OPTION_DEFAULT_ON([xaw3d],[don't use Xaw3d])
|
OPTION_DEFAULT_ON([xaw3d],[don't use Xaw3d])
|
||||||
OPTION_DEFAULT_ON([xim],[don't use X11 XIM])
|
OPTION_DEFAULT_ON([xim],[at runtime, default X11 XIM to off])
|
||||||
AC_ARG_WITH([ns],[AS_HELP_STRING([--with-ns],
|
AC_ARG_WITH([ns],[AS_HELP_STRING([--with-ns],
|
||||||
[use Nextstep (macOS Cocoa or GNUstep) windowing system.
|
[use Nextstep (macOS Cocoa or GNUstep) windowing system.
|
||||||
On by default on macOS.])],[],[with_ns=maybe])
|
On by default on macOS.])],[],[with_ns=maybe])
|
||||||
|
@ -3149,11 +3149,12 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
||||||
AC_DEFINE(HAVE_XIM, 1, [Define to 1 if XIM is available])],
|
AC_DEFINE(HAVE_XIM, 1, [Define to 1 if XIM is available])],
|
||||||
HAVE_XIM=no)
|
HAVE_XIM=no)
|
||||||
|
|
||||||
dnl '--with-xim' now controls only the initial value of use_xim at run time.
|
dnl Note this is non-standard. --with-xim does not control whether
|
||||||
|
dnl XIM support is compiled in, it only affects the runtime default of
|
||||||
|
dnl use_xim in xterm.c.
|
||||||
if test "${with_xim}" != "no"; then
|
if test "${with_xim}" != "no"; then
|
||||||
AC_DEFINE(USE_XIM, 1,
|
AC_DEFINE(USE_XIM, 1,
|
||||||
[Define to 1 if we should use XIM, if it is available.])
|
[Define to 1 to default runtime use of XIM to on.])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue