summaryrefslogtreecommitdiff
path: root/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2013-02-21mesa: Bump version to 9.0.3Andreas Boll1-1/+1
2013-01-22mesa: Bump version to 9.0.2Andreas Boll1-1/+1
2013-01-20build: use git ls-files for adding all Makefile.in into the release tarballAndreas Boll1-48/+1
Until we have proper 'make dist' this is an improvement of the current situation, because each time some old Makefiles got converted to automake we had to update the tarballs target. NOTE: This is a candidate for the 9.0 branch. Cc: Eric Anholt <eric@anholt.net> Acked-by: Matt Turner <mattst88@gmail.com> (cherry picked from commit 0f5e2ce8541855c65852dabbb19313fd0bb65b3d) Conflicts: Makefile.am
2012-11-14build: add missing files to tarballs targetAndreas Boll1-0/+6
fixes errors ./configure and make was complaining about NOTE: This is a candidate for the 9.0 branch. Reviewed-by: Matt Turner <mattst88@gmail.com> (cherry picked from commit 8a9f0fdeabdf51fbb7db91e419827fd47910a401)
2012-11-14build: add missing Makefile.in files to tarballs targetAndreas Boll1-1/+50
fixes errors ./configure was complaining about NOTE: This is a candidate for the 9.0 branch. Reviewed-by: Matt Turner <mattst88@gmail.com> (cherry picked from commit bc08f26485c77b3ef3ee7b07d67fd43f2644f1ac)
2012-11-14build: add config.sub and config.guess to tarballs targetAndreas Boll1-0/+2
fixes errors ./configure was complaining about NOTE: This is a candidate for the 9.0 branch. Reviewed-by: Matt Turner <mattst88@gmail.com> (cherry picked from commit a0a90ea92034dc24170364d6d52df01ce623e835)
2012-11-08mesa: Bump version to 9.0.1Ian Romanick1-1/+1
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2012-11-02build: Ship install-sh in the tarballMatt Turner1-0/+1
Fixes the problem where configure from the tarball would report missing files: $ ./configure configure: error: cannot find install-sh, install.sh, or shtool in bin NOTE: This is a candidate for the 9.0 branch. (cherry picked from commit ec57fbbc72b552a4f894f32798a2ace16749f520)
2012-10-08mesa: Bump version number to 9.0 (final)Ian Romanick1-1/+1
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2012-09-28build: Use AX_PTHREAD to detect pthreadsMatt Turner1-0/+2
NOTE: This is a candidate for the 9.0 branch. Reviewed-by: Adam Jackson <ajax@redhat.com> (cherry picked from commit 7da12426f7682ffc44ae40e31d1b5712521fbb70)
2012-08-31mesa: also bump version in Makefile.am and configure.ac to 9.0Andreas Boll1-1/+1
Signed-off-by: Brian Paul <brianp@vmware.com>
2012-08-08mesa/tests: Add tests for the generated shared-glapi dispatch tableIan Romanick1-0/+1
These are largely based on the src/mapi/glapi/tests. However, shared-glapi provides less external visibility into the dispatch table, so there is less to test. Also, shared-glapi does not implement _glapi_get_proc_name, so that test was removed. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2012-07-13automake: convert libglslJon TURNEY1-3/+3
v2: Use AM_V_GEN to silence generated code rules. Add BUILT_SOURCES to CLEANFILES v3: - Fix an accidental // in a path - Use automake make rules for lex/yacc rather than writing our own - Update .gitignore appropriately - Build a libglcpp convenience library rather than awkwardly including the files in libglsl and delegating the generation - Remove libglsl.a compatibility link on clean v4: - Automake's rules for lex/yacc make .cc if source is .ll or .yy, and apparently we must use those extensions "because of scons", so update everywhere glsl_parser.cpp -> glsl_parser.cc and glsl_lexer.cpp -> glsl_lexer.cc. This fixes 'make tarballs' and building with dricore enabled. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Eric Anholt <eric@anholt.net> Tested-by: Matt Turner <mattst88@gmail.com>
2012-06-21automake: Directly generate configs/current instead of symlinking from it.Eric Anholt1-1/+0
2012-06-13mesa/tests: Add tests for the generated dispatch tableIan Romanick1-0/+1
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
2012-06-13mesa/tests: Add tests for _mesa_lookup_enum_by_{name,nr} functionsIan Romanick1-0/+1
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
2012-06-13glx: Move tests from tests/glx to src/glx/testsIan Romanick1-3/+2
This matches the organization of other unit tests in Mesa. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
2012-06-11automake: Move top-level makefile to automake.Eric Anholt1-0/+124
This is part of a series to fix our build issues in the automake case by hooking up the automatic Makefile regeneration support. The extract_git_sha1 is moved into src/mesa/Makefile so that we get correct dependency generation. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>