Mesa (master): 92 new commits

Andreas Boll ab at kemper.freedesktop.org
Thu Jan 10 21:28:50 UTC 2013


URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5eeedb852b8a422f31d4d4f018187020c713fffa
Author: Matt Turner <mattst88 at gmail.com>
Date:   Mon Sep 17 15:16:06 2012 -0700

    build: mapi/glapi/gen: Use BUILT_SOURCES

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ac2793cf3e1e004942c386dfa45f3b5507223f50
Author: Matt Turner <mattst88 at gmail.com>
Date:   Mon Sep 10 14:31:05 2012 -0700

    Clean up .gitignore files

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3ed95dc0735795087c063288e544359a84f7ea28
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:41:08 2012 -0700

    Remove MESA_PIC_FLAGS macro

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f1d229ee94e25957dd6902ca11dad07b973ec45a
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:39:11 2012 -0700

    Remove installmesa

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b585c0059c7c2420f4b7ceb95e8017453316f2ab
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:38:44 2012 -0700

    Remove minstall

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=424f2008814ed9047628c40ccd4258a8a9fd8299
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:37:15 2012 -0700

    Remove checking for makedepend

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c977e61fe227e10319dad0c558b1bd611cca9355
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:35:59 2012 -0700

    Remove gallium's unused Makefile.template

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=74d105174b2d17c59b530de623af2ea686fc9061
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:35:41 2012 -0700

    Remove gbm's unused Makefile.template

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ae352ccb901ebd520f9fd67e1a00b1ae400720d0
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:34:53 2012 -0700

    Remove gallium targets' Makefile.{dri,vdpau,xorg,xvmc}

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8f8e85e7038399d3d49f693860ffd639bffc761f
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:33:11 2012 -0700

    Remove mklib

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=41349a42530c366790a1066cf4b53eab09365fa2
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:31:57 2012 -0700

    Remove unused glsl Makefile.template

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c87474089d4941e660e1cadde5cdb0716303105c
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 20:29:20 2012 -0700

    Remove configs/{current,default}

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cb4d5021c66d3067d592ce07d77373cf956c8459
Author: Andreas Boll <andreas.boll.dev at gmail.com>
Date:   Tue Nov 27 19:18:25 2012 +0100

    gallium/tests/unit: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=59088a2c2cf2b2a8bfaf19ae6440ea827c891d9d
Author: Andreas Boll <andreas.boll.dev at gmail.com>
Date:   Mon Nov 26 19:58:12 2012 +0100

    gallium/tests/trivial: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=45270fb0fd1abd7619933c2845f9dc74cdfbe6fd
Author: Matt Turner <mattst88 at gmail.com>
Date:   Thu Sep 13 10:45:01 2012 -0700

    targets/pipe-loader: Convert to automake
    
    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 at gmx.de>
        - Fix some undefined symbols.
    
    v3: Johannes Obermayr <johannesobermayr at gmx.de>
        - Install pipe_* to $(libdir)/gallium-pipe.
    
    v4: Johannes Obermayr <johannesobermayr at gmx.de>
        - Build it only once on --enable-gallium-gbm / --enable-opencl.

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=53c62d3fb0ee9aacc7a4aa08b4c42a3fb2127b2f
Author: Matt Turner <mattst88 at gmail.com>
Date:   Thu Sep 13 10:10:14 2012 -0700

    targets/gbm: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cdee0e808415214c27101103291a2be81eb02ad1
