mirror of
https://github.com/X11Libre/xf86-video-amdgpu.git
synced 2026-03-24 01:24:31 +00:00
meson.build: drop obsolete check for byteswap.h
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user