From c8613a29848daf58ce43b01deffac410a344e43e Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 25 Apr 2018 11:43:12 +0100 Subject: [PATCH] meson: Remove unsupported keyword The has_header() function does not have a `required` argument. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 89da132..1641d24 100644 --- a/meson.build +++ b/meson.build @@ -28,7 +28,7 @@ conf.set_quoted('PACKAGE_DATADIR', join_paths(get_option('prefix'), get_option(' conf.set_quoted('PACKAGE_LIBDIR', join_paths(get_option('prefix'), get_option('libdir'))) conf.set_quoted('PACKAGE_LOCALEDIR', join_paths(get_option('prefix'), get_option('datadir'), 'locale')) conf.set_quoted('PACKAGE_LIBEXECDIR', join_paths(get_option('prefix'), get_option('libexecdir'))) -conf.set('HAVE_KHRPLATFORM_H', cc.has_header('KHR/khrplatform.h', required: false)) +conf.set('HAVE_KHRPLATFORM_H', cc.has_header('KHR/khrplatform.h')) # GLX can be used on different platforms, so we expose a # configure time switch to enable or disable it; in case