diff options
author | Roland Mainz <roland.mainz@nrubsig.org> | 2004-04-10 09:05:49 +0000 |
---|---|---|
committer | Roland Mainz <roland.mainz@nrubsig.org> | 2004-04-10 09:05:49 +0000 |
commit | 01bb7f6a044b2f122e49b9ee9e79e46c4b660f49 (patch) | |
tree | 4855ac42058589a2f273147802bc76eb3c1cc86f | |
parent | 9eaa510831e9bde0eb2b9582bb95be614a24ac12 (diff) |
Resync to 2004-04-10 XORG-RELEASE-1 branchXPRINT_BEGIN
-rw-r--r-- | xdpyinfo.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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); |