From 8b8a8476d3ff435b210bc28d4526e78eb8f6f7ed Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Sat, 2 Oct 2021 15:35:56 -0600 Subject: [PATCH] package/pipewire: depend on ncurses when available If ncursesw is enabled depend on ncurses so that pw-top is built. Signed-off-by: James Hilliard Signed-off-by: Thomas Petazzoni --- package/pipewire/pipewire.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/pipewire/pipewire.mk b/package/pipewire/pipewire.mk index d6cbe1605f..b88f129055 100644 --- a/package/pipewire/pipewire.mk +++ b/package/pipewire/pipewire.mk @@ -101,6 +101,10 @@ else PIPEWIRE_CONF_OPTS += -Dffmpeg=disabled endif +ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y) +PIPEWIRE_DEPENDENCIES += ncurses +endif + ifeq ($(BR2_PACKAGE_PIPEWIRE_V4L2),y) PIPEWIRE_CONF_OPTS += -Dv4l2=enabled else