build fixes, rh9
authorKeith Whitwell <keith@tungstengraphics.com>
Sun, 23 Nov 2003 10:27:10 +0000 (10:27 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Sun, 23 Nov 2003 10:27:10 +0000 (10:27 +0000)
progs/tests/Makefile.X11
progs/tests/cva.c
progs/tests/dinoshade.c
progs/tests/fptexture.c
progs/tests/multipal.c

index f568c342c9af98fa2425e49c7ceccf41055fbbe6..b65f0e427d720488685ccfc3bea3cf58afa06d1b 100644 (file)
@@ -4,8 +4,9 @@
 # distro.  They're not too interesting but they're good for testing.
 
 TOP = ../..
+LIBDIR = $(TOP)/lib
 
-LIBS = $(APP_LIB_DEPS)
+LIBS = -L$(LIBDIR) $(APP_LIB_DEPS)
 
 SOURCES = antialias.c \
        bufferobj.c \
@@ -74,10 +75,10 @@ texrect: texrect.o readtex.o
        $(CC) texrect.o readtex.o $(LIBS) -o $@
 
 texrect.o: texrect.c readtex.h
-       $(CC) -c $(CFLAGS) $< -o $@
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
 
 readtex.o: readtex.c
-       $(CC) -c $(CFLAGS) $< -o $@
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
 
 
 readtex.h: $(TOP)/progs/util/readtex.h
index eff35048f3c04b89d71e3020d96289535dc9d510..b596a5a4d3ec73bff3462164c9387ff46592be89 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: cva.c,v 1.5 2003/01/28 15:31:35 brianp Exp $ */
+/* $Id: cva.c,v 1.6 2003/11/23 10:27:10 keithw Exp $ */
 
 /*
  * Trivial CVA test, good for testing driver fastpaths (especially
@@ -11,6 +11,7 @@
 #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 _WIN32
 #include <windows.h>
 #endif
index e3086bb3f0ba16e4b45578b317da66104763bb1f..1e4d4abfda8deec7a1f495f47f0751b1e9f3db37 100644 (file)
@@ -38,6 +38,7 @@
 #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 _WIN32
 #include <windows.h>
 #endif
index a62116b3201c432cad9826bc8dbdd35ec1bd2387..f57ad6282829ff083713e597c58bbd1ae3d672da 100644 (file)
@@ -8,7 +8,7 @@
 #define GL_GLEXT_PROTOTYPES
 #include <GL/glut.h>
 
-#include "readtex.c"
+#include "../util/readtex.c"
 
 
 #define TEXTURE_FILE "../images/girl.rgb"
index a2efab874af54b5b95c320e40b1478056cb8b639..9ac5bdf8df77e52c48faf734534ebd14401b5840 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: multipal.c,v 1.4 2002/10/18 17:47:36 kschultz Exp $ */
+/* $Id: multipal.c,v 1.5 2003/11/23 10:27:10 keithw Exp $ */
 
 /*
  * Test multitexture and paletted textures.
@@ -9,6 +9,7 @@
 #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 _WIN32
 #include <windows.h>
 #endif