diff options
| author | Daniel Golle | 2022-07-23 08:53:22 +0000 |
|---|---|---|
| committer | Daniel Golle | 2022-07-23 08:53:22 +0000 |
| commit | 630f39d6f7e58262eccc7f4b3b0c320be6dc1136 (patch) | |
| tree | 1945a453a828e6980f354ec9cc35dfec400e1e15 | |
| parent | d567e131d71b2874c0a1a4dc20300d8cabef9474 (diff) | |
| download | video-630f39d6f7e58262eccc7f4b3b0c320be6dc1136.tar.gz | |
mesa: add missing dependencies
Add missing dependencies on libzstd and libsensors which some libraries
link against if detected during build.
Fixes: #27
Reported-by: @dreirund
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
| -rw-r--r-- | libs/mesa/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/mesa/Makefile b/libs/mesa/Makefile index 3b767f8..d9eb461 100644 --- a/libs/mesa/Makefile +++ b/libs/mesa/Makefile @@ -74,7 +74,7 @@ define Package/libxatracker SUBMENU:=Video TITLE:=Mesa3D libxatracker URL:=https://www.mesa3d.org - DEPENDS:=+libstdcpp +zlib +libdrm +libexpat @(aarch64||arm||i386||i686||x86_64) + DEPENDS:=+libstdcpp +zlib +libdrm +libexpat +libzstd @(aarch64||arm||i386||i686||x86_64) endef define Package/libxatracker/description @@ -108,7 +108,7 @@ define Package/libosmesa SECTION:=libs CATEGORY:=Libraries SUBMENU:=Video - DEPENDS:=+libglapi +libstdcpp +zlib +libwayland +wayland-protocols + DEPENDS:=+libglapi +libstdcpp +zlib +libwayland +libzstd +wayland-protocols TITLE:=off-screen Mesa library URL:=https://www.mesa3d.org endef @@ -159,7 +159,7 @@ define Package/libmesadri-$(subst _,-,$(firstword $(subst :, ,$(1)))) SUBMENU:=Video TITLE:=Mesa3D DRI $(firstword $(subst :, ,$(1))) plugin URL:=https://www.mesa3d.org - DEPENDS:=libmesa $(wordlist 2,$(words $(subst :, ,$(1))),$(subst :, ,$(1))) + DEPENDS:=libmesa +libsensors +libzstd $(wordlist 2,$(words $(subst :, ,$(1))),$(subst :, ,$(1))) endef endef |