diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-05-01 15:57:02 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-05-20 12:16:15 +0200 |
commit | e9dcab679cb686b25df921c2c233198cb9dcfbb8 (patch) | |
tree | 622e3dc0cf971d4962eecac6dc27ae3a245afb72 /nx-X11/lib/Xrandr/test.c | |
parent | 24903c921fcab7143d48ca9ba1f47cd8d6696fb5 (diff) | |
download | nx-libs-e9dcab679cb686b25df921c2c233198cb9dcfbb8.tar.gz nx-libs-e9dcab679cb686b25df921c2c233198cb9dcfbb8.tar.bz2 nx-libs-e9dcab679cb686b25df921c2c233198cb9dcfbb8.zip |
library clean-up: Don't build libNX_Xrandr anymore. Use system's libXrandr shared library.
Diffstat (limited to 'nx-X11/lib/Xrandr/test.c')
-rw-r--r-- | nx-X11/lib/Xrandr/test.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/nx-X11/lib/Xrandr/test.c b/nx-X11/lib/Xrandr/test.c deleted file mode 100644 index 01e67eba0..000000000 --- a/nx-X11/lib/Xrandr/test.c +++ /dev/null @@ -1,21 +0,0 @@ -/* $XFree86$ */ - -#include <stdio.h> -#include <X11/Xlib.h> -#include "Xrandr.h" - -main (int argc, char **argv) - -{ - char *display_name = ":0"; - Display *display; - int major, minor, status; - - if ((display = XOpenDisplay (display_name)) == NULL) { - fprintf(stderr, "Can't open display!\n"); - } - status = XRRQueryVersion (display, &major, &minor); - fprintf(stderr, "status = %d, major = %d, minor = %d\n, - status, major, minor"); - -} |