meson: Use the check_header function
authorDylan Baker <dylan.c.baker@intel.com>
Fri, 24 Apr 2020 19:28:39 +0000 (12:28 -0700)
committerMarge Bot <eric+marge@anholt.net>
Mon, 1 Jun 2020 18:59:18 +0000 (18:59 +0000)
Instead of open coding it. This was new in 0.47

Acked-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Eric Engestrom <eric@engestrom.ch>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4740>

meson.build

index 35cc4f300523b146a19d34b3e56de1631db69a2b..bebb900d10a3eb36b3f20d96f5e7de243737ed55 100644 (file)
@@ -1155,7 +1155,7 @@ if (cc.has_header_symbol('sys/mkdev.h', 'major') and
 endif
 
 foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h', 'endian.h', 'dlfcn.h', 'execinfo.h', 'sys/shm.h', 'cet.h']
-  if cc.compiles('#include <@0@>'.format(h), name : '@0@'.format(h))
+  if cc.check_header(h)
     pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify())
   endif
 endforeach