diff options
author | Brian Paul <[email protected]> | 2015-02-24 17:56:45 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-02-26 08:38:39 -0700 |
commit | 95855dd32f4228d3c99e040b76f4357593b4b5a4 (patch) | |
tree | 6b95aa6734b4d50e4f7b1e96db23634349906895 | |
parent | 4f25a180115d6f7a6149ba8285a394e10aa04ef2 (diff) |
mesa: don't include math.h in compiler.h
Not needed by anything in that header. Include math.h or c99_math.h
where needed instead.
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/common/xmlconfig.c | 1 | ||||
-rw-r--r-- | src/mesa/drivers/x11/xm_tri.c | 1 | ||||
-rw-r--r-- | src/mesa/main/compiler.h | 1 | ||||
-rw-r--r-- | src/mesa/main/imports.c | 1 |
4 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/xmlconfig.c b/src/mesa/drivers/dri/common/xmlconfig.c index 518b4da994c..6357e92c59a 100644 --- a/src/mesa/drivers/dri/common/xmlconfig.c +++ b/src/mesa/drivers/dri/common/xmlconfig.c @@ -32,6 +32,7 @@ #include <assert.h> #include <expat.h> #include <fcntl.h> +#include <math.h> #include <unistd.h> #include <errno.h> #include "main/imports.h" diff --git a/src/mesa/drivers/x11/xm_tri.c b/src/mesa/drivers/x11/xm_tri.c index e9ec67640dc..528d10b2730 100644 --- a/src/mesa/drivers/x11/xm_tri.c +++ b/src/mesa/drivers/x11/xm_tri.c @@ -30,6 +30,7 @@ */ +#include "c99_math.h" #include "main/imports.h" #include "main/mtypes.h" #include "glxheader.h" diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h index a700ff9eb23..e644e2359c3 100644 --- a/src/mesa/main/compiler.h +++ b/src/mesa/main/compiler.h @@ -35,7 +35,6 @@ #include <assert.h> -#include <math.h> #include "util/macros.h" diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 896b11e8233..752cf5a429f 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -43,6 +43,7 @@ */ #include <stdarg.h> +#include "c99_math.h" #include "imports.h" #include "context.h" #include "mtypes.h" |