aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/version.c
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2013-03-09 00:25:45 -0800
committerMatt Turner <[email protected]>2013-03-12 17:02:21 -0700
commit439c3d4e313370823d49b53f031697cc8b18d171 (patch)
treefd0128dd9f8be183b6be9ac16ec1eb01fefbce51 /src/mesa/main/version.c
parent42c1b33f6d5ee1ab4ab7fdc8a7ab2c1dcd9e43e6 (diff)
mesa: Replace MESA_VERSION with PACKAGE_VERSION.
One fewer place to have to update. Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/version.c')
-rw-r--r--src/mesa/main/version.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/version.c b/src/mesa/main/version.c
index c9031898129..3d4af5923c6 100644
--- a/src/mesa/main/version.c
+++ b/src/mesa/main/version.c
@@ -99,7 +99,7 @@ create_version_string(struct gl_context *ctx, const char *prefix)
ctx->VersionString = malloc(max);
if (ctx->VersionString) {
_mesa_snprintf(ctx->VersionString, max,
- "%s%u.%u%s Mesa " MESA_VERSION_STRING
+ "%s%u.%u%s Mesa " PACKAGE_VERSION
#ifdef MESA_GIT_SHA1
" (" MESA_GIT_SHA1 ")"
#endif