mesa: include main/dd.h in t_vb_points.c and t_vp_build.c
authorBrian Paul <brianp@vmware.com>
Wed, 4 Mar 2009 03:45:45 +0000 (20:45 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 4 Mar 2009 03:45:45 +0000 (20:45 -0700)
For some reason makedepend doesn't seem to find the dependency on this
header in these two files.  Directly including the header is a work-around.

src/mesa/tnl/t_vb_points.c
src/mesa/tnl/t_vp_build.c

index 01d055c1dd8803682aa121f55da46955fd05f9e3..a52505b4b86f4d877c78e9e261fac2209b8205aa 100644 (file)
@@ -25,7 +25,9 @@
  *    Brian Paul
  */
 
+#include "main/glheader.h"
 #include "main/mtypes.h"
+#include "main/dd.h"
 #include "main/imports.h"
 #include "t_context.h"
 #include "t_pipeline.h"
index 7be4d95af6b6c121a48331109443529b2c833fbc..735937bbe29e81d638e6b4328d39d0fab360076c 100644 (file)
@@ -32,6 +32,7 @@
 
 #include "main/glheader.h"
 #include "main/ffvertex_prog.h"
+#include "main/dd.h"
 #include "t_vp_build.h"