Module: Mesa Branch: master Commit: 879894552be91d79a71fbea4346c932917c3eea3 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=879894552be91d79a71fbea4346c932917c3eea3
Author: José Fonseca <[email protected]> Date: Wed Oct 17 15:28:26 2012 +0100 scons: Fix graw-xlib lib order. Avoids "undefined symbol: XShmCreateImage" error. --- src/gallium/targets/graw-xlib/SConscript | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/targets/graw-xlib/SConscript b/src/gallium/targets/graw-xlib/SConscript index 42cb349..a535f31 100644 --- a/src/gallium/targets/graw-xlib/SConscript +++ b/src/gallium/targets/graw-xlib/SConscript @@ -10,7 +10,7 @@ env.Prepend(LIBS = [ gallium, ]) -env.Prepend(LIBS = env['X11_LIBS']) +env.Append(LIBS = env['X11_LIBS']) env.Append(CPPPATH = [ '#src/gallium/drivers', _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
