From 05eb5b3a71d54daa8a1cd06d18d9b0f8a6ac13ca Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 31 Dec 2025 11:03:07 +0100 Subject: [PATCH] meson.build: drop obsolete check for byteswap.h Signed-off-by: Enrico Weigelt, metux IT consult --- meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/meson.build b/meson.build index 991e773..b96b933 100644 --- a/meson.build +++ b/meson.build @@ -31,7 +31,6 @@ configdir = join_paths(get_option('prefix'), get_option('configdir')) cc = meson.get_compiler('c') have_gbm_bo_use_linear = cc.has_header_symbol('gbm.h', 'GBM_BO_USE_LINEAR') have_gbm_bo_use_front_rendering = cc.has_header_symbol('gbm.h', 'GBM_BO_USE_FRONT_RENDERING') -have_byteswap = cc.has_header('byteswap.h') xorg_include = xorg_dep.get_variable(pkgconfig: 'sdkdir') have_fbGlyphs = cc.has_header('fbpict.h', args: ['-I' + xorg_include]) have_dri3_h = cc.has_header('dri3.h', args: ['-I' + xorg_include]) @@ -54,7 +53,6 @@ config_h.set('HAVE_MISYNCSHM_H', have_misyncshm ? 1 : 0) config_h.set('HAVE_FBGLYPHS', have_fbGlyphs ? 1 : 0) config_h.set('HAVE_GBM_BO_USE_FRONT_RENDERING', have_gbm_bo_use_front_rendering ? 1 : 0) config_h.set('HAVE_GBM_BO_USE_LINEAR', have_gbm_bo_use_linear ? 1 : 0) -config_h.set('HAVE_BYTESWAP_H', have_byteswap ? 1 : 0) config_h.set('HAVE_GLAMOR_H', have_glamor ? 1 : 0) config_h.set('HAVE_GLAMOR_FINISH', have_glamor ? 1 : 0) config_h.set('USE_GLAMOR', get_option('glamor').allowed() ? 1 : 0)