summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-12-17configure.ac: fix typo in error messageautomake-gallium7Andreas Boll1-1/+1
2012-12-17pipe-loader: Install pipe_* to $(libdir)/gallium-pipe.Johannes Obermayr3-12/+12
2012-12-17gallium/auxiliary: Add -fno-rtti to CXXFLAGS on LLVM >= 3.2.Johannes Obermayr2-1/+12
Contrary to old build system automake fails without LLVM_CXXFLAGS.
2012-12-17glapi/gen: remove an obsolete comment from Makefile.amAndreas Boll1-5/+0
2012-12-17Remove hacks for static MakefilesMatt Turner50-229/+6
v2: Andreas Boll <andreas.boll.dev@gmail.com> - don't remove compatibility with scripts for the old build system v3: Andreas Boll <andreas.boll.dev@gmail.com> - remove more obsolete hacks v4: Andreas Boll <andreas.boll.dev@gmail.com> - add a previously removed TOP variable to fix vgapi build
2012-12-17build: mapi/glapi/gen: Use BUILT_SOURCESMatt Turner1-4/+6
2012-12-17Clean up .gitignore filesMatt Turner109-121/+2
2012-12-17Remove MESA_PIC_FLAGS macroMatt Turner5-131/+5
2012-12-17Remove installmesaMatt Turner1-74/+0
2012-12-17Remove minstallMatt Turner2-115/+0
2012-12-17Remove checking for makedependMatt Turner1-20/+0
2012-12-17Remove gallium's unused Makefile.templateMatt Turner1-73/+0
2012-12-17Remove gbm's unused Makefile.templateMatt Turner1-55/+0
2012-12-17Remove gallium targets' Makefile.{dri,vdpau,xorg,xvmc}Matt Turner4-338/+0
2012-12-17Remove mklibMatt Turner2-1052/+0
2012-12-17Remove unused glsl Makefile.templateMatt Turner1-50/+0
2012-12-17Remove configs/{current,default}Matt Turner6-426/+1
2012-12-17gallium/auxiliary: Add possibility to build libgallium shared.Johannes Obermayr3-1/+16
2012-12-17gallium/tests/unit: Convert to automakeAndreas Boll3-50/+36
2012-12-17gallium/tests/trivial: Convert to automakeAndreas Boll3-54/+35
2012-12-17targets/pipe-loader: Convert to automakeMatt Turner4-179/+176
C++ linking (controlled by the nodist_EXTRA idiom) is needed unconditionally for: nouveau (uses C++ in the driver) r300 (since LLVM is always required) radeonsi (since LLVM is always required) swrast (if builting LLVM pipe) and conditionally (depends whether LLVM is enabled) for i915 r600 vmwgfx and never needed for swrast (softpipe). Unfortunately, automake seems to *always* link with C++ if nodist_EXTRA is specified, even inside a false conditional. Not sure if this is a bug, but it does seem to be weird behavior. v2: Johannes Obermayr <johannesobermayr@gmx.de> - Fix some undefined symbols.
2012-12-17targets/gbm: Convert to automakeMatt Turner4-44/+71
2012-12-17targets/egl-static: Convert to automakeMatt Turner4-215/+236
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system - Add missing Automake.inc v3: Johannes Obermayr <johannesobermayr@gmx.de> - Fix linking. v4: Andreas Boll <andreas.boll.dev@gmail.com> - Port changes from ff574d653b0731a324fd30324b0f211502219abf gallium/egl-static: Fix unresolved symbol 'clock_gettime'
2012-12-17build: Add automake conditionals for gallium driversMatt Turner1-0/+16
2012-12-17targets/xa-vmwgfx: Convert to automakeMatt Turner5-121/+72
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/xvmc-softpipe: Convert to automakeMatt Turner4-21/+74
v2: Andreas Boll <andreas.boll.dev@gmail.com> - add missing xvmc state tracker to _LIBADD variable v3: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/xvmc-r600: Convert to automakeMatt Turner4-24/+76
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Add missing xvmc state tracker to _LIBADD variable v3: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/xvmc-r300: Convert to automakeMatt Turner4-25/+70
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Add missing xvmc state tracker to _LIBADD variable v3: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/xvmc-nouveau: Convert to automakeMatt Turner4-29/+71
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Add missing xvmc state tracker to _LIBADD variable v3: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17build: AC_SUBST XVMC_MAJOR/MINORMatt Turner1-0/+3
2012-12-17targets/xorg-radeonsi: Convert to automakeMatt Turner4-24/+72
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/xorg-r600: Convert to automakeMatt Turner4-24/+78
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/xorg-r300: Convert to automakeMatt Turner4-25/+73
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/xorg-nouveau: Convert to automakeMatt Turner5-32/+74
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/xorg-i915: Convert to automakeMatt Turner4-24/+78
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/vdpau-softpipe: Convert to automakeMatt Turner4-21/+74
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Add missing vdpau state tracker to _LIBADD variable v3: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/vdpau-radeonsi: Convert to automakeMatt Turner4-30/+72
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Add missing vdpau state tracker to _LIBADD variable v3: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/vdpau-r600: Convert to automakeMatt Turner4-24/+76
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Add missing vdpau state tracker to _LIBADD variable v3: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/vdpau-r300: Convert to automakeMatt Turner4-28/+72
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Add missing vdpau state tracker to _LIBADD variable v3: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/vdpau-nouveau: Convert to automakeMatt Turner4-30/+72
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Add missing vdpau state tracker to _LIBADD variable v3: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17build: AC_SUBST VDPAU_MAJOR/MINORMatt Turner1-0/+3
2012-12-17targets/libgl-xlib: Convert to automakeMatt Turner4-117/+72
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/dri-vmwgfx: Convert to automakeMatt Turner4-24/+79
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/dri-swrast: Convert to automakeMatt Turner4-39/+80
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/dri-radeonsi: Convert to automakeMatt Turner4-26/+73
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/dri-r600: Convert to automakeMatt Turner4-26/+81
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/dri-r300: Convert to automakeMatt Turner4-26/+73
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/dri-nouveau: Convert to automakeMatt Turner4-28/+75
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17targets/dri-i915: Convert to automakeMatt Turner4-33/+83
v2: Andreas Boll <andreas.boll.dev@gmail.com> - Provide compatibility with scripts for the old Mesa build system
2012-12-17build: Update drivers/Makefile.am to use LTLIBRARIESMatt Turner1-10/+20