Mesa (master): mesa: fix mesa version string construction

Brian Paul brianp at kemper.freedesktop.org
Tue Oct 19 15:15:06 UTC 2010


Module: Mesa
Branch: master
Commit: 988b246c471c9c7ece1082682853e3744b702dd2
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=988b246c471c9c7ece1082682853e3744b702dd2

Author: Brian Paul <brianp at vmware.com>
Date:   Mon Oct 18 09:07:54 2010 -0600

mesa: fix mesa version string construction

Now that MESA_MINOR=10, we no longer need the extra '0' in the
version string.

---

 src/gallium/targets/libgl-xlib/Makefile |    2 +-
 src/glu/sgi/Makefile                    |    2 +-
 src/mesa/drivers/x11/Makefile           |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gallium/targets/libgl-xlib/Makefile b/src/gallium/targets/libgl-xlib/Makefile
index 79e516a..076a040 100644
--- a/src/gallium/targets/libgl-xlib/Makefile
+++ b/src/gallium/targets/libgl-xlib/Makefile
@@ -10,7 +10,7 @@ include $(TOP)/configs/current
 
 GL_MAJOR = 1
 GL_MINOR = 5
-GL_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
+GL_TINY = 0$(MESA_MAJOR)$(MESA_MINOR)0$(MESA_TINY)
 
 
 INCLUDE_DIRS = \
diff --git a/src/glu/sgi/Makefile b/src/glu/sgi/Makefile
index 20c3bed..c8b29ed 100644
--- a/src/glu/sgi/Makefile
+++ b/src/glu/sgi/Makefile
@@ -8,7 +8,7 @@ include $(TOP)/configs/current
 
 GLU_MAJOR = 1
 GLU_MINOR = 3
-GLU_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
+GLU_TINY = 0$(MESA_MAJOR)$(MESA_MINOR)0$(MESA_TINY)
 
 INCDIRS = -I$(TOP)/include -Iinclude -Iinternals -Ilibnurbs/internals -Ilibnurbs/interface -Ilibnurbs/nurbtess
 
diff --git a/src/mesa/drivers/x11/Makefile b/src/mesa/drivers/x11/Makefile
index f759da0..f94aae8 100644
--- a/src/mesa/drivers/x11/Makefile
+++ b/src/mesa/drivers/x11/Makefile
@@ -12,7 +12,7 @@ include $(TOP)/configs/current
 
 GL_MAJOR = 1
 GL_MINOR = 5
-GL_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
+GL_TINY = 0$(MESA_MAJOR)$(MESA_MINOR)0$(MESA_TINY)
 
 
 HEADERS = \




More information about the mesa-commit mailing list