From 9065bab37e80d04e01af0d516db04aa9985a4381 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Sat, 9 Mar 2013 00:23:20 -0800 Subject: [PATCH] mesa: Remove unused version #defines from version.h. Reviewed-by: Eric Anholt --- docs/devinfo.html | 2 -- src/mesa/main/version.h | 11 ----------- 2 files changed, 13 deletions(-) diff --git a/docs/devinfo.html b/docs/devinfo.html index d64171a..c89bfc0 100644 --- a/docs/devinfo.html +++ b/docs/devinfo.html @@ -200,8 +200,6 @@ branch is relevant.
PACKAGE_VERSION
configure.ac
AC_INIT
-
src/mesa/main/version.h
-
MESA_MAJOR, MESA_MINOR, MESA_PATCH and MESA_VERSION_STRING

diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index c1cb317..b4f8d85 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -31,17 +31,6 @@ struct gl_context; -/* Mesa version */ -#define MESA_MAJOR 9 -#define MESA_MINOR 2 -#define MESA_PATCH 0 -#define MESA_VERSION_STRING "9.2-devel" - -/* To make version comparison easy */ -#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) -#define MESA_VERSION_CODE MESA_VERSION(MESA_MAJOR, MESA_MINOR, MESA_PATCH) - - extern void _mesa_compute_version(struct gl_context *ctx); -- 2.7.4