summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-04-18 10:48:57 -0600
committerBrian Paul <brianp@vmware.com>2009-04-18 10:48:57 -0600
commit87cb55e9c6e129fa6f286dc30e110177e9975297 (patch)
treea0560bdf34efc8c8e66f33df1966b78cd601d270
parente7d499f9356247cf0a2dc31f950460c4f6a0db35 (diff)
downloadmesa-87cb55e9c6e129fa6f286dc30e110177e9975297.tar.gz
mesa: bump version to 7.4.1
-rw-r--r--configs/default4
-rw-r--r--src/mesa/main/version.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/configs/default b/configs/default
index 7b79cf2c1b3..2970b458b90 100644
--- a/configs/default
+++ b/configs/default
@@ -9,8 +9,8 @@ CONFIG_NAME = default
# Version info
MESA_MAJOR=7
-MESA_MINOR=3
-MESA_TINY=0
+MESA_MINOR=4
+MESA_TINY=1
MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY)
# external projects. This should be useless now that we use libdrm.
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 84dcb263c6d..81fc32be482 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -1,6 +1,6 @@
/*
* Mesa 3-D graphics library
- * Version: 7.4
+ * Version: 7.4.1
*
* Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
*
@@ -31,7 +31,7 @@
#define MESA_MAJOR 7
#define MESA_MINOR 4
#define MESA_PATCH 0
-#define MESA_VERSION_STRING "7.4"
+#define MESA_VERSION_STRING "7.4.1"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))