summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>2003-12-08 09:03:35 +0000
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>2003-12-08 09:03:35 +0000
commit58f88a29d2eeb9cc5f4658113d0ebe11f60ab61c (patch)
tree9ee6e62e631ff78f9eb2863a395830b0698d6e2f /progs
parent2799d2535ab013ec82c79e3f98f92cdef43dbdf3 (diff)
Committing in .
OpenVMS compile issues Modified Files: Mesa-newtree/progs/tests/cva.c Mesa-newtree/progs/tests/dinoshade.c Mesa-newtree/progs/tests/multipal.c Mesa-newtree/src/mesa/main/descrip.mms Mesa-newtree/src/mesa/tnl/descrip.mms Mesa-newtree/src/mesa/tnl/t_vtx_api.c ----------------------------------------------------------------------
Diffstat (limited to 'progs')
-rw-r--r--progs/tests/cva.c8
-rw-r--r--progs/tests/dinoshade.c6
-rw-r--r--progs/tests/multipal.c8
3 files changed, 17 insertions, 5 deletions
diff --git a/progs/tests/cva.c b/progs/tests/cva.c
index b596a5a4d3e..3f7960f53b6 100644
--- a/progs/tests/cva.c
+++ b/progs/tests/cva.c
@@ -1,4 +1,4 @@
-/* $Id: cva.c,v 1.6 2003/11/23 10:27:10 keithw Exp $ */
+/* $Id: cva.c,v 1.7 2003/12/08 09:03:35 joukj Exp $ */
/*
* Trivial CVA test, good for testing driver fastpaths (especially
@@ -11,7 +11,11 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
-#include <malloc.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
+#ifdef __VMS
+# include <stddef.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
+#else
+# include <malloc.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
+#endif
#ifdef _WIN32
#include <windows.h>
#endif
diff --git a/progs/tests/dinoshade.c b/progs/tests/dinoshade.c
index 1e4d4abfda8..d0a79c1923f 100644
--- a/progs/tests/dinoshade.c
+++ b/progs/tests/dinoshade.c
@@ -38,7 +38,11 @@
#include <stdlib.h>
#include <string.h>
#include <math.h> /* for cos(), sin(), and sqrt() */
-#include <malloc.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
+#ifdef __VMS
+# include <stddef.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
+#else
+# include <malloc.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
+#endif
#ifdef _WIN32
#include <windows.h>
#endif
diff --git a/progs/tests/multipal.c b/progs/tests/multipal.c
index 9ac5bdf8df7..c824b38703a 100644
--- a/progs/tests/multipal.c
+++ b/progs/tests/multipal.c
@@ -1,4 +1,4 @@
-/* $Id: multipal.c,v 1.5 2003/11/23 10:27:10 keithw Exp $ */
+/* $Id: multipal.c,v 1.6 2003/12/08 09:03:36 joukj Exp $ */
/*
* Test multitexture and paletted textures.
@@ -9,7 +9,11 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <malloc.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
+#ifdef __VMS
+# include <stddef.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
+#else
+# include <malloc.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
+#endif
#ifdef _WIN32
#include <windows.h>
#endif