mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-21 06:55:39 +00:00
(--with-xim): New option.
This commit is contained in:
parent
cab90cd857
commit
c6f7dae828
11
configure.in
11
configure.in
@ -94,7 +94,9 @@ AC_ARG_WITH(png,
|
||||
[ --with-png use -lpng for displaying PNG images])
|
||||
AC_ARG_WITH(toolkit-scroll-bars,
|
||||
[ --without-toolkit-scroll-bars
|
||||
don't use Motif or Xaw3d scroll bars])
|
||||
don't use Motif or Xaw3d scroll bars])
|
||||
AC_ARG_WITH(xim,
|
||||
[ --without-xim don't use X11 XIM])
|
||||
|
||||
#### Make srcdir absolute, if it isn't already. It's important to
|
||||
#### avoid running the path through pwd unnecessary, since pwd can
|
||||
@ -1742,6 +1744,13 @@ if test "${with_toolkit_scroll_bars}" != "no"; then
|
||||
fi
|
||||
fi
|
||||
|
||||
dnl Don't use X11 input methods if user specifies he doesn't want it
|
||||
dnl with `--with-xim=no'.
|
||||
|
||||
if test "${with_xim}" != "no"; then
|
||||
AC_DEFINE(USE_XIM)
|
||||
fi
|
||||
|
||||
### Use -lXpm if available, unless `--with-xpm=no'.
|
||||
HAVE_XPM=no
|
||||
if test "${HAVE_X11}" = "yes"; then
|
||||
|
Loading…
Reference in New Issue
Block a user