mirror of
https://github.com/yshui/picom.git
synced 2025-04-14 17:53:25 -04:00
meson.build: sort required packages alphabetically
and add a comment on why some xcb packages are in the required_packages array instead of the required_xcb_packages one
This commit is contained in:
parent
d03cb4ea24
commit
6f868e54b9
1 changed files with 5 additions and 3 deletions
|
@ -15,12 +15,14 @@ picom_inc = include_directories('.')
|
|||
cflags = []
|
||||
|
||||
required_xcb_packages = [
|
||||
'xcb-render', 'xcb-damage', 'xcb-randr', 'xcb-sync', 'xcb-composite',
|
||||
'xcb-shape', 'xcb-xfixes', 'xcb-present', 'xcb-glx', 'xcb-dpms', 'xcb'
|
||||
'xcb', 'xcb-composite', 'xcb-damage', 'xcb-dpms', 'xcb-glx', 'xcb-present',
|
||||
'xcb-randr', 'xcb-render', 'xcb-shape', 'xcb-sync', 'xcb-xfixes'
|
||||
]
|
||||
|
||||
# Some XCB packages are here because their versioning differs (see check below).
|
||||
required_packages = [
|
||||
'x11', 'x11-xcb', 'xcb-renderutil', 'xcb-image', 'xext', 'pixman-1', 'xcb-util'
|
||||
'pixman-1', 'x11', 'x11-xcb', 'xcb-image', 'xcb-renderutil', 'xcb-util',
|
||||
'xext'
|
||||
]
|
||||
|
||||
foreach i : required_packages
|
||||
|
|
Loading…
Add table
Reference in a new issue