Author: Matt Turner <mattst88 at gmail.com>
Date:   Mon Sep 10 11:21:26 2012 -0700

    targets/egl-static: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system
        - Add missing Automake.inc
    
    v3: Johannes Obermayr <johannesobermayr at gmx.de>
        - Fix linking.
    
    v4: Andreas Boll <andreas.boll.dev at gmail.com>
        - Port changes from ff574d653b0731a324fd30324b0f211502219abf
    	  gallium/egl-static: Fix unresolved symbol 'clock_gettime'

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d53901c67c7df914fbc5279f25d0e725c479bab0
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 15:24:24 2012 -0700

    targets/xa-vmwgfx: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=af6a2e4f820631e3bb64ad726ad774af45f1759d
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 14:03:27 2012 -0700

    targets/xvmc-softpipe: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - add missing xvmc state tracker to _LIBADD variable
    
    v3: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=45bf6aa617e16cadc643212f3ed6b0889e9df45d
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 13:56:04 2012 -0700

    targets/xvmc-r600: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Add missing xvmc state tracker to _LIBADD variable
    
    v3: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c2371ccdaca8f64e1946bdebf69c4ebbbca1e18b
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 13:53:51 2012 -0700

    targets/xvmc-r300: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Add missing xvmc state tracker to _LIBADD variable
    
    v3: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b173b16cba6cc570dbeebd250a472fc2de02b7e3
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 13:50:43 2012 -0700

    targets/xvmc-nouveau: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Add missing xvmc state tracker to _LIBADD variable
    
    v3: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0b132df3adc3f464a7def6c4e47713aafc356061
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 20:47:04 2012 -0700

    build: AC_SUBST XVMC_MAJOR/MINOR

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f2bf0cdf7282f37ae4937951e1c6f299273f39f9
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 13:25:59 2012 -0700

    targets/xorg-radeonsi: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ff5ab73d53d8c5a79792f5348a45d4995f60ae67
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 13:23:50 2012 -0700

    targets/xorg-r600: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7d451ba83a2792297e2a1ffe4838c4059225f9c3
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 13:21:58 2012 -0700

    targets/xorg-r300: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f984d128c57d19ea1f8d431c2f987cbfa69392e9
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 13:19:45 2012 -0700

    targets/xorg-nouveau: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1a4349125b2721c27054d6da23474aa133dbe73c
