aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-03-14 21:16:55 +0000
committerGerd Moellmann2000-03-14 21:16:55 +0000
commit25e9f929ec37a55bd5ee933f6e69d7bb25282e4e (patch)
tree4ca590dff46f69369fa96a06cc3eacb5e2dcb804 /src
parent383d6ffc5612a0113ffdac23a7e3dcfceb5100bd (diff)
downloademacs-25e9f929ec37a55bd5ee933f6e69d7bb25282e4e.tar.gz
emacs-25e9f929ec37a55bd5ee933f6e69d7bb25282e4e.zip
(HAVE_X_I18N): Moved here from xterm.h.
(HAVE_X11R6_XIM): Define.
Diffstat (limited to 'src')
-rw-r--r--src/config.in14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/config.in b/src/config.in
index c18aa4062d2..9fb464e6f7b 100644
--- a/src/config.in
+++ b/src/config.in
@@ -490,3 +490,17 @@ extern char *getenv ();
490#include <stdlib.h> 490#include <stdlib.h>
491#endif 491#endif
492#endif 492#endif
493
494/* Define HAVE_X_I18N if we have usable i18n support. */
495
496#ifdef HAVE_X11R6
497#define HAVE_X_I18N
498#elif defined HAVE_X11R5 && !defined X11R5_INHIBIT_I18N
499#define HAVE_X_I18N
500#endif
501
502/* Define HAVE_X11R6_XIM if we have usable X11R6-style XIM support. */
503
504#if defined HAVE_X11R6 && !defined INHIBIT_X11R6_XIM
505#define HAVE_X11R6_XIM
506#endif