From c0db7854d502d0b24110cbe8560967794d7938cb Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Fri, 5 Nov 2010 16:55:46 +0000 Subject: scons: Check for libdrm_[intel|radeon] as well And run SConscripts if they are present. Also make dri depend on both drm and x11. --- src/gallium/SConscript | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) (limited to 'src') diff --git a/src/gallium/SConscript b/src/gallium/SConscript index 63435a3065..9436b684e4 100644 --- a/src/gallium/SConscript +++ b/src/gallium/SConscript @@ -29,17 +29,21 @@ if not env['msvc']: 'drivers/r300/SConscript', ]) -if env['dri']: +if env['drm']: # These drivers depend on drm headers - SConscript([ - # XXX: nouveau drivers have a tight dependency on libdrm, so to enable - # we need some version logic before we enable them. Also, ATM there is - # no nouveau target in scons - #'drivers/nouveau/SConscript', - #'drivers/nv50/SConscript', - #'drivers/nvfx/SConscript', - 'drivers/r600/SConscript', - ]) + if env['drm_radeon']: + SConscript([ + 'drivers/r600/SConscript', + ]) + # XXX: nouveau drivers have a tight dependency on libdrm, so to enable + # we need some version logic before we enable them. Also, ATM there is + # no nouveau target in scons + # if env['drm_nouveau']: + # SConscript([ + # 'drivers/nouveau/SConscript', + # 'drivers/nv50/SConscript', + # 'drivers/nvfx/SConscript', + # ]) # # State trackers @@ -89,14 +93,20 @@ if env['platform'] == 'windows': if env['dri']: SConscript([ 'targets/SConscript.dri', - 'targets/dri-i915/SConscript', - 'targets/dri-i965/SConscript', - #'targets/dri-nouveau/SConscript', - 'targets/dri-r300/SConscript', - 'targets/dri-r600/SConscript', 'targets/dri-swrast/SConscript', 'targets/dri-vmwgfx/SConscript', + #'targets/dri-nouveau/SConscript', ]) + if env['drm_intel']: + SConscript([ + 'targets/dri-i915/SConscript', + 'targets/dri-i965/SConscript', + ]) + if env['drm_radeon']: + SConscript([ + 'targets/dri-r300/SConscript', + 'targets/dri-r600/SConscript', + ]) if env['xorg']: SConscript([ -- cgit v1.2.3