Mesa (master): scons: Fix graw-xlib lib order.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Wed Oct 17 14:34:45 UTC 2012


Module: Mesa
Branch: master
Commit: 879894552be91d79a71fbea4346c932917c3eea3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=879894552be91d79a71fbea4346c932917c3eea3

Author: José Fonseca <jfonseca at vmware.com>
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',




More information about the mesa-commit mailing list