diff --git a/header_checks/meson.build b/header_checks/meson.build index 4cc855e218..35b5db9fdd 100644 --- a/header_checks/meson.build +++ b/header_checks/meson.build @@ -123,17 +123,17 @@ function_checks = [ ['dladdr', ['dlfcn.h'], ['dl'], '-D_GNU_SOURCE=1'] ] -open_cloexec = cc.run('''#include - #include - #include - int main(int argc, char **argv) { - int res = open(argv[0], O_RDONLY | O_CLOEXEC); - if (res < 0) return 1; - return 0; - } - ''', - name : 'open works with O_CLOEXEC') -if open_cloexec.compiled() and open_cloexec.returncode() == 0 +open_cloexec = cc.compiles('''#include + #include + #include + int main(int argc, char **argv) { + int res = open(argv[0], O_RDONLY | O_CLOEXEC); + if (res < 0) return 1; + return 0; + } + ''', + name : 'open works with O_CLOEXEC') +if open_cloexec config_h.set10('HAVE_OPEN_CLOEXEC', true) endif