summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2013-07-17 16:28:16 -0700
committerCarl Worth <cworth@cworth.org>2013-07-17 16:28:16 -0700
commit4c4535988b30b0fb9ab2c253c24c1ad058be6f61 (patch)
treedd36277f47079077d24e8bfca77189c2a365cd91
parente292c4656af6a8b3cd6bfc584cf09b2d0cee9917 (diff)
mesa: Bump version to 9.1.5
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac2
-rw-r--r--src/mesa/main/version.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 99d74fa92c7..9c03dd8119a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -36,7 +36,7 @@ check-local:
# Rules for making release tarballs
-PACKAGE_VERSION=9.1.4
+PACKAGE_VERSION=9.1.5
PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)
diff --git a/configure.ac b/configure.ac
index 71b0366fbd5..d0f78a0fe6a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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.1.4],
+AC_INIT([Mesa], [9.1.5],
[https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
AC_CONFIG_AUX_DIR([bin])
AC_CONFIG_MACRO_DIR([m4])
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 7c8e42f76db..a069798407f 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -35,7 +35,7 @@ struct gl_context;
#define MESA_MAJOR 9
#define MESA_MINOR 1
#define MESA_PATCH 4
-#define MESA_VERSION_STRING "9.1.4"
+#define MESA_VERSION_STRING "9.1.5"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))