diff options
author | Brian Paul <[email protected]> | 2008-08-16 09:39:10 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-16 09:39:10 -0600 |
commit | 7970b2a908822ad009d29312e69be9eb2b7a5dd2 (patch) | |
tree | e1c30e0a721baeec03386d69a13e19c57fc5602f | |
parent | c0dd9122fdedd4bcab5bc0b3bbb490e6b62fac83 (diff) |
prep for 7.1 rc4
-rw-r--r-- | Makefile | 11 | ||||
-rw-r--r-- | src/mesa/main/version.h | 2 |
2 files changed, 7 insertions, 6 deletions
@@ -174,10 +174,10 @@ ultrix-gcc: # Rules for making release tarballs -DIRECTORY = Mesa-7.1-rc3 -LIB_NAME = MesaLib-7.1-rc3 -DEMO_NAME = MesaDemos-7.1-rc3 -GLUT_NAME = MesaGLUT-7.1-rc3 +DIRECTORY = Mesa-7.1-rc4 +LIB_NAME = MesaLib-7.1-rc4 +DEMO_NAME = MesaDemos-7.1-rc4 +GLUT_NAME = MesaGLUT-7.1-rc4 MAIN_FILES = \ $(DIRECTORY)/Makefile* \ @@ -395,7 +395,8 @@ DEMO_FILES = \ $(DIRECTORY)/progs/samples/*.c \ $(DIRECTORY)/progs/glsl/Makefile* \ $(DIRECTORY)/progs/glsl/*.c \ - $(DIRECTORY)/progs/glsl/*.txt \ + $(DIRECTORY)/progs/glsl/*.frag \ + $(DIRECTORY)/progs/glsl/*.vert \ $(DIRECTORY)/progs/windml/Makefile.ugl \ $(DIRECTORY)/progs/windml/*.c \ $(DIRECTORY)/progs/windml/*.bmp \ diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index 4258a114ed0..a9ef4bdffad 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -31,7 +31,7 @@ #define MESA_MAJOR 7 #define MESA_MINOR 1 #define MESA_PATCH 0 -#define MESA_VERSION_STRING "7.1 rc3" +#define MESA_VERSION_STRING "7.1 rc4" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |