summaryrefslogtreecommitdiff
path: root/src/mesa/main/version.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-05-27 21:24:40 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-05-27 21:24:40 +0000
commit2c5f93784ea1ba28ae15181917ff3e47656a93ad (patch)
treee16d9dcc3d63bacd11600409327ec07956e33cd4 /src/mesa/main/version.h
parent8750668ad71d45d97a0b07a2c23e68322aac4b10 (diff)
Version defines. include "version.h" in a few files.
Diffstat (limited to 'src/mesa/main/version.h')
-rw-r--r--src/mesa/main/version.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
new file mode 100644
index 0000000000..92c71b3bf4
--- /dev/null
+++ b/src/mesa/main/version.h
@@ -0,0 +1,42 @@
+/*
+ * Mesa 3-D graphics library
+ * Version: 5.1
+ *
+ * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included
+ * in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+
+#ifndef VERSION_H
+#define VERSION_H
+
+
+/* Mesa version */
+#define MESA_MAJOR 5
+#define MESA_MINOR 1
+#define MESA_PATCH 0
+#define MESA_VERSION_STRING "5.1"
+
+/* OpenGL API version */
+#define OPENGL_MAJOR 1
+#define OPENGL_MINOR 4
+#define OPENGL_VERSION_STRING "1.4"
+
+
+#endif /* VERSION_H */