mesa: Bump version number to 8.0.5

Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com>
This commit is contained in:
Andreas Boll 2012-10-24 21:11:11 +02:00
parent 47a509c046
commit d8571a1acf
3 changed files with 4 additions and 4 deletions

View file

@ -184,7 +184,7 @@ ultrix-gcc:
# Rules for making release tarballs
PACKAGE_VERSION=8.0.4
PACKAGE_VERSION=8.0.5
PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)

View file

@ -10,7 +10,7 @@ CONFIG_NAME = default
# Version info
MESA_MAJOR=8
MESA_MINOR=0
MESA_TINY=4
MESA_TINY=5
MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY)
# external projects. This should be useless now that we use libdrm.

View file

@ -34,8 +34,8 @@ struct gl_context;
/* Mesa version */
#define MESA_MAJOR 8
#define MESA_MINOR 0
#define MESA_PATCH 4
#define MESA_VERSION_STRING "8.0.4"
#define MESA_PATCH 5
#define MESA_VERSION_STRING "8.0.5"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))