From 66be7b4c2795b5a942f64821fc6525dfdfb3aba4 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Mon, 9 Sep 2013 16:27:18 -0700 Subject: [PATCH] docs: Clean up autoconf.html. Remove long dead options and clarify some things. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=69148 Reviewed-by: Brian Paul --- docs/autoconf.html | 37 ++++++++++--------------------------- 1 file changed, 10 insertions(+), 27 deletions(-) diff --git a/docs/autoconf.html b/docs/autoconf.html index a07a3ee..d4e8a35 100644 --- a/docs/autoconf.html +++ b/docs/autoconf.html @@ -123,24 +123,6 @@ directories.

There are also a few general options for altering the Mesa build:

-
--with-x
-

When the X11 development libraries are -needed, the pkg-config utility will -be used for locating them. If they cannot be found through -pkg-config a fallback routing using imake will -be used. In this case, the --with-x, ---x-includes and --x-libraries options can -control the use of X for Mesa.

-
- -
--enable-gl-osmesa
-

The OSMesa -library can be built on top of libGL for drivers that provide it. -This option controls whether to build libOSMesa. By default, this is -enabled for the Xlib driver and disabled otherwise. Note that this -option is different than using OSMesa as the driver.

-
-
--enable-debug

This option will enable compiler options and macros to aid in debugging the Mesa libraries.

@@ -155,12 +137,12 @@ assembly will not be used.

--enable-32-bit
--enable-64-bit
-

By default, the -build will compile code as directed by the environment variables +

By default, the build will compile code as directed by the environment +variables CC, CFLAGS, etc. If the compiler is gcc, these options offer a helper to add the compiler flags to force 32- or 64-bit code generation as used on the x86 and x86_64 -architectures.

+architectures. Note that these options are mutually exclusive.

@@ -171,19 +153,19 @@ architectures.

There are several different driver modes that Mesa can use. These are described in more detail in the basic installation instructions. The Mesa driver is controlled through the -configure option --with-driver. There are currently three supported -options in the configure script. +configure options --enable-xlib-glx, --enable-osmesa, +and --enable-dri.

-

Xlib

This is the default mode for building Mesa. +

Xlib

It uses Xlib as a software renderer to do all rendering. It corresponds -to the option --with-driver=xlib. The libX11 and libXext +to the option --enable-xlib-glx. The libX11 and libXext libraries, as well as the X11 development headers, will be need to support the Xlib driver.

DRI

This mode uses the DRI hardware drivers for accelerated OpenGL rendering. Enable the DRI drivers with the option ---with-driver=dri. See the basic +--enable-dri. See the basic installation instructions for details on prerequisites for the DRI drivers. @@ -223,7 +205,8 @@ and /usr/local/lib, respectively.

OSMesa

No libGL is built in this mode. Instead, the driver code is built into the Off-Screen Mesa (OSMesa) library. See the Off-Screen Rendering -page for more details. +page for more details. It corresponds to the option +--enable-osmesa.

-- 2.7.4