summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hellstrom <thellstrom@vmware.com>2016-01-20 11:51:46 +0100
committerThomas Hellstrom <thellstrom@vmware.com>2016-02-01 15:07:23 +0100
commitada41a5988df8414011ed37ec51cbb402c9c8716 (patch)
treebb55472257398c7bf7975343306c28b3578fff04
parent755e38f373a511bd774a61c9420a67f630f71037 (diff)
vmware/vmwgfx: Add missing includes of the config.h header.
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> Reviewed-by: Sinclair Yeh <syeh@vmware.com>
-rw-r--r--vmwgfx/vmwgfx_crtc.c3
-rw-r--r--vmwgfx/vmwgfx_ctrl.c3
-rw-r--r--vmwgfx/vmwgfx_dri2.c3
-rw-r--r--vmwgfx/vmwgfx_driver.c3
-rw-r--r--vmwgfx/vmwgfx_overlay.c3
-rw-r--r--vmwgfx/vmwgfx_tex_video.c3
6 files changed, 18 insertions, 0 deletions
diff --git a/vmwgfx/vmwgfx_crtc.c b/vmwgfx/vmwgfx_crtc.c
index 1e85b08..415847e 100644
--- a/vmwgfx/vmwgfx_crtc.c
+++ b/vmwgfx/vmwgfx_crtc.c
@@ -28,6 +28,9 @@
* Author: Jakob Bornecrantz <wallbraker@gmail.com>
* Author: Thomas Hellstrom <thellstrom@vmware.com>
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include <unistd.h>
#include <string.h>
diff --git a/vmwgfx/vmwgfx_ctrl.c b/vmwgfx/vmwgfx_ctrl.c
index 156d34c..811ca0a 100644
--- a/vmwgfx/vmwgfx_ctrl.c
+++ b/vmwgfx/vmwgfx_ctrl.c
@@ -31,6 +31,9 @@
* The implementation of the VMWARE_CTRL protocol extension that
* allows X clients to communicate with the driver.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include <xorg-server.h>
#include "dixstruct.h"
diff --git a/vmwgfx/vmwgfx_dri2.c b/vmwgfx/vmwgfx_dri2.c
index 9e0bc71..bb66aef 100644
--- a/vmwgfx/vmwgfx_dri2.c
+++ b/vmwgfx/vmwgfx_dri2.c
@@ -29,6 +29,9 @@
* Author: Thomas Hellstrom <thellstrom@vmware.com>
*
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include "xorg-server.h"
#include "xf86.h"
diff --git a/vmwgfx/vmwgfx_driver.c b/vmwgfx/vmwgfx_driver.c
index f38cf00..301cf49 100644
--- a/vmwgfx/vmwgfx_driver.c
+++ b/vmwgfx/vmwgfx_driver.c
@@ -29,6 +29,9 @@
* Author: Thomas Hellstrom <thellstrom@vmware.com>
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include <unistd.h>
#include "xorg-server.h"
diff --git a/vmwgfx/vmwgfx_overlay.c b/vmwgfx/vmwgfx_overlay.c
index 2b05b0e..49bad73 100644
--- a/vmwgfx/vmwgfx_overlay.c
+++ b/vmwgfx/vmwgfx_overlay.c
@@ -33,6 +33,9 @@
* See http://www.xfree86.org/current/DESIGN16.html
*
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include "xorg-server.h"
diff --git a/vmwgfx/vmwgfx_tex_video.c b/vmwgfx/vmwgfx_tex_video.c
index 18eb9dd..f2cc813 100644
--- a/vmwgfx/vmwgfx_tex_video.c
+++ b/vmwgfx/vmwgfx_tex_video.c
@@ -25,6 +25,9 @@
* Author: Thomas Hellstrom <thellstrom@vmware.com>
* Author: Zack Rusin <zackr@vmware.com>
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include "vmwgfx_driver.h"
#include "vmwgfx_drmi.h"