render/pixman: use a single global dependency

The pixman renderer can not be disabled and other parts of wlroots
do not carry their own dependency of libpixman around. Use a single
global dependency which also satisfies the pixman renderer.
This commit is contained in:
Consolatis 2026-05-30 16:41:47 +02:00
parent 15a378316e
commit b287e361fc
2 changed files with 1 additions and 5 deletions

View file

@ -116,7 +116,7 @@ xkbcommon = dependency('xkbcommon',
], ],
) )
pixman = dependency('pixman-1', pixman = dependency('pixman-1',
version: '>=0.43.0', version: '>=0.46.0',
fallback: 'pixman', fallback: 'pixman',
default_options: ['werror=false'], default_options: ['werror=false'],
) )

View file

@ -1,7 +1,3 @@
pixman = dependency('pixman-1', version: '>=0.46.0')
wlr_deps += pixman
wlr_files += files( wlr_files += files(
'pass.c', 'pass.c',
'pixel_format.c', 'pixel_format.c',