Author: Matt Turner <mattst88 at gmail.com>
Date:   Thu Sep 6 16:56:06 2012 -0700

    targets/xorg-i915: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7f24483e3d7acb9a66fdc0ce3312d794204a888b
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 16:52:41 2012 -0700

    targets/vdpau-softpipe: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Add missing vdpau state tracker to _LIBADD variable
    
    v3: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e3b2160a1ffcfba0ff60cb47c17bd1a41afb63db
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 16:28:35 2012 -0700

    targets/vdpau-radeonsi: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Add missing vdpau state tracker to _LIBADD variable
    
    v3: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=98c051355f60459808d3e18181c23268ed2122d1
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 16:12:49 2012 -0700

    targets/vdpau-r600: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Add missing vdpau state tracker to _LIBADD variable
    
    v3: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7e0d6ff6d726f8eaa3ac1edabbd8500de50c18d3
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 15:59:54 2012 -0700

    targets/vdpau-r300: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Add missing vdpau state tracker to _LIBADD variable
    
    v3: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d0df9e82c769f036ed4dd6d173e0dd0fc064b6b5
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 15:55:49 2012 -0700

    targets/vdpau-nouveau: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Add missing vdpau state tracker to _LIBADD variable
    
    v3: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=184b2f0f68224691ac754afe27e83645c2802c8e
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 17:06:16 2012 -0700

    build: AC_SUBST VDPAU_MAJOR/MINOR

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0470fb4efe1b642788fc3b72016364c1f7a8deb4
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 15:19:30 2012 -0700

    targets/libgl-xlib: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c14c801a03c4f470db777ac90a2c687087126a8a
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 11:19:11 2012 -0700

    targets/dri-vmwgfx: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b3068d87cb26fa4f5225382f6c43600ce3956ba5
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 11:17:33 2012 -0700

    targets/dri-swrast: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=dd65729057f22978a1712832a7725fd7f5759901
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 11:14:51 2012 -0700

    targets/dri-radeonsi: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ab07ae05a3dccef620c716e821c647413b951051
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 11:12:29 2012 -0700

    targets/dri-r600: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b570f1fc3137f118b3b20b3499540b174d4a173b
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 11:09:53 2012 -0700

    targets/dri-r300: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6ed9f9f2322a4bc95fd41090bb8c89f7e7022923
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Sep 5 11:07:30 2012 -0700

    targets/dri-nouveau: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2cd5bf75363c95c1ec9ad0d0c1bd16f5b4a0c615
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 21:26:39 2012 -0700

    targets/dri-i915: Convert to automake
    
    v2: Andreas Boll <andreas.boll.dev at gmail.com>
        - Provide compatibility with scripts for the old Mesa build system

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=880063f5bc8d74f5a7ce87c464f946e910447ecf
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 21:57:28 2012 -0700

    build: Update drivers/Makefile.am to use LTLIBRARIES

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c236fa82c233b84a40c8198c39dd5daf0e23d07c
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 21:16:04 2012 -0700

    state_trackers/xvmc/test: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=984562d63020160da831d4ae03f46031748ce601
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 21:08:19 2012 -0700

    state_trackers/xvmc: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=69089ef5b0b7ecd33e3126401472b0f64cf91a5b
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 21:08:19 2012 -0700

    Remove xvmc hack

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=405a9dabe2124e7ec89389d08ca37dd240a82b47
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 20:59:34 2012 -0700

    state_trackers/xorg: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2ad26034670dd1a1698e332a0c70f4127b1d44f5
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 15:17:11 2012 -0700

    state_trackers/xa: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=68c0311996408c42e7b31aaddad01c4f4b0a7628
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 13:24:33 2012 -0700

    state_trackers/vega: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d2ca32e33253e8822c375ae6c0645e9fd7c725de
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 13:13:51 2012 -0700

    state_trackers/vdpau: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1ba5d8ac40b791d6b5a67299509607c3bdd44e57
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 13:13:51 2012 -0700

    Remove vdpau hack

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=083dcdf8095c32e20f046d57df445c958617d70b
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 11:51:36 2012 -0700

    state_trackers/glx: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c0b9081dc5ab00f1509ab1b4824d8d0ba3d3f62e
Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue Sep 4 11:41:22 2012 -0700

    state_trackers/gbm: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8443efdf2c7772f18e8209b6b6cfc6b19e638423
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Aug 31 17:11:35 2012 -0700

    state_trackers/egl: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9b357589265e65f0cfe1e7ca50acf22eca10723f
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Aug 31 15:45:07 2012 -0700

    state_trackers: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5089072419c191cfffe9c8c410f2ecbe00b7fc5d
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Aug 31 15:40:51 2012 -0700

    Remove state_tracker/Makefile
    
    Unneeded and unnecessary.

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9f38a1c8716823b09e911029fdc57ca45cf4f95f
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Aug 31 10:51:53 2012 -0700

    build: Don't build pipebuffer
    
    It's already built by src/gallium/auxiliary.

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0dcb9ae0d9366b2ca9520c0c820cc466eb35bf67
Author: Tom Stellard <thomas.stellard at amd.com>
Date:   Thu Aug 30 12:55:29 2012 -0400

    radeon/llvm: Convert to Automake
    
    v2: Johannes Obermayr <johannesobermayr at gmx.de>
        Fix some undefined symbols.
    
    v3: Johannes Obermayr <johannesobermayr at gmx.de>
        Build it -shared to fix egl_gallium.so on r600/radeonsi builds.

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2cbb94b3ce012a2caf9e6ab10d69bf85d7222c27
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Sep 7 21:04:44 2012 -0700

    build: Add automake conditionals for gallium drivers

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f4b1f2807f0561ecd1daa2041fd819c840d8297e
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 20:46:02 2012 -0700

    state_trackers/dri/sw: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d988481d580e67dfa768cec24413865ba45e609a
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 20:34:39 2012 -0700

    state_trackers/dri/drm: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2ff51cd63954351d11152edc894ac659296f4d3a
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 20:30:22 2012 -0700

    state_trackers/dri: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=44653c0a0e4da650024851c6a13f5c27a069c892
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 15:51:40 2012 -0700

    winsys/sw/xlib: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=24c2fe94a2fe518616263ecf953372ca17395097
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 15:46:57 2012 -0700

    winsys/sw/wrapper: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1d0ef53e7bfa7579adc625b8b9330d1682a8d930
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 15:44:25 2012 -0700

    winsys/sw/wayland: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1c9fb3c5b5f9be68647b7b8e0abc59e2c3c54fd9
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 15:32:43 2012 -0700

    winsys/sw/null: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5c4ade53a4186364cd524101118fdcd8e11b2aaf
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 15:28:45 2012 -0700

    winsys/sw/fbdev: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a6b3cd1349d53dee7b28b4e027b30b90f36220cb
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 15:24:40 2012 -0700

    winsys/sw/dri: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b4beea6418703a6f184adb0dab175177c29999de
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 15:09:30 2012 -0700

    winsys/sw: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2b5a1c02999bf2e6c6142456ba98f7dc0f2e1ddf
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 14:48:25 2012 -0700

    svga/winsys/drm: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=77fc30b57d1850cc627aca8152eb9a87e266a778
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 14:39:48 2012 -0700

    nouveau/winsys/drm: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=da2d98fac778ed717919c89395ea7c66f2d9c1b1
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 14:29:08 2012 -0700

    radeonsi: Convert to automake
    
    Can't use LTLIBRARIES here yet, since libradeon isn't converted.

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c35cddd1342054dd818069327e7660082c04a28c
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 14:14:58 2012 -0700

    nvc0: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2a28353ca0de982118fbdbe90b74551f71f709a0
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 14:10:28 2012 -0700

    nv50: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=36066770bfc6f05566173199a1104bfade848dbb
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 14:02:13 2012 -0700

    nv30: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1cf66321f9999c878bad60a837bd6c9da3e75453
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 12:33:57 2012 -0700

    nouveau: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0a42131f3b7f82dd9cd823e2c40f319bd8c01db2
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 12:29:47 2012 -0700

    svga: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f781d4c60d7240603c08e976d800b50a989c98ff
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 12:17:57 2012 -0700

    softpipe: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=960cbd8b780ef00176fc353f670b6c6487e41967
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 12:04:45 2012 -0700

    llvmpipe: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b51cdfa64b22be22cc162fe2d351635d1dff2d42
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 11:42:45 2012 -0700

    rbug: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3bfe7c211159eb5680952f31ae78f682304fd8a8
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 10:53:46 2012 -0700

    i915/winsys/sw: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=266d639b91085cb8bb245f7ca017a16572b58c60
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 10:37:07 2012 -0700

    i915/winsys/drm: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7d5496ab3bdd900f034af1871f2a3c5ee57a5e21
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 29 10:31:29 2012 -0700

    i915g: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=533130a5bbf1b05279cf88731e1758e2d6fd4b36
Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Aug 24 12:05:30 2012 -0700

    r600g: Use gallium automake include file

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=80d290d47ad6d29ab041d0da24ab8be1036b2e9d
Author: Tom Stellard <tstellar at gmail.com>
Date:   Fri Aug 24 11:48:32 2012 -0700

    libgallium: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=047fe04750acdbc9e807bce955aa890e5d1fd268
