mesa/docs/download.html

104 lines
2.2 KiB
HTML
Raw Normal View History

<HTML>
<TITLE>Getting Mesa</TITLE>
2005-01-20 03:55:10 +00:00
<link rel="stylesheet" type="text/css" href="mesa.css"></head>
<BODY>
2005-09-10 17:57:22 +01:00
<H1>Downloading</H1>
<p>
Primary Mesa download site:
<a href="ftp://ftp.freedesktop.org/pub/mesa/"
target="_parent">freedesktop.org</a> (FTP)
</p>
<p>
When a new release is coming, release candidates (betas) may be found
<a href="ftp://ftp.freedesktop.org/pub/mesa/beta/" target="_parent">here</a>.
</p>
2005-09-10 17:57:22 +01:00
<p>
The Mesa package is named MesaLib-x.y.z.{tar.bz2, tar.gz, zip} where x.y.z
is the version. There are three types of compressed archives.
2005-09-10 17:57:22 +01:00
</p>
<p>
There's also the MesaGLUT-x.y.z.{tar.bz2, tar.gz, zip} packages which
contain Mark Kilgard's GLUT library.
This is optional.
Most Linux distributions include an implementation of GLUT (such as freeglut).
2005-09-10 17:57:22 +01:00
</p>
2006-07-12 21:14:43 +01:00
<p>
In the past, the Mesa demos collection was distributed as
MesaDemos-x.y.z.{tar.bz2, tar.gz, zip}.
Now, the
<a href="ftp://ftp.freedesktop.org/pub/mesa/demos/" target="_parent">
Mesa demos</a> are distributed separately.
2006-07-12 21:14:43 +01:00
</p>
2005-09-10 17:57:22 +01:00
<H1>Unpacking</H1>
<p>
To unpack .tar.gz files:
2005-09-10 17:57:22 +01:00
</p>
<pre>
tar zxf MesaLib-x.y.z.tar.gz
2005-09-10 17:57:22 +01:00
</pre>
or
<pre>
gzcat MesaLib-x.y.z.tar.gz | tar xf -
2005-09-10 17:57:22 +01:00
</pre>
or
<pre>
gunzip MesaLib-x.y.z.tar.gz ; tar xf MesaLib-x.y.z.tar
</pre>
<p>
To unpack .tar.bz2 files:
</p>
2005-09-10 17:57:22 +01:00
<pre>
bunzip2 -c MesaLib-x.y.z.tar.gz | tar xf -
2005-09-10 17:57:22 +01:00
</pre>
<p>
To unpack .zip files:
</p>
2005-09-10 17:57:22 +01:00
<pre>
unzip MesaLib-x.y.z.zip
2005-09-10 17:57:22 +01:00
</pre>
<h1>Contents</h1>
<p>
2006-07-12 21:14:43 +01:00
After unpacking you'll have these files and directories (among others):
</p>
<pre>
2005-09-10 17:57:22 +01:00
Makefile - top-level Makefile for most systems
configs/ - makefile parameter files for various systems
include/ - GL header (include) files
2003-09-04 00:04:31 +01:00
bin/ - shell scripts for making shared libraries, etc
docs/ - documentation
2003-09-04 00:04:31 +01:00
src/ - source code for libraries
src/mesa - sources for the main Mesa library and device drivers
src/gallium - sources for Gallium and Gallium drivers
2003-09-04 00:04:31 +01:00
src/glu - libGLU source code
2006-07-12 21:14:43 +01:00
src/glx - sources for building libGL with full GLX and DRI support
2003-09-04 00:04:31 +01:00
src/glw - Xt/Motif/OpenGL widget code
2005-09-10 17:57:22 +01:00
</pre>
2003-09-04 00:04:31 +01:00
If you downloaded and unpacked the MesaGLUT.x.y.z package:
2005-09-10 17:57:22 +01:00
<pre>
src/glut - GLUT library source code
</pre>
<p>
2005-09-10 17:57:22 +01:00
Proceed to the <a href="install.html">compilation and installation
instructions</a>.
</p>
</BODY>
</HTML>