Re: [Mesa3d-dev] is mesa linux-directfb software only?

2007-12-07 Thread Claudio Ciccani
Marten van der Honing wrote: Hello, Is mesa linux-directfb software only, or does it support dri also? Thanks for your answers in advance. Greetings, M van der Honing Software only, actually. -- Regards, Claudio Ciccani [EMAIL PROTECTED] http://directfb.org

[Mesa3d-dev] [PATCH 07/10] autoconf: Configurable demos directories

2007-12-07 Thread Dan Nicholson
The user can request specific demos directories to build in. For example: ./configure --with-demos=demos,xdemos The drawback is that we don't check for the necessary libararies in that case, only that the directory in progs/ exists. --- configure.ac | 43

[Mesa3d-dev] [PATCH 10/10] autoconf: Output summary information from configure

2007-12-07 Thread Dan Nicholson
Report some of the common settings back to the user after configure has completed. --- configure.ac | 44 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index c639378..94fb9e3 100644 --- a/configure.ac +++

[Mesa3d-dev] [PATCH 08/10] autoconf: Allow static library builds

2007-12-07 Thread Dan Nicholson
Allow the user to specify that they want static libraries through the --{enable,disable}-{static,shared} switches like libtool. The mesa build only allows for one at a time, so static will be chosen if someone has passed --enable-static or --disable-shared. This also allows the mklib options to

[Mesa3d-dev] [PATCH 04/10] autoconf: Add support for shared DRI build on linux and freebsd

2007-12-07 Thread Dan Nicholson
Added autoconf bits to allow using DRI as the driver through the option --with-dri-driver=DRIVER. The options are x11 (default) and dri. Three DRI specific options for controlling the driver directory, direct rendering and TLS are also added. The DRI will probably not work for platforms besides

[Mesa3d-dev] [PATCH 05/10] autoconf: Add support for osmesa-only builds

2007-12-07 Thread Dan Nicholson
Added autoconf support for using OSMesa as the driver instead linking it to libGL. This is enabled through --with-driver=osmesa. To differentiate these cases, another option --enable-x11-osmesa is used to enable or disable building OSMesa when the driver is x11. --- configure.ac | 76

[Mesa3d-dev] [PATCH 06/10] autoconf: Configure the osmesa channel size for OSMesa16 and OSMesa32

2007-12-07 Thread Dan Nicholson
Allow the user to specify channel bits of 16 or 32 to enable OSMesa16 or OSMesa32 instead of the default OSMesa. This option is controlled through the option --with-osmesa-bits=BITS and is only honored when the driver is osmesa. The osdemos are not enabled in the 16 or 32 bit case because the

[Mesa3d-dev] [PATCH 09/10] autoconf: Configurable DRI drivers

2007-12-07 Thread Dan Nicholson
The user can request specific DRI drivers to build rather than the default of all that build on this platform. This allows the list of drivers to be easily slimmed down. This is controlled through the option --with-dri-drivers. For example: ./configure --with-driver=dri

[Mesa3d-dev] [PATCH 02/10] autoconf: Initial support for an autoconf configuration

2007-12-07 Thread Dan Nicholson
This adds the initial support for using autoconf configuration. Support is available for shared Xlib driver builds. Later this will be extended to dri and osmesa-only builds and possibly targetting non-X backends. Support for static library builds will also be added. The configure script fills in