summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-10-22 22:45:18 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-10-22 22:45:18 +0000
commit3de5462ab1bb00f534c6f3d10eeb3b422f04c7c5 (patch)
tree6ab85a7365d04575470d3669b28f902e56beefa3
parenta7f81171534d46a964b4216f67abae72382cd6c4 (diff)
version bumps, etc for 4.1
-rw-r--r--Make-config4
-rw-r--r--Makefile.X114
-rw-r--r--docs/VERSIONS9
-rw-r--r--src/mesa/drivers/x11/fakeglx.c6
-rw-r--r--src/mesa/main/get.c8
5 files changed, 19 insertions, 12 deletions
diff --git a/Make-config b/Make-config
index 19402e27e8..8eb9a47b82 100644
--- a/Make-config
+++ b/Make-config
@@ -1,7 +1,7 @@
-# $Id: Make-config,v 1.50 2001/09/24 19:18:03 brianp Exp $
+# $Id: Make-config,v 1.51 2001/10/22 22:45:18 brianp Exp $
MESA_MAJOR=4
-MESA_MINOR=0
+MESA_MINOR=1
MESA_TINY=0
VERSION=$(MESA_MAJOR).$(MESA_MINOR)
diff --git a/Makefile.X11 b/Makefile.X11
index 7a68d147ea..d992adef9d 100644
--- a/Makefile.X11
+++ b/Makefile.X11
@@ -1,7 +1,7 @@
-# $Id: Makefile.X11,v 1.56 2001/10/17 20:44:26 brianp Exp $
+# $Id: Makefile.X11,v 1.57 2001/10/22 22:45:18 brianp Exp $
# Mesa 3-D graphics library
-# Version: 4.0
+# Version: 4.1
#
# Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
#
diff --git a/docs/VERSIONS b/docs/VERSIONS
index d44c76d8d4..019fbe47c2 100644
--- a/docs/VERSIONS
+++ b/docs/VERSIONS
@@ -1,4 +1,4 @@
-$Id: VERSIONS,v 1.73 2001/10/22 16:04:46 brianp Exp $
+$Id: VERSIONS,v 1.74 2001/10/22 22:45:18 brianp Exp $
Mesa Version History
@@ -897,3 +897,10 @@ Mesa Version History
- fixed a dangling pointer problem in the XMesa code (Chris Burghart)
- lighting didn't always produce the correct alpha value
- fixed 3DNow! code to not read past end of arrays (Andrew Lewycky)
+
+
+4.1 Month, ??, 2002
+ New:
+ -
+ Bug fixes:
+ -
diff --git a/src/mesa/drivers/x11/fakeglx.c b/src/mesa/drivers/x11/fakeglx.c
index 80666aae4d..fadc79e30b 100644
--- a/src/mesa/drivers/x11/fakeglx.c
+++ b/src/mesa/drivers/x11/fakeglx.c
@@ -1,8 +1,8 @@
-/* $Id: fakeglx.c,v 1.58 2001/09/23 16:11:27 brianp Exp $ */
+/* $Id: fakeglx.c,v 1.59 2001/10/22 22:45:18 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 4.0
+ * Version: 4.1
*
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
*
@@ -66,7 +66,7 @@
#define SERVER_MINOR_VERSION 4
/* This is appended onto the glXGetClient/ServerString version strings. */
-#define MESA_GLX_VERSION "Mesa 4.0"
+#define MESA_GLX_VERSION "Mesa 4.1"
/* Who implemented this GLX? */
#define VENDOR "Brian Paul"
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c
index efc95ecd85..39ea90040a 100644
--- a/src/mesa/main/get.c
+++ b/src/mesa/main/get.c
@@ -1,8 +1,8 @@
-/* $Id: get.c,v 1.69 2001/09/23 16:11:26 brianp Exp $ */
+/* $Id: get.c,v 1.70 2001/10/22 22:45:18 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 4.0
+ * Version: 4.1
*
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
*
@@ -5310,8 +5310,8 @@ _mesa_GetString( GLenum name )
GET_CURRENT_CONTEXT(ctx);
static const char *vendor = "Brian Paul";
static const char *renderer = "Mesa";
- static const char *version_1_2 = "1.2 Mesa 4.0";
- static const char *version_1_3 = "1.3 Mesa 4.0";
+ static const char *version_1_2 = "1.2 Mesa 4.1";
+ static const char *version_1_3 = "1.3 Mesa 4.1";
ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, 0);