summaryrefslogtreecommitdiff
path: root/docs/autoconf.html
AgeCommit message (Collapse)AuthorFilesLines
2012-09-20docs/autoconf: improve markupAndreas Boll1-41/+65
replace unordered list <ul> with defined list <dl> Reviewed-by: Brian Paul <brianp@vmware.com>
2012-09-20docs/autoconf: remove obsolete demo optionsAndreas Boll1-21/+0
removed with commit 56c3cce2a199f7f79a48d7633431e1e80fcd4ba2 two years ago Reviewed-by: Brian Paul <brianp@vmware.com>
2012-09-19docs: add new iframe layoutAndreas Boll1-0/+8
2012-08-31Remove libGLUMatt Turner1-10/+0
It's been moved to its own repository, found at http://cgit.freedesktop.org/mesa/glu/ Acked-by: Kenneth Graunke <kenneth@whitecape.org>
2012-06-25docs: whitespace cleanupAndreas Boll1-16/+16
Signed-off-by: Brian Paul <brianp@vmware.com>
2012-06-12docs: fix html end/start tagsAndreas Boll1-1/+0
for more well-formed html Signed-off-by: Brian Paul <brianp@vmware.com>
2012-06-12docs: consolidate html header and footerAndreas Boll1-7/+7
add doctype add character encoding add missing <head> tag unify html header and footer Signed-off-by: Brian Paul <brianp@vmware.com>
2012-03-12docs: fix up html tags in autoconf.htmlChristopher Yeleighton1-61/+37
http://bugs.freedesktop.org/show_bug.cgi?id=47241 Signed-off-by: Brian Paul <brianp@vmware.com>
2011-08-15docs: Remove GLw from the documentation except for a new FAQ entry.Kenneth Graunke1-7/+0
Also remove an outdated reference to GLEW being in tree. Reviewed-by: Brian Paul <brianp@vmware.com>
2011-07-14Squashed commit of the following:José Fonseca1-8/+0
commit 1856230d9fa61710cce3e152b8d88b1269611a73 Author: José Fonseca <jose.r.fonseca@gmail.com> Date: Tue Jul 12 23:41:27 2011 +0100 make: Use better var names on packaging. commit d1ae72d0bd14e820ecfe9f8f27b316f9566ceb0c Author: José Fonseca <jose.r.fonseca@gmail.com> Date: Tue Jul 12 23:38:21 2011 +0100 make: Apply several of Dan Nicholson's suggestions. commit f27cf8743ac9cbf4c0ad66aff0cd3f97efde97e4 Author: José Fonseca <jose.r.fonseca@gmail.com> Date: Sat Jul 9 14:18:20 2011 +0100 make: Put back the tar.bz2 creation rule. Removed by accident. commit 34983337f9d7db984e9f0117808274106d262110 Author: José Fonseca <jose.r.fonseca@gmail.com> Date: Sat Jul 9 11:59:29 2011 +0100 make: Determine tarballs contents via git ls-files. The wildcards were a mess: - lots of files for non Linux platforms missing - several files listed and archived twice Using git-ls-files ensures things are not loss when making the tarballs. commit 34a28ccbf459ed5710aafba5e7149e8291cb808c Author: José Fonseca <jose.r.fonseca@gmail.com> Date: Sat Jul 9 11:07:14 2011 +0100 glut: Remove GLUT source. Most distros ship freeglut, and most people don't care one vs the other, and it hasn't been really maintained. So it is better to have Mesa GLUT be revisioned and built separately from Mesa. commit 5c26a2c3c0c7e95ef853e19d12d75c4f80137e7d Author: José Fonseca <jose.r.fonseca@gmail.com> Date: Sat Jul 9 10:31:02 2011 +0100 Ignore the tarballs. commit 26edecac589819f0d0efe2165ab748dbc4e53394 Author: José Fonseca <jose.r.fonseca@gmail.com> Date: Sat Jul 9 10:30:24 2011 +0100 make: Create the Mesa-xxx-devel symlink automatically. Also actually remote the intermediate uncompressed tarballs.
2008-06-30autoconf: Improve the visibility of the swrast DRI driverDan Nicholson1-5/+6
Improve the --with-dri-drivers help text so that users are aware that they should install the swrast DRI driver.
2008-05-09Default DRI driver directory to match X.Org xserverDan Nicholson1-2/+1
Since the only valid consumer of the DRI drivers is the X.Org xserver, this changes the default DRI driver directory to match xorg-server: ${libdir}/dri. The old default of /usr/X11R6/modules/dri was wrong for nearly all current systems.
2008-03-10autoconf: Add autogen.sh from Xorg for easier setup from gitDan Nicholson1-3/+6
The defacto method to rebuild the autotools and run the generated configure is an autogen.sh script. It is much more discoverable than the custom `make configure' used here. The Makefile targets are still useful for creating tarballs, though. This autogen.sh is copied from Xorg.
2008-01-11Allow osmesa to be enabled or disabledDan Nicholson1-10/+6
The conditional in src/mesa/Makefile currently hardcodes the cases where libOSMesa can be built on libGL. Likewise, the xlib case always includes libOSMesa in the stand-alone target. This changes the conditional to a loop over the DRIVER_DIRS variable. This means that any driver configuration can enable or disable osmesa. The current "stand-alone" rule is changed so that DRIVER_DIRS=x11 and DRIVER_DIRS="x11 osmesa" are both respected. The configure option is changed to --enable-gl-osmesa as this change allows libOSMesa to be built upon any of the libGL-enabling drivers.
2007-12-26autoconf: Helper options for adding GCC 32/64 bit flagsDan Nicholson1-0/+7
Two new configure options to add -m32 or -m64 to the CFLAGS and CXXFLAGS when GCC is in use. By default, the user supplied options are environment variables are respected, but these options are quick helps for the common case of x86/x86_64 using GCC.
2007-12-23autoconf: Documentation for using the autoconf'd buildDan Nicholson1-0/+283
Most of the options available from configure are documented on the autoconf.html. This page is reached as an alternative provided on the install.html page. An FAQ about why there is no configure script has been removed.