mesa: Bump version to 9.0.2

This commit is contained in:
Andreas Boll 2013-01-20 15:18:44 +01:00
parent 81d40e66ad
commit 2b2ab2b3ea
4 changed files with 5 additions and 5 deletions

View file

@ -54,7 +54,7 @@ distclean-local:
# Rules for making release tarballs
PACKAGE_VERSION=9.0.1
PACKAGE_VERSION=9.0.2
PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)

View file

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

View file

@ -6,7 +6,7 @@ dnl Tell the user about autoconf.html in the --help output
m4_divert_once([HELP_END], [
See docs/autoconf.html for more details on the options for Mesa.])
AC_INIT([Mesa], [9.0.1],
AC_INIT([Mesa], [9.0.2],
[https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
AC_CONFIG_AUX_DIR([bin])
AC_CONFIG_MACRO_DIR([m4])

View file

@ -34,8 +34,8 @@ struct gl_context;
/* Mesa version */
#define MESA_MAJOR 9
#define MESA_MINOR 0
#define MESA_PATCH 1
#define MESA_VERSION_STRING "9.0.1"
#define MESA_PATCH 2
#define MESA_VERSION_STRING "9.0.2"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))