diff options
author | José Fonseca <[email protected]> | 2010-11-18 13:02:36 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-11-18 13:02:36 +0000 |
commit | 3dcc3153b087a2ec42e6177d965dd8b2c95779c2 (patch) | |
tree | 4fb495a93b69f0b041de635c8c8d84a0640cc464 /src/gallium/targets/libgl-xlib/SConscript | |
parent | 185d862cd8cd0a56dd86daa01d9c692ff4abfb54 (diff) |
scons: Use inline wrap helpers more consistently.
Diffstat (limited to 'src/gallium/targets/libgl-xlib/SConscript')
-rw-r--r-- | src/gallium/targets/libgl-xlib/SConscript | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/gallium/targets/libgl-xlib/SConscript b/src/gallium/targets/libgl-xlib/SConscript index 6582a2f27bd..d932736be78 100644 --- a/src/gallium/targets/libgl-xlib/SConscript +++ b/src/gallium/targets/libgl-xlib/SConscript @@ -19,9 +19,6 @@ env.Prepend(LIBS = env['X11_LIBS']) env.Prepend(LIBS = [ st_xlib, ws_xlib, - trace, - rbug, - galahad, glapi, mesa, glsl, @@ -34,11 +31,11 @@ sources = [ ] if True: - env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE') - env.Prepend(LIBS = [softpipe]) + env.Append(CPPDEFINES = ['GALLIUM_TRACE', 'GALLIUM_RBUG', 'GALLIUM_GALAHAD', 'GALLIUM_SOFTPIPE']) + env.Prepend(LIBS = [trace, rbug, galahad, softpipe]) if env['llvm']: - env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE') + env.Append(CPPDEFINES = ['GALLIUM_LLVMPIPE']) env.Prepend(LIBS = [llvmpipe]) if False: |