2012-06-12 09:05:03 +02:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
2019-05-06 12:50:34 +02:00
|
|
|
<title>Downloading and Unpacking</title>
|
2012-06-12 09:05:03 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="mesa.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2003-03-08 17:38:57 +00:00
|
|
|
|
2012-09-18 18:57:02 +02:00
|
|
|
<div class="header">
|
2019-05-06 13:26:47 +02:00
|
|
|
The Mesa 3D Graphics Library
|
2012-09-18 18:57:02 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<iframe src="contents.html"></iframe>
|
|
|
|
<div class="content">
|
|
|
|
|
2019-05-06 12:50:34 +02:00
|
|
|
<h1>Downloading and Unpacking</h1>
|
|
|
|
|
|
|
|
<h2>Downloading</h2>
|
2003-03-08 17:38:57 +00:00
|
|
|
|
|
|
|
<p>
|
2009-09-03 15:44:49 -06:00
|
|
|
Primary Mesa download site:
|
2016-03-29 12:54:10 -06:00
|
|
|
<a href="ftp://ftp.freedesktop.org/pub/mesa/">ftp.freedesktop.org</a> (FTP)
|
|
|
|
or <a href="https://mesa.freedesktop.org/archive/">mesa.freedesktop.org</a>
|
2017-06-30 12:09:32 +01:00
|
|
|
(HTTPS).
|
2003-03-08 17:38:57 +00:00
|
|
|
</p>
|
|
|
|
|
2017-02-08 04:27:00 -07:00
|
|
|
<p>
|
|
|
|
Starting with the first release of 2017, Mesa's version scheme is
|
2019-05-28 13:34:34 +02:00
|
|
|
year-based. Filenames are in the form <code>mesa-Y.N.P.tar.gz</code>, where
|
|
|
|
<code>Y</code> is the year (two digits), <code>N</code> is an incremental number
|
|
|
|
(starting at 0) and <code>P</code> is the patch number (0 for the first
|
2017-02-08 04:27:00 -07:00
|
|
|
release, 1 for the first patch after that).
|
|
|
|
</p>
|
|
|
|
|
2008-06-21 10:14:22 -06:00
|
|
|
<p>
|
2009-09-03 15:44:49 -06:00
|
|
|
When a new release is coming, release candidates (betas) may be found
|
2017-02-08 04:27:00 -07:00
|
|
|
in the same directory, and are recognisable by the
|
2019-05-28 13:34:34 +02:00
|
|
|
<code>mesa-Y.N.P-<b>rc</b>X.tar.gz</code> filename.
|
2008-06-21 10:14:22 -06:00
|
|
|
</p>
|
|
|
|
|
2005-09-10 16:57:22 +00:00
|
|
|
|
2019-05-06 12:50:34 +02:00
|
|
|
<h2>Unpacking</h2>
|
2012-04-19 08:56:02 -06:00
|
|
|
|
2005-09-10 16:57:22 +00:00
|
|
|
<p>
|
2019-05-28 13:34:34 +02:00
|
|
|
Mesa releases are available in two formats: <code>.tar.xz</code> and <code>.tar.gz</code>.
|
2006-07-12 20:14:43 +00:00
|
|
|
</p>
|
|
|
|
|
2005-09-10 16:57:22 +00:00
|
|
|
<p>
|
2017-02-08 04:27:00 -07:00
|
|
|
To unpack the tarball:
|
2019-04-18 16:12:08 +02:00
|
|
|
</p>
|
2005-09-10 16:57:22 +00:00
|
|
|
<pre>
|
2017-02-08 04:27:00 -07:00
|
|
|
tar xf mesa-Y.N.P.tar.xz
|
2005-09-10 16:57:22 +00:00
|
|
|
</pre>
|
2019-04-18 16:12:08 +02:00
|
|
|
<p>or</p>
|
2003-03-08 17:38:57 +00:00
|
|
|
<pre>
|
2017-02-08 04:27:00 -07:00
|
|
|
tar xf mesa-Y.N.P.tar.gz
|
2003-03-08 17:38:57 +00:00
|
|
|
</pre>
|
2005-09-10 16:57:22 +00:00
|
|
|
|
|
|
|
|
2019-05-06 12:50:34 +02:00
|
|
|
<h2>Contents</h2>
|
2003-03-08 17:38:57 +00:00
|
|
|
|
|
|
|
<p>
|
2005-09-10 16:57:22 +00:00
|
|
|
Proceed to the <a href="install.html">compilation and installation
|
2003-03-08 17:38:57 +00:00
|
|
|
instructions</a>.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
2019-05-06 12:50:34 +02:00
|
|
|
<h2>Demos, GLUT, and GLU</h2>
|
2012-08-23 16:39:20 -07:00
|
|
|
|
|
|
|
<p>
|
|
|
|
A package of SGI's GLU library is available
|
2012-09-18 19:31:28 +02:00
|
|
|
<a href="ftp://ftp.freedesktop.org/pub/mesa/glu/">here</a>
|
2012-08-23 16:39:20 -07:00
|
|
|
</p>
|
2012-04-19 08:56:02 -06:00
|
|
|
|
|
|
|
<p>
|
|
|
|
A package of Mark Kilgard's GLUT library is available
|
2012-09-18 19:31:28 +02:00
|
|
|
<a href="ftp://ftp.freedesktop.org/pub/mesa/glut/">here</a>
|
2012-04-19 08:56:02 -06:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
The Mesa demos collection is available
|
2012-09-18 19:31:28 +02:00
|
|
|
<a href="ftp://ftp.freedesktop.org/pub/mesa/demos/">here</a>
|
2012-04-19 08:56:02 -06:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2012-08-23 16:39:20 -07:00
|
|
|
In the past, GLUT, GLU and the Mesa demos were released in conjunction with
|
|
|
|
Mesa releases. But since GLUT, GLU and the demos change infrequently, they
|
|
|
|
were split off into their own git repositories:
|
|
|
|
|
2018-09-21 14:39:53 +01:00
|
|
|
<a href="https://gitlab.freedesktop.org/mesa/glut">GLUT</a>,
|
|
|
|
<a href="https://gitlab.freedesktop.org/mesa/glu">GLU</a> and
|
|
|
|
<a href="https://gitlab.freedesktop.org/mesa/demos">Demos</a>,
|
2012-04-19 08:56:02 -06:00
|
|
|
</p>
|
|
|
|
|
2012-09-18 18:57:02 +02:00
|
|
|
</div>
|
2012-06-12 09:05:03 +02:00
|
|
|
</body>
|
|
|
|
</html>
|