changeset 21825:697991d2a2c4

Conditionally include xterm.h using HAVE_X_WINDOWS.
author Geoff Voelker <voelker@cs.washington.edu>
date Wed, 29 Apr 1998 04:34:05 +0000
parents 50cc84aa5d3c
children d18b1d70025c
files src/frame.c src/window.c src/xdisp.c
diffstat 3 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/frame.c	Wed Apr 29 04:31:59 1998 +0000
+++ b/src/frame.c	Wed Apr 29 04:34:05 1998 +0000
@@ -28,6 +28,8 @@
 #include "charset.h"
 #ifdef HAVE_WINDOW_SYSTEM
 #include "fontset.h"
+#endif
+#ifdef HAVE_X_WINDOWS
 #include "xterm.h"
 #endif
 #include "frame.h"
--- a/src/window.c	Wed Apr 29 04:31:59 1998 +0000
+++ b/src/window.c	Wed Apr 29 04:34:05 1998 +0000
@@ -31,7 +31,7 @@
 #include "keyboard.h"
 #include "blockinput.h"
 #include "dispextern.h"
-#ifdef HAVE_WINDOW_SYSTEM
+#ifdef HAVE_X_WINDOWS
 #include "xterm.h"
 #endif
 
--- a/src/xdisp.c	Wed Apr 29 04:31:59 1998 +0000
+++ b/src/xdisp.c	Wed Apr 29 04:34:05 1998 +0000
@@ -42,7 +42,7 @@
 #include "process.h"
 #include "region-cache.h"
 
-#ifdef HAVE_WINDOW_SYSTEM
+#ifdef HAVE_X_WINDOWS
 #include "xterm.h"
 #endif