mesa: Bump version to 9.0.3

This commit is contained in:
Andreas Boll 2013-02-21 15:26:23 +01:00
parent f84fe6aa2e
commit 183a28a34a
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.2
PACKAGE_VERSION=9.0.3
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=2
MESA_TINY=3
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.2],
AC_INIT([Mesa], [9.0.3],
[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 2
#define MESA_VERSION_STRING "9.0.2"
#define MESA_PATCH 3
#define MESA_VERSION_STRING "9.0.3"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))