aboutsummaryrefslogtreecommitdiffstats
path: root/docs/install.html
Commit message (Collapse)AuthorAgeFilesLines
* docs: update meson docs for windowsDylan Baker2019-10-181-0/+12
| | | | Reviewed-by: Adam Jackson <[email protected]>
* docs: update meson docs for windowsDylan Baker2019-10-101-5/+12
| | | | Acked-by: Kristian H. Kristensen <[email protected]>
* docs/install: drop autotools referencesEric Engestrom2019-09-301-12/+4
| | | | | | 19.3 will be the 3rd release without autotools, people know it's gone by now. Reviewed-by: Dylan Baker <[email protected]>
* docs: update install docs for mesonDylan Baker2019-09-301-9/+5
| | | | Reviewed-by: Eric Engestrom <[email protected]>
* docs: do not use div for line-breakingErik Faye-Lund2019-06-061-2/+2
| | | | | | | | HTML has the <p>-tag for this purpose. It adds some margins, but that just makes this read better, IMO. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: remove pointless trailing hard-breaksErik Faye-Lund2019-06-051-2/+0
| | | | | | | | | Line-break at the end of an article is quite pointless, and doesn't do much to increase the readability. Let's get rid of them. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: rewrite paragraph to be free-formErik Faye-Lund2019-06-051-3/+2
| | | | | | | | | | These half-way structured sections are needlessly problematic to translate cleanly to other markup-languages, so let's just make this into a free-form paragraph instead. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: use h4 instead of free-standing paragraphs and br-tagsErik Faye-Lund2019-06-051-5/+3
| | | | | | | | | | This makes this document a bit more structured, which is generally considered a good thing for HTML. It will also translate a bit better into other markup-formats. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: drop h1 in headerErik Faye-Lund2019-05-081-1/+1
| | | | | | | | | | | It's generally frowned upon to have more than one H1 per document in HTML4. So let's put the text directly inside the header. This means we can drop the flex-based centering, which makes things a bit easier. We also need to change the padding to rem instead of em, because the em has now changed. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: renumber headingsErik Faye-Lund2019-05-081-8/+8
| | | | | | | | | | | | It's generally frowned upon to have multiple H1 headings in HTML4. So let's make sure each article has a primary heading for the article, and that that heading is the title that is used in the sidebar. While we're at it, let's update the title in the articles to match the title from the sidebar as well. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: properly escape '>'Erik Faye-Lund2019-05-021-4/+4
| | | | | | | | | The '>'-symbol should usually be escaped to avoid confusing strict parsers. While it's very unlikely to cause issues as-is, let's quite it for good measure. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: replace autotools intructions with meson equivalentEric Engestrom2019-04-301-1/+1
| | | | | Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]>
* docs: drop autotools python informationEric Engestrom2019-04-301-1/+0
| | | | | Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]>
* docs: drop most autoconf referencesDylan Baker2019-04-151-18/+4
| | | | | | | | | | | | | | | | | | | | There's still a few in here, but those docs are already so out of date that it probably makes more sense to delete them. Such as the GLES docs which still claim we only support 1.1 and 2.0, with no mention of 3.x at all. v2: - Add docs for testing back end (Eric Engestrom) - Drop more autootols references - meson is now required not recommended - Add $PWD Acked-by: Kenneth Graunke <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> Acked-by: Marek Olšák <[email protected]> Acked-by: Jason Ekstrand <[email protected]> Acked-by: Bas Nieuwenhuizen <[email protected]> Acked-by: Matt Turner <[email protected]>
* docs/install: Update python dependency sectionDylan Baker2018-12-271-1/+3
| | | | | | | | Note that meson requires python 3, scons requires python 2, and autotools works with either. Reviewed-by: Jordan Justen <[email protected]> Reviewed-by: Eric Engeström <[email protected]>
* docs/install: Add meson to the main install pageDylan Baker2018-12-271-8/+30
| | | | | Reviewed-by: Jordan Justen <[email protected]> Reviewed-by: Eric Engeström <[email protected]>
* Require Visual Studio 2015.Jose Fonseca2018-09-101-1/+1
| | | | | | | | We no longer need or use Visual Studio 2013. https://ci.appveyor.com/project/jrfonseca/mesa/build/52 Reviewed-by: Roland Scheidegger <[email protected]>
* docs: update required mako versionEmil Velikov2018-08-231-1/+1
| | | | | | | | | | | The requirement was bumped a while back, but we forgot to update the docs. Fixes: ed871af91c2 ("configure.ac: raise Mako required version to 0.8.0") Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Dylan Baker <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* configure: enforce python 2.7 with AM_PATH_PYTHONEmil Velikov2018-08-231-1/+1
| | | | | | | | | | | | | | | Currently we use AC_CHECK_PROGS looking for python2.7, python2 and finally python. That is due to the varying names used across the different OS. Use the handy AM_PATH_PYTHON which finds the correct name and checks for the version. Note: python2.7 has been an unofficial requirement for quite some time. Update the docs to reflect that. Cc: Dylan Baker <[email protected]> Signed-off-by: Emil Velikov <[email protected]>
* docs: fix a few typosEric Engestrom2017-02-271-1/+1
| | | | | | | Noticed a couple, found the rest using vimspell. Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
* docs: https all the links \o/Eric Engestrom2017-02-091-1/+1
| | | | | | | | | Most of them already redirected to https anyway, so we might as well avoid the redirection and the security implications by linking directly to the right protocol. Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Brian Paul <[email protected]>
* docs: rework/update install.htmlEmil Velikov2016-11-211-40/+71
| | | | | | | | | | | | | | | | | Still far from perfect, but a few small steps in the right direction. - Split build systems, compilers, third party tools - Mention building mesa for Android (part of AOSP) - Drop explicit "other" dependencies. Reference to disto methods to get them. - HTML 4.01 Traditional compliance fixes - mixed ul and br tags. - nuke dead links README.{CYGWIN,VMS} v2: Squash typos, add note about buggy flex 2.6.2 (Eric), add Suse zipper command (Tobias). Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Brian Paul <[email protected]>
* docs: use latest libDRM versionBrian Paul2016-03-231-2/+1
| | | | Signed-off-by: Brian Paul <[email protected]>
* docs: Visual Studio 2013 or later is now requiredBrian Paul2016-02-121-0/+3
|
* docs: minimum required python mako version is 0.3.4Samuel Iglesias Gonsálvez2015-11-251-1/+1
| | | | | Signed-off-by: Samuel Iglesias Gonsálvez <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
* scons: Prefer winflexbison, and use --wincompat when available.Jose Fonseca2015-03-221-2/+2
| | | | | | | | | | | | This avoids MSVC the warning warning C4013: 'isatty' undefined; assuming extern returning int with certain versions of flex. Reviewed-by: Brian Paul <[email protected]> v2: Add win flex-bison link to docs/install.html.
* windows/gdi: Remove.Jose Fonseca2015-03-041-3/+2
| | | | | | | | | | | | This classic driver is so far behind Gallium softpipe/llvmpipe based one, that's hard to imagine ever being useful. v2: Drop drivers/windows from src/mesa/Makefile.am:EXTRA_DIST per Emil Velikov. Reviewed-by: Emil Velikov <[email protected]> v3: Update release notes.
* configure: require python mako moduleSamuel Iglesias Gonsalvez2015-01-121-1/+5
| | | | | | | | | | | | | | | | | | | | It is now a hard dependency because of the autogeneration of format pack and unpack functions. Update the documentation to reflect this change. v2: - Inline python script in m4 file and use PYTHON2 v3: - Remove semicolons and quotes and change coding style - Add Ilia Mirkin suggestion to use Python's split functionality. - Use AX_CHECK_PYTHON_MAKO_MODULE name. - Change to MIT license Signed-off-by: Samuel Iglesias Gonsalvez <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
* docs: update the prerequisites sectionBrian Paul2014-05-191-3/+12
| | | | | | | SCons is required for Windows. Add links to flex/bison for Windows. Reorder items and improve formatting. Reviewed-by: Ian Romanick <[email protected]>
* mapi/glapi: Use ElementTree instead of libxml2.José Fonseca2014-03-261-4/+0
| | | | | | | | | | | | | | | | | | | | | | It is quite hard to meet the dependency of the libxml2 python bindings outside Linux, and in particularly on MacOSX; whereas ElementTree is part of Python's standard library. ElementTree is more limited than libxml2: no DTD verification, defaults from DTD, or XInclude support, but none of these limitations is serious enough to justify using libxml2. In fact, it was easier to refactor the code to use ElementTree than to try to get libxml2 python bindings. In the process, gl_item_factory class was refactored so that there is one method for each kind of object to be created, as it simplifies things substantially. I confirmed that precisely the same output is generated for GL/GLX/GLES. v2: Remove m4/ax_python_module.m4 as suggested by Matt Turner. Reviewed-by: Ian Romanick <[email protected]>
* docs: remove obsolete r300c tracesAndreas Boll2012-09-191-1/+0
|
* docs: remove obsolete target attributeAndreas Boll2012-09-191-3/+3
|
* docs: add new iframe layoutAndreas Boll2012-09-191-1/+8
|
* Remove libGLUMatt Turner2012-08-311-5/+0
| | | | | | | It's been moved to its own repository, found at http://cgit.freedesktop.org/mesa/glu/ Acked-by: Kenneth Graunke <[email protected]>
* docs: whitespaces cleanupAndreas Boll2012-06-121-2/+2
| | | | Signed-off-by: Brian Paul <[email protected]>
* docs: prefer lowercase html tagsAndreas Boll2012-06-121-10/+10
| | | | Signed-off-by: Brian Paul <[email protected]>
* docs: use id instead of <a name>Andreas Boll2012-06-121-14/+7
| | | | Signed-off-by: Brian Paul <[email protected]>
* docs: fix html end/start tagsAndreas Boll2012-06-121-2/+4
| | | | | | for more well-formed html Signed-off-by: Brian Paul <[email protected]>
* docs: consolidate html header and footerAndreas Boll2012-06-121-10/+10
| | | | | | | | | add doctype add character encoding add missing <head> tag unify html header and footer Signed-off-by: Brian Paul <[email protected]>
* docs: remove documentation of old Makefile systemBrian Paul2012-06-061-116/+5
| | | | It's going away in the near future.
* docs: overhaul the Mesa build/install instructionsBrian Paul2012-04-191-128/+123
| | | | Rearrange thing in general. Mark the legacy Makefile system as deprecated.
* docs: add info for installing dependencies on fedoraAlex Hultman2012-03-171-0/+8
| | | | Signed-off-by: Brian Paul <[email protected]>
* docs: add more MinGW prerequisite tipsBrian Paul2012-03-071-0/+8
| | | | Provided by Charles Huber on the mesa-users list.
* docs: Update references to README filesGuillem Jover2011-10-041-10/+2
| | | | | Signed-off-by: Guillem Jover <[email protected]> Signed-off-by: Brian Paul <[email protected]>
* Remove remnants of legacy glide supportGuillem Jover2011-10-041-1/+0
| | | | | Signed-off-by: Guillem Jover <[email protected]> Signed-off-by: Brian Paul <[email protected]>
* docs: Update scons info regarding mingw.José Fonseca2011-08-301-5/+2
|
* mesa: Remove support for BeOSIan Romanick2011-08-261-1/+0
| | | | | | | | | | Acked-by: Kristian Høgsberg <[email protected]> Acked-by: Marek Olšák <[email protected]> Acked-by: Alan Coopersmith <[email protected]> Acked-by: Jakob Bornecrantz <[email protected]> Acked-by: Dave Airlie <[email protected]> Build-Tested-by: Jakob Bornecrantz <[email protected]> Tested-by: Eugeni Dodonov <[email protected]>
* dri: Remove all DRI1 driversIan Romanick2011-08-261-12/+0
| | | | | | | | | | Acked-by: Kristian Høgsberg <[email protected]> Acked-by: Marek Olšák <[email protected]> Acked-by: Alan Coopersmith <[email protected]> Acked-by: Jakob Bornecrantz <[email protected]> Acked-by: Dave Airlie <[email protected]> Build-Tested-by: Jakob Bornecrantz <[email protected]> Tested-by: Eugeni Dodonov <[email protected]>
* docs: Remove GLw from the documentation except for a new FAQ entry.Kenneth Graunke2011-08-151-5/+0
| | | | | | Also remove an outdated reference to GLEW being in tree. Reviewed-by: Brian Paul <[email protected]>
* docs: Remove MSVS project files.José Fonseca2011-04-231-1/+0
| | | | | | | They were totally broken for several releases. scons now builds everything the project files built and more, and can be kept up-to-date with little effort.