Author: Tom Stellard <tstellar at gmail.com>
Date:   Fri Aug 24 11:46:32 2012 -0700

    trace: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=34a615018844814d285c9c787ff46539b8adc9aa
Author: Tom Stellard <tstellar at gmail.com>
Date:   Fri Aug 24 11:44:57 2012 -0700

    radeon/winsys: Convert to automake

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8dc4048b3bdb4dc3a5b3d392dcde65eb37a87965
Author: Matt Turner <mattst88 at gmail.com>
Date:   Mon Sep 10 13:34:09 2012 -0700

    r300g: Link ralloc.c and register_allocate.c into separate library

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e04413cbb0597ac3f93dacbe0ed0732d847f7812
Author: Tom Stellard <tstellar at gmail.com>
Date:   Fri Jul 13 13:33:11 2012 -0400

    r300g: Build a libtool archive

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c07c2696c72ac02dfeab837f006b999c4519f67f
Author: Tom Stellard <tstellar at gmail.com>
Date:   Fri Aug 24 11:42:35 2012 -0700

    r300g: Use gallium automake include file
    
    [mattst88] v2: Remove ARCH_FLAGS/OPT_FLAGS

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c040fe102c2d20e464cae5d0e63233bfe4c728fb
Author: Tom Stellard <tstellar at gmail.com>
Date:   Fri Jul 13 13:33:09 2012 -0400

    gallium: Add common automake include file
    
    v2: Matt Turner <mattst88 at gmail.com>
        Remove ARCH_FLAGS/OPT_FLAGS
    
    v3: Johannes Obermayr <johannesobermayr at gmx.de>
        Add -I$(top_srcdir)/include to GALLIUM_CFLAGS

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9bf0d49abe7def59f9585f3bd317e97fd56004f8
Author: Matt Turner <mattst88 at gmail.com>
Date:   Thu Aug 23 15:55:53 2012 -0700

    automake: Convert Gallium target and winsys




More information about the mesa-commit mailing list