sdk: reinstate COMPOSITE symbol
Composite extension is always enabled for pretty long time now, but some
drivers (eg. xf86-video-intel) still relying on this symbol being set,
otherwise assuming to run w/o composite and doing crazy things.
Fixes: d708b28adc
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
ca5fb14d05
commit
fe4bc433a4
|
@ -204,6 +204,9 @@ conf_data.set('TCPCONN', '1')
|
|||
conf_data.set('UNIXCONN', host_machine.system() != 'windows' ? '1' : false)
|
||||
conf_data.set('IPv6', build_ipv6 ? '1' : false)
|
||||
|
||||
# some drivers (eg. xf86-video-intel) still relying on this symbol being set
|
||||
conf_data.set('COMPOSITE', '1')
|
||||
|
||||
conf_data.set('DAMAGE', '1')
|
||||
conf_data.set('DBE', '1')
|
||||
conf_data.set('DGA', build_dga ? '1' : false)
|
||||
|
|
|
@ -23,6 +23,9 @@
|
|||
/* Default font path */
|
||||
#mesondefine COMPILEDDEFAULTFONTPATH
|
||||
|
||||
/* Support Composite Extension */
|
||||
#mesondefine COMPOSITE
|
||||
|
||||
/* Build DPMS extension */
|
||||
#mesondefine DPMSExtension
|
||||
|
||||
|
|
Loading…
Reference in New Issue