blob: 5d0b6613ac75e02f3180f76a5004416a105adf2f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 | #######################################################################
# SConscript for xorg state_tracker
Import('*')
if 'xorg' in env['statetrackers']:
    env = env.Clone()
    env.Append(CPPPATH = [
	'#/src/mesa',
    ])
    env.ParseConfig('pkg-config --cflags --libs xorg-server')
    conf = env.Configure()
    if conf.CheckHeader('X11/extensions/dpmsconst.h'):
        env.Append(CPPDEFINES = [('HAVE_XEXTPROTO_71', '1')])
    st_xorg = env.ConvenienceLibrary(
	target = 'st_xorg',
	source = [ 'xorg_composite.c',
		'xorg_crtc.c',
		'xorg_dri2.c',
		'xorg_driver.c',
		'xorg_exa.c',
		'xorg_exa_tgsi.c',
		'xorg_output.c',
		'xorg_renderer.c',
		'xorg_xv.c',
		]
    )
    Export('st_xorg')
 |