diff options
author | Michel Dänzer <[email protected]> | 2009-02-02 15:49:33 +0100 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2009-02-02 15:49:33 +0100 |
commit | 859db22527d796d186d3cdf83d503669472863cc (patch) | |
tree | 59633249adc09c7c6bf754d7a67a5f379f69df30 /src/gallium/winsys/xlib | |
parent | be0a6c3598a5a18a5a605b155bae5c986d3fc3b3 (diff) |
scons: Fixups for the introduction of the xlib state_tracker.
Not quite working yet; glxinfo complains about glXChooseVisual being undefined.
Diffstat (limited to 'src/gallium/winsys/xlib')
-rw-r--r-- | src/gallium/winsys/xlib/SConscript | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/gallium/winsys/xlib/SConscript b/src/gallium/winsys/xlib/SConscript index 3aef3b6cedd..434572fcd00 100644 --- a/src/gallium/winsys/xlib/SConscript +++ b/src/gallium/winsys/xlib/SConscript @@ -15,13 +15,7 @@ if env['platform'] == 'linux' \ '#/src/mesa/main', ]) - sources = [ - 'glxapi.c', - 'fakeglx.c', - 'xfonts.c', - 'xm_api.c', - 'xm_winsys.c', - ] + sources = []; drivers = []; @@ -43,7 +37,7 @@ if env['platform'] == 'linux' \ libgl = env.SharedLibrary( target ='GL', source = sources, - LIBS = glapi + mesa + drivers + auxiliaries + env['LIBS'], + LIBS = st_xlib + glapi + mesa + drivers + auxiliaries + env['LIBS'], ) env.InstallSharedLibrary(libgl, version=(1, 5)) |