the only place in qemu which used the check for inotify_init()
was linux-user, which now assumes inotify_init() is always
present. There's no need to check for this function anymore.
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
meson.build | 1 -
1 file changed, 1 deletion(-)
diff --git a/meson.build b/meson.build
index 9b5f1540ff..6ea49c6fc0 100644
--- a/meson.build
+++ b/meson.build
@@ -2709,7 +2709,6 @@ if (have_inotify_init or have_inotify_init1) and host_os == 'freebsd'
have_inotify_init1 = inotify.found()
endif
endif
-config_host_data.set('CONFIG_INOTIFY', have_inotify_init)
config_host_data.set('CONFIG_INOTIFY1', have_inotify_init1)
# has_header_symbol
--
2.47.3