summaryrefslogtreecommitdiffstats
path: root/src/glx
diff options
context:
space:
mode:
authorJosé Fonseca <[email protected]>2012-07-12 21:13:10 +0100
committerJosé Fonseca <[email protected]>2012-07-12 21:13:10 +0100
commitbd3aab8d7915b0bc5829a32964955d9da84bef3b (patch)
tree07abacacefed0b4f76feb5836153841c57077eec /src/glx
parent6882381a2efbdf06b7002d11468c94b9964c2bc8 (diff)
scons: Also require recent XCB.
And don't trip when it's not found -- simply skip building src/glx.
Diffstat (limited to 'src/glx')
-rw-r--r--src/glx/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glx/SConscript b/src/glx/SConscript
index 664cb86268d..c921eef7037 100644
--- a/src/glx/SConscript
+++ b/src/glx/SConscript
@@ -1,5 +1,8 @@
Import('*')
+if not env['x11'] or not env['xcb'] or not env['drm']:
+ Return()
+
from sys import executable as python_cmd
env = env.Clone()