Module: Mesa Branch: master Commit: 762bf931ca25a6aea62c1344ea2360496479f781 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=762bf931ca25a6aea62c1344ea2360496479f781
Author: José Fonseca <[email protected]> Date: Thu Aug 18 18:04:44 2011 +0100 llvmpipe: Don't build lp_test_arit on MSVC. Several issues due to expf/logf/etc either not being declared, or being defined as a macro. --- src/gallium/drivers/llvmpipe/SConscript | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/llvmpipe/SConscript b/src/gallium/drivers/llvmpipe/SConscript index 2b232a5..129de29 100644 --- a/src/gallium/drivers/llvmpipe/SConscript +++ b/src/gallium/drivers/llvmpipe/SConscript @@ -85,7 +85,6 @@ if not env['embedded']: env.Prepend(LIBS = [llvmpipe] + gallium) tests = [ - 'arit', 'format', 'blend', 'conv', @@ -94,6 +93,7 @@ if not env['embedded']: ] if not env['msvc']: + tests.append('arit') tests.append('round') for test in tests: _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
