aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-06-26 15:38:07 +0000
committerGerd Moellmann2000-06-26 15:38:07 +0000
commitc6f7dae8280565b3f2b357967787d3d1849ee499 (patch)
tree91f4b69442289da283cc3130e3eae38364b1657f
parentcab90cd8570f914040c42aa7d6129dee868ff17a (diff)
downloademacs-c6f7dae8280565b3f2b357967787d3d1849ee499.tar.gz
emacs-c6f7dae8280565b3f2b357967787d3d1849ee499.zip
(--with-xim): New option.
-rw-r--r--configure.in11
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index a7a3e3a9a5a..1152b795d8d 100644
--- a/configure.in
+++ b/configure.in
@@ -94,7 +94,9 @@ AC_ARG_WITH(png,
94[ --with-png use -lpng for displaying PNG images]) 94[ --with-png use -lpng for displaying PNG images])
95AC_ARG_WITH(toolkit-scroll-bars, 95AC_ARG_WITH(toolkit-scroll-bars,
96[ --without-toolkit-scroll-bars 96[ --without-toolkit-scroll-bars
97 don't use Motif or Xaw3d scroll bars]) 97 don't use Motif or Xaw3d scroll bars])
98AC_ARG_WITH(xim,
99[ --without-xim don't use X11 XIM])
98 100
99#### Make srcdir absolute, if it isn't already. It's important to 101#### Make srcdir absolute, if it isn't already. It's important to
100#### avoid running the path through pwd unnecessary, since pwd can 102#### avoid running the path through pwd unnecessary, since pwd can
@@ -1742,6 +1744,13 @@ if test "${with_toolkit_scroll_bars}" != "no"; then
1742 fi 1744 fi
1743fi 1745fi
1744 1746
1747dnl Don't use X11 input methods if user specifies he doesn't want it
1748dnl with `--with-xim=no'.
1749
1750if test "${with_xim}" != "no"; then
1751 AC_DEFINE(USE_XIM)
1752fi
1753
1745### Use -lXpm if available, unless `--with-xpm=no'. 1754### Use -lXpm if available, unless `--with-xpm=no'.
1746HAVE_XPM=no 1755HAVE_XPM=no
1747if test "${HAVE_X11}" = "yes"; then 1756if test "${HAVE_X11}" = "yes"; then