diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-09-08 07:54:15 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-09-08 07:54:15 +0900 |
commit | 52c2dd1f73e17c8352fe976e2ee4cdf049f81957 (patch) | |
tree | a63408a9e90f459920e479699ccb6a225037bb4f /src/gallium/winsys | |
parent | 8af4794afcfa04351d4131d826daeb1312634f82 (diff) |
scons: Install libGL.so and respective symlinks.
Diffstat (limited to 'src/gallium/winsys')
-rw-r--r-- | src/gallium/winsys/xlib/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/winsys/xlib/SConscript b/src/gallium/winsys/xlib/SConscript index 8650f595a7..324fbef306 100644 --- a/src/gallium/winsys/xlib/SConscript +++ b/src/gallium/winsys/xlib/SConscript @@ -36,8 +36,10 @@ if env['platform'] == 'linux' \ drivers += [trace] # TODO: write a wrapper function http://www.scons.org/wiki/WrapperFunctions - env.SharedLibrary( + libgl = env.SharedLibrary( target ='GL', source = sources, LIBS = glapi + mesa + drivers + auxiliaries + env['LIBS'], ) + + env.InstallSharedLibrary(libgl, version=(1, 5)) |