mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
scons: Check for libdrm_[intel|radeon] as well
And run SConscripts if they are present. Also make dri depend on both drm and x11.
This commit is contained in:
parent
98d6ed8742
commit
c0db7854d5
2 changed files with 30 additions and 16 deletions
|
|
@ -560,10 +560,14 @@ def generate(env):
|
|||
env.Tool('udis86')
|
||||
|
||||
pkg_config_modules(env, 'x11', ['x11', 'xext'])
|
||||
pkg_config_modules(env, 'dri', ['libdrm'])
|
||||
pkg_config_modules(env, 'drm', ['libdrm'])
|
||||
pkg_config_modules(env, 'drm_intel', ['libdrm_intel'])
|
||||
pkg_config_modules(env, 'drm_radeon', ['libdrm_radeon'])
|
||||
pkg_config_modules(env, 'xorg', ['xorg-server'])
|
||||
pkg_config_modules(env, 'kms', ['libkms'])
|
||||
|
||||
env['dri'] = env['x11'] and env['drm']
|
||||
|
||||
# Custom builders and methods
|
||||
env.Tool('custom')
|
||||
createInstallMethods(env)
|
||||
|
|
|
|||
|
|
@ -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([
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue