]> source.dussan.org Git - tigervnc.git/commitdiff
Avoid error/warning about implicit function declaration
authorJan Grulich <jgrulich@redhat.com>
Wed, 27 Jun 2018 11:13:46 +0000 (13:13 +0200)
committerPierre Ossman <ossman@cendio.se>
Thu, 28 Jun 2018 11:27:29 +0000 (13:27 +0200)
Function xorgGlxCreateVendor() is defined in glx_extinit.h, if this header is
not included, we might get either error or warning. This header also need to
be included after scrninststr.h header as it defines some structures used
in glx_extinit.h

(cherry picked from commit 8c6c584377feba0e3b99eecb3ef33b28cee318cb)

unix/xserver/hw/vnc/xvnc.c

index 88a5e422c29dc6c5266235a991e20dd64ad61e8f..9dd4e1c6fb319af184dfac9e84c7d1867b4599ce 100644 (file)
@@ -47,6 +47,9 @@ from the X Consortium.
 #include <X11/Xproto.h>
 #include <X11/Xos.h>
 #include "scrnintstr.h"
+#if XORG >= 120
+#include "glx_extinit.h"
+#endif
 #include "servermd.h"
 #include "fb.h"
 #include "mi.h"