diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-12-31 22:18:17 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-01-01 12:16:19 +0000 |
commit | f8f4757d46627fb453f08dc63fde3d7f458eafe2 (patch) | |
tree | 372bb0bd2c09712f7fef58d66aa7ef493da6bbcc /src/gallium/winsys/xlib/SConscript | |
parent | fc8e0b97e53fc94b9bafa038cd4420a9588e62f7 (diff) |
scons: Aggregate all tiny libraries in a single library.
Makes integration of gallium into out of tree components much easier. No
pratical change for components in this tree,
Diffstat (limited to 'src/gallium/winsys/xlib/SConscript')
-rw-r--r-- | src/gallium/winsys/xlib/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/xlib/SConscript b/src/gallium/winsys/xlib/SConscript index ccec2566b1..713841aeb1 100644 --- a/src/gallium/winsys/xlib/SConscript +++ b/src/gallium/winsys/xlib/SConscript @@ -46,7 +46,7 @@ if env['platform'] == 'linux' \ libgl = env.SharedLibrary( target ='GL', source = sources, - LIBS = st_xlib + glapi + mesa + glsl + drivers + auxiliaries + env['LIBS'], + LIBS = st_xlib + glapi + mesa + glsl + drivers + gallium + env['LIBS'], ) env.InstallSharedLibrary(libgl, version=(1, 5)) |