From 8066a6e589caee65053a057410ed5866f3873e34 Mon Sep 17 00:00:00 2001 From: Egbert Eich Date: Thu, 15 Apr 2004 10:17:41 +0000 Subject: Merged changes from RELEASE-1 branch --- xdpyinfo.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/xdpyinfo.c b/xdpyinfo.c index 001cbd1..607078f 100644 --- a/xdpyinfo.c +++ b/xdpyinfo.c @@ -174,6 +174,18 @@ print_display_info(Display *dpy) printf("\n"); } + if (strstr(ServerVendor (dpy), "X.Org")) { + int vendrel = VendorRelease(dpy); + + printf("X.Org version: "); + printf("%d.%d.%d", vendrel / 10000000, + (vendrel / 100000) % 100, + (vendrel / 1000) % 100); + if (vendrel % 1000) + printf(".%d", vendrel % 1000); + printf("\n"); + } + req_size = XExtendedMaxRequestSize (dpy); if (!req_size) req_size = XMaxRequestSize (dpy); printf ("maximum request size: %ld bytes\n", req_size * 4); -- cgit v1.2.3