From 762bf931ca25a6aea62c1344ea2360496479f781 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Thu, 18 Aug 2011 18:04:44 +0100 Subject: [PATCH] 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 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.7.4