diff options
author | Pierre Ossman <ossman@cendio.se> | 2015-01-29 10:22:00 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2015-01-29 10:22:00 +0100 |
commit | 614a121de708a7c3d6ed23a377a229a1d5c022dd (patch) | |
tree | 9d132011743c561612ad64388e8e116dc648b9fc /unix | |
parent | 9d9d1409f47ca6edc8f95e416a283820034a2cb3 (diff) | |
download | tigervnc-614a121de708a7c3d6ed23a377a229a1d5c022dd.tar.gz tigervnc-614a121de708a7c3d6ed23a377a229a1d5c022dd.zip |
Make sure we get prototypes for global DDX functions
Diffstat (limited to 'unix')
-rw-r--r-- | unix/xserver/hw/vnc/xvnc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/unix/xserver/hw/vnc/xvnc.c b/unix/xserver/hw/vnc/xvnc.c index 800e712b..2e0ddf9d 100644 --- a/unix/xserver/hw/vnc/xvnc.c +++ b/unix/xserver/hw/vnc/xvnc.c @@ -69,11 +69,15 @@ from the X Consortium. #include <sys/shm.h> #endif /* HAS_SHM */ #include "dix.h" +#include "os.h" #include "miline.h" #include "inputstr.h" #ifdef RANDR #include "randrstr.h" #endif /* RANDR */ +#ifdef DPMSExtension +#include "dpmsproc.h" +#endif #include <X11/keysym.h> extern char buildtime[]; #if XORG >= 17 |