summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/xf86vm.c
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/fragments/xf86vm.c')
-rw-r--r--waftools/fragments/xf86vm.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/waftools/fragments/xf86vm.c b/waftools/fragments/xf86vm.c
new file mode 100644
index 0000000000..195e514d6c
--- /dev/null
+++ b/waftools/fragments/xf86vm.c
@@ -0,0 +1,8 @@
+#include <X11/Xlib.h>
+#include <X11/extensions/xf86vmode.h>
+
+int main(int argc, char **argv)
+{
+ XF86VidModeQueryExtension(0, 0, 0);
+ return 0;
+}