diff options
author | Eric Engestrom <eric.engestrom@imgtec.com> | 2018-02-01 11:12:05 +0000 |
---|---|---|
committer | Eric Engestrom <eric.engestrom@imgtec.com> | 2018-03-20 18:19:26 +0000 |
commit | 0926f0af54d654b1a95826066edcae30b8052581 (patch) | |
tree | 546efdeadf79644a90ca0c0418dbdea848b81ef4 /radeon | |
parent | 431f1a147e33b3fae7ea78a47d40a6014b682ebd (diff) |
meson,configure: include config.h automatically
This will prevent any more missing `#include "config.h"` bug, at the
cost of having to recompile some files that didn't need to be when
changing build options.
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'radeon')
-rw-r--r-- | radeon/radeon_bo.c | 3 | ||||
-rw-r--r-- | radeon/radeon_bo_gem.c | 3 | ||||
-rw-r--r-- | radeon/radeon_cs.c | 3 | ||||
-rw-r--r-- | radeon/radeon_cs_gem.c | 3 | ||||
-rw-r--r-- | radeon/radeon_cs_space.c | 3 | ||||
-rw-r--r-- | radeon/radeon_surface.c | 3 |
6 files changed, 0 insertions, 18 deletions
diff --git a/radeon/radeon_bo.c b/radeon/radeon_bo.c index 447f9280..821807bc 100644 --- a/radeon/radeon_bo.c +++ b/radeon/radeon_bo.c @@ -29,9 +29,6 @@ * Dave Airlie * Jérôme Glisse <glisse@freedesktop.org> */ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif #include <libdrm_macros.h> #include <radeon_bo.h> #include <radeon_bo_int.h> diff --git a/radeon/radeon_bo_gem.c b/radeon/radeon_bo_gem.c index fbd453d9..774b26e4 100644 --- a/radeon/radeon_bo_gem.c +++ b/radeon/radeon_bo_gem.c @@ -29,9 +29,6 @@ * Dave Airlie * Jérôme Glisse <glisse@freedesktop.org> */ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif #include <stdio.h> #include <stdint.h> #include <stdlib.h> diff --git a/radeon/radeon_cs.c b/radeon/radeon_cs.c index dffb869f..eb7859e5 100644 --- a/radeon/radeon_cs.c +++ b/radeon/radeon_cs.c @@ -1,6 +1,3 @@ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif #include "libdrm_macros.h" #include <stdio.h> #include "radeon_cs.h" diff --git a/radeon/radeon_cs_gem.c b/radeon/radeon_cs_gem.c index f3dccb6c..4d5fc13a 100644 --- a/radeon/radeon_cs_gem.c +++ b/radeon/radeon_cs_gem.c @@ -29,9 +29,6 @@ * Nicolai Haehnle <prefect_@gmx.net> * Jérôme Glisse <glisse@freedesktop.org> */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif #include <assert.h> #include <errno.h> #include <stdlib.h> diff --git a/radeon/radeon_cs_space.c b/radeon/radeon_cs_space.c index 69287be5..8531c345 100644 --- a/radeon/radeon_cs_space.c +++ b/radeon/radeon_cs_space.c @@ -25,9 +25,6 @@ */ /* */ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif #include <assert.h> #include <errno.h> #include <stdlib.h> diff --git a/radeon/radeon_surface.c b/radeon/radeon_surface.c index 04df77d6..3cafcfcb 100644 --- a/radeon/radeon_surface.c +++ b/radeon/radeon_surface.c @@ -26,9 +26,6 @@ * Authors: * Jérôme Glisse <jglisse@redhat.com> */ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif #include <stdbool.h> #include <assert.h> #include <errno.h> |