Mesa (master): mesa: trim down #includes in compiler.h

Brian Paul brianp at kemper.freedesktop.org
Thu Feb 26 15:45:36 UTC 2015


Module: Mesa
Branch: master
Commit: 4f25a180115d6f7a6149ba8285a394e10aa04ef2
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4f25a180115d6f7a6149ba8285a394e10aa04ef2

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Feb 24 17:48:31 2015 -0700

mesa: trim down #includes in compiler.h

Don't include stuff we don't need.  Fix a few #includes elsewhere to
keep thing building.

Reviewed-by: Matt Turner <mattst88 at gmail.com>
Reviewed-by: Jose Fonseca <jfonseca at vmware.com>

---

 src/mesa/main/compiler.h                 |    3 ---
 src/mesa/main/cpuinfo.c                  |    2 +-
 src/mesa/main/imports.h                  |    2 ++
 src/mesa/program/prog_parameter_layout.c |    2 +-
 4 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h
index 12c02b2..a700ff9 100644
--- a/src/mesa/main/compiler.h
+++ b/src/mesa/main/compiler.h
@@ -36,9 +36,6 @@
 
 #include <assert.h>
 #include <math.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
 
 #include "util/macros.h"
 
diff --git a/src/mesa/main/cpuinfo.c b/src/mesa/main/cpuinfo.c
index 0755d6b..67f22ab 100644
--- a/src/mesa/main/cpuinfo.c
+++ b/src/mesa/main/cpuinfo.c
@@ -23,7 +23,7 @@
  */
 
 
-#include "main/compiler.h"
+#include "main/imports.h"
 #include "main/cpuinfo.h"
 
 
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index d886427..2af45a3 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -36,6 +36,8 @@
 #define IMPORTS_H
 
 
+#include <stdlib.h>
+#include <string.h>
 #include "compiler.h"
 #include "glheader.h"
 #include "errors.h"
diff --git a/src/mesa/program/prog_parameter_layout.c b/src/mesa/program/prog_parameter_layout.c
index e834690..282a367 100644
--- a/src/mesa/program/prog_parameter_layout.c
+++ b/src/mesa/program/prog_parameter_layout.c
@@ -28,7 +28,7 @@
  * \author Ian Romanick <ian.d.romanick at intel.com>
  */
 
-#include "main/compiler.h"
+#include "main/imports.h"
 #include "main/mtypes.h"
 #include "prog_parameter.h"
 #include "prog_parameter_layout.h"




More information about the mesa-commit mailing list