Acked-by: Chengwen Feng <[email protected]>
On 2024/2/1 1:45, David Marchand wrote:
> When a component is disabled, the reason meson variable must be set to
> provide an explanation why.
>
> Since epoll is a Linux thing, report that the graph application is only
> supported on Linux.
>
> Fixes: 5b21ffb23308 ("app/graph: add CLI framework")
> Cc: [email protected]
>
> Signed-off-by: David Marchand <[email protected]>
> ---
> app/graph/meson.build | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/app/graph/meson.build b/app/graph/meson.build
> index 5b0f966d99..8aefdf505c 100644
> --- a/app/graph/meson.build
> +++ b/app/graph/meson.build
> @@ -5,6 +5,7 @@
> name = 'graph'
> build = cc.has_header('sys/epoll.h')
> if not build
> + reason = 'only supported on Linux'
> subdir_done()
> endif
>
>