Compare commits

...

2 commits

Author SHA1 Message Date
Samuel Pitoiset
b8b7c57c00 meson: do not mark exynos/omap/tegra as disabled features
Otherwise, using `--auto-features=enabled` wouldn't work because it
only "forces" auto options to be enabled.

This will enable these backends in CI to catch possible build errors.

Closes: https://gitlab.freedesktop.org/mesa/libdrm/-/work_items/128
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
2026-04-27 18:23:20 +02:00
Samuel Pitoiset
7f86e45164 omap: stop including linux/types.h
Nothing uses __u32 and friends, so it should be safe to remove.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
2026-04-27 18:23:04 +02:00
2 changed files with 0 additions and 4 deletions

View file

@ -46,13 +46,11 @@ option(
option( option(
'omap', 'omap',
type : 'feature', type : 'feature',
value : 'disabled',
description : '''Enable support for OMAP's experimental KMS API.''', description : '''Enable support for OMAP's experimental KMS API.''',
) )
option( option(
'exynos', 'exynos',
type : 'feature', type : 'feature',
value : 'disabled',
description : '''Enable support for EXYNOS's experimental KMS API.''', description : '''Enable support for EXYNOS's experimental KMS API.''',
) )
option( option(
@ -63,7 +61,6 @@ option(
option( option(
'tegra', 'tegra',
type : 'feature', type : 'feature',
value : 'disabled',
description : '''Enable support for Tegra's experimental KMS API.''', description : '''Enable support for Tegra's experimental KMS API.''',
) )
option( option(

View file

@ -27,7 +27,6 @@
*/ */
#include <stdlib.h> #include <stdlib.h>
#include <linux/types.h>
#include <errno.h> #include <errno.h>
#include <sys/mman.h> #include <sys/mman.h>
#include <fcntl.h> #include <fcntl.h>