From 36dbaa707cdf07dd97c5e7a890f77f78dba2e3e8 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Fri, 1 May 2020 00:07:12 +0100 Subject: [PATCH] build - remove useless header checks for uv.h we check for uv.h - but never do anything with it. this is configure noise that just confuses people into thinking we might do something. we still have dead libuv support but it's enabled with HAVE_LIBUV and we'd need to link to libuv too... which we don't do and we don't enable this. removing libuv supporrt entirely is a totally different question to raise. this here is just removing noise. --- header_checks/meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/header_checks/meson.build b/header_checks/meson.build index 1d3f0e171f..955c0082f2 100644 --- a/header_checks/meson.build +++ b/header_checks/meson.build @@ -49,12 +49,10 @@ header_checks = [ 'sys/times.h', 'longinfo.h', 'ieeefp.h', - 'node/uv.h', 'sys/timerfd.h', 'features.h', 'langinfo.h', 'locale.h', - 'uv.h', 'crt_externs.h' ]