mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 03:30:22 +01:00
meson: replace if(compiles) have=true with have=compiles
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
parent
07585200e9
commit
431f1a147e
1 changed files with 2 additions and 3 deletions
|
|
@ -187,9 +187,8 @@ else
|
|||
endif
|
||||
dep_m = cc.find_library('m', required : false)
|
||||
foreach header : ['sys/sysctl.h', 'sys/select.h', 'alloca.h']
|
||||
if cc.compiles('#include <@0@>'.format(header), name : '@0@ works'.format(header))
|
||||
config.set10('HAVE_' + header.underscorify().to_upper(), true)
|
||||
endif
|
||||
config.set('HAVE_' + header.underscorify().to_upper(),
|
||||
cc.compiles('#include <@0@>'.format(header), name : '@0@ works'.format(header)))
|
||||
endforeach
|
||||
if cc.has_header_symbol('sys/sysmacros.h', 'major')
|
||||
config.set10('MAJOR_IN_SYSMACROS', true)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue