Mesa (glsl-pp-rework-2): glsl/pp: Include missing headers.

2009-09-23 Thread Michał Król
Module: Mesa
Branch: glsl-pp-rework-2
Commit: 1ed1dc8b4197ef5a6b0b1fab6ef0694f379642d8
URL:
http://cgit.freedesktop.org/mesa/mesa/commit/?id=1ed1dc8b4197ef5a6b0b1fab6ef0694f379642d8

Author: Michal Krol 
Date:   Wed Sep 23 09:40:24 2009 +0200

glsl/pp: Include missing headers.

---

 src/glsl/pp/sl_pp_error.c  |1 +
 src/glsl/pp/sl_pp_expression.c |1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/glsl/pp/sl_pp_error.c b/src/glsl/pp/sl_pp_error.c
index e591f4b..df9b191 100644
--- a/src/glsl/pp/sl_pp_error.c
+++ b/src/glsl/pp/sl_pp_error.c
@@ -27,6 +27,7 @@
 
 #include 
 #include "sl_pp_process.h"
+#include "sl_pp_public.h"
 
 
 void
diff --git a/src/glsl/pp/sl_pp_expression.c b/src/glsl/pp/sl_pp_expression.c
index 5093ef6..3f6dfb5 100644
--- a/src/glsl/pp/sl_pp_expression.c
+++ b/src/glsl/pp/sl_pp_expression.c
@@ -27,6 +27,7 @@
 
 #include 
 #include "sl_pp_expression.h"
+#include "sl_pp_public.h"
 
 
 struct parse_context {

___
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-commit


Mesa (glsl-pp-rework-2): glsl/pp: Include missing headers.

2009-09-24 Thread Michał Król
Module: Mesa
Branch: glsl-pp-rework-2
Commit: 7a95a3c7c4ba49ec174681c36951e3c0672df06c
URL:
http://cgit.freedesktop.org/mesa/mesa/commit/?id=7a95a3c7c4ba49ec174681c36951e3c0672df06c

Author: Michal Krol 
Date:   Thu Sep 24 10:56:46 2009 +0200

glsl/pp: Include missing headers.

---

 src/glsl/pp/sl_pp_context.c|1 +
 src/glsl/pp/sl_pp_error.c  |1 +
 src/glsl/pp/sl_pp_expression.c |1 +
 src/glsl/pp/sl_pp_extension.c  |1 +
 src/glsl/pp/sl_pp_if.c |1 +
 src/glsl/pp/sl_pp_line.c   |1 +
 src/glsl/pp/sl_pp_pragma.c |1 +
 src/glsl/pp/sl_pp_process.c|2 ++
 src/glsl/pp/sl_pp_token.c  |1 +
 src/glsl/pp/sl_pp_version.c|1 +
 10 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/src/glsl/pp/sl_pp_context.c b/src/glsl/pp/sl_pp_context.c
index fd205de..8ce189d 100644
--- a/src/glsl/pp/sl_pp_context.c
+++ b/src/glsl/pp/sl_pp_context.c
@@ -26,6 +26,7 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_public.h"
 #include "sl_pp_context.h"
 
diff --git a/src/glsl/pp/sl_pp_error.c b/src/glsl/pp/sl_pp_error.c
index df9b191..a9eeff9 100644
--- a/src/glsl/pp/sl_pp_error.c
+++ b/src/glsl/pp/sl_pp_error.c
@@ -26,6 +26,7 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_process.h"
 #include "sl_pp_public.h"
 
diff --git a/src/glsl/pp/sl_pp_expression.c b/src/glsl/pp/sl_pp_expression.c
index 3f6dfb5..ec90478 100644
--- a/src/glsl/pp/sl_pp_expression.c
+++ b/src/glsl/pp/sl_pp_expression.c
@@ -26,6 +26,7 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_expression.h"
 #include "sl_pp_public.h"
 
diff --git a/src/glsl/pp/sl_pp_extension.c b/src/glsl/pp/sl_pp_extension.c
index 33193d0..4148fd9 100644
--- a/src/glsl/pp/sl_pp_extension.c
+++ b/src/glsl/pp/sl_pp_extension.c
@@ -26,6 +26,7 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_process.h"
 
 
diff --git a/src/glsl/pp/sl_pp_if.c b/src/glsl/pp/sl_pp_if.c
index c8e958e..a0b3635 100644
--- a/src/glsl/pp/sl_pp_if.c
+++ b/src/glsl/pp/sl_pp_if.c
@@ -26,6 +26,7 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_expression.h"
 #include "sl_pp_process.h"
 
diff --git a/src/glsl/pp/sl_pp_line.c b/src/glsl/pp/sl_pp_line.c
index 41ddaf6..fc2dd89 100644
--- a/src/glsl/pp/sl_pp_line.c
+++ b/src/glsl/pp/sl_pp_line.c
@@ -26,6 +26,7 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_public.h"
 #include "sl_pp_process.h"
 
diff --git a/src/glsl/pp/sl_pp_pragma.c b/src/glsl/pp/sl_pp_pragma.c
index 03269b6..489eb17 100644
--- a/src/glsl/pp/sl_pp_pragma.c
+++ b/src/glsl/pp/sl_pp_pragma.c
@@ -26,6 +26,7 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_process.h"
 
 
diff --git a/src/glsl/pp/sl_pp_process.c b/src/glsl/pp/sl_pp_process.c
index 67ed588..4b783e4 100644
--- a/src/glsl/pp/sl_pp_process.c
+++ b/src/glsl/pp/sl_pp_process.c
@@ -26,7 +26,9 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_process.h"
+#include "sl_pp_public.h"
 
 
 static void
diff --git a/src/glsl/pp/sl_pp_token.c b/src/glsl/pp/sl_pp_token.c
index 99a32a6..f232daf 100644
--- a/src/glsl/pp/sl_pp_token.c
+++ b/src/glsl/pp/sl_pp_token.c
@@ -26,6 +26,7 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_context.h"
 #include "sl_pp_token.h"
 
diff --git a/src/glsl/pp/sl_pp_version.c b/src/glsl/pp/sl_pp_version.c
index adf3017..db06523 100644
--- a/src/glsl/pp/sl_pp_version.c
+++ b/src/glsl/pp/sl_pp_version.c
@@ -26,6 +26,7 @@
  **/
 
 #include 
+#include 
 #include "sl_pp_public.h"
 #include "sl_pp_context.h"
 

___
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-commit