OSDN Git Service

mesa/es: Fix symbol conflicts and warnings.
authorChia-I Wu <olvaffe@gmail.com>
Fri, 6 Nov 2009 08:49:04 +0000 (16:49 +0800)
committerBrian Paul <brianp@vmware.com>
Fri, 6 Nov 2009 21:19:23 +0000 (14:19 -0700)
drawtex.c was listed in LOCAL_ES1_SOURCES twice.  My mistake when
merging the patches.

Also, run gl_apitemp.py with -c to silence warnings and add target
"install".

Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
src/mesa/es/Makefile
src/mesa/es/glapi/Makefile
src/mesa/es/sources.mak

index 42347d0..48b11a6 100644 (file)
@@ -107,6 +107,9 @@ clean:
        -rm -f depend
        -rm -f *~
 
+# nothing to install
+install:
+
 subdirs:
        make -C glapi
        make -C $(MESA) asm_subdirs
index 5f2aa82..1e32af8 100644 (file)
@@ -52,7 +52,7 @@ endef
        $(call gen-glapi,-c)
 
 %/glapitemp.h: $(GLAPI)/gl_apitemp.py $(COMMON)
-       $(call gen-glapi)
+       $(call gen-glapi,-c)
 
 %/glprocs.h: $(GLAPI)/gl_procs.py $(COMMON)
        $(call gen-glapi,-c)
index 11f735d..f00e41b 100644 (file)
@@ -4,7 +4,6 @@ include $(MESA)/sources.mak
 
 LOCAL_ES1_SOURCES :=                   \
        main/api_exec_es1.c             \
-       main/drawtex.c                  \
        main/get_es1.c                  \
        main/specials_es1.c             \
        main/drawtex.c                  \