summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin E Martin <kem@kem.org>2004-09-02 05:50:38 +0000
committerKevin E Martin <kem@kem.org>2004-09-02 05:50:38 +0000
commit4d275dcc29658972a3d7c2e72b812140819a10c3 (patch)
tree329a2f8e404108c92a41de84abe9852ee207b10a
parenta667763d5b733f5ae2d8a3ca7e1e99d3deed2830 (diff)
libXaw.
-rw-r--r--xdpyinfo.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/xdpyinfo.c b/xdpyinfo.c
index 4d9c341..598cd9c 100644
--- a/xdpyinfo.c
+++ b/xdpyinfo.c
@@ -73,9 +73,9 @@ in this Software without prior written authorization from The Open Group.
#ifdef DMX
#include <X11/extensions/dmxext.h>
#endif
-#ifdef XPRINT
+#ifdef INCLUDE_XPRINT_SUPPORT
#include <X11/extensions/Print.h>
-#endif
+#endif /* INCLUDE_XPRINT_SUPPORT */
#include <X11/Xos.h>
#include <stdio.h>
#include <stdlib.h>
@@ -388,7 +388,7 @@ print_screen_info(Display *dpy, int scr)
printf ("\n");
printf ("screen #%d:\n", scr);
-#ifdef XPRINT
+#ifdef INCLUDE_XPRINT_SUPPORT
/* Check whether this is a screen of a print DDX */
if (hasExtension(dpy, XP_PRINTNAME)) {
Screen **pscreens;
@@ -404,7 +404,7 @@ print_screen_info(Display *dpy, int scr)
XFree(pscreens);
}
printf (" print screen: %s\n", isPrintScreen?"yes":"no");
-#endif
+#endif /* INCLUDE_XPRINT_SUPPORT */
if (isPrintScreen) {
/* Print resolution is set on a per-printer basis (per-document
@@ -1200,7 +1200,7 @@ static int print_dmx_info(Display *dpy, char *extname)
#endif /* DMX */
-#ifdef XPRINT
+#ifdef INCLUDE_XPRINT_SUPPORT
static
void print_xprint_attrpool(const char *name, const char *attrpool)
{
@@ -1295,7 +1295,7 @@ print_xprint_info(Display *dpy, char *extname)
return 1;
}
-#endif
+#endif /* INCLUDE_XPRINT_SUPPORT */
/* utilities to manage the list of recognized extensions */
@@ -1347,9 +1347,9 @@ ExtensionPrintInfo known_extensions[] =
#ifdef DMX
{"DMX", print_dmx_info, False},
#endif
-#ifdef XPRINT
+#ifdef INCLUDE_XPRINT_SUPPORT
{XP_PRINTNAME, print_xprint_info, False},
-#endif
+#endif /* INCLUDE_XPRINT_SUPPORT */
/* add new extensions here */
};