]> git.eshelyaron.com Git - emacs.git/commitdiff
(HAVE_X_I18N): Moved here from xterm.h.
authorGerd Moellmann <gerd@gnu.org>
Tue, 14 Mar 2000 21:16:55 +0000 (21:16 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 14 Mar 2000 21:16:55 +0000 (21:16 +0000)
(HAVE_X11R6_XIM): Define.

src/config.in

index c18aa4062d246dacacc24566a62eed7a79cf21aa..9fb464e6f7ba72a08f26c625d3dfc2d569ad60a3 100644 (file)
@@ -490,3 +490,17 @@ extern char *getenv ();
 #include <stdlib.h>
 #endif
 #endif
+
+/* Define HAVE_X_I18N if we have usable i18n support.  */
+
+#ifdef HAVE_X11R6
+#define HAVE_X_I18N
+#elif defined HAVE_X11R5 && !defined X11R5_INHIBIT_I18N
+#define HAVE_X_I18N
+#endif
+
+/* Define HAVE_X11R6_XIM if we have usable X11R6-style XIM support.  */
+
+#if defined HAVE_X11R6 && !defined INHIBIT_X11R6_XIM
+#define HAVE_X11R6_XIM
+#endif