From: Pádraig Brady
Date: Sun, 28 Aug 2022 01:48:11 +0000 (+0100) Subject: maint: be defensive in avoiding gnulib's poll module X-Git-Tag: v9.2~153 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a1c328cd55f427a74f16cda8513bedb7c153fd8;p=thirdparty%2Fcoreutils.git maint: be defensive in avoiding gnulib's poll module * src/tail.c (check_output_alive): Add a guard that would trigger on most platforms, to detect if we're using the gnulib poll module. That's currently problematic in the way it emulates poll() using select() and would cause issues on macOS and AIX at least as poll() is replaced there. --- diff --git a/src/tail.c b/src/tail.c index 3ae6baf523..6c7d59faf9 100644 --- a/src/tail.c +++ b/src/tail.c @@ -352,6 +352,13 @@ check_output_alive (void) if (! monitor_output) return; + /* Check we've not enabled gnulib's poll module + as that will emulate poll() in a way not + currently compatible with tail's usage. */ +#if defined HAVE_POLL +# error "gnulib's poll() replacement is currently incompatible" +#endif + /* poll(2) is needed on AIX (where 'select' gives a readable event immediately) and Solaris (where 'select' never gave a readable event). Also use poll(2) on systems we know work