From b7afbf788aedc5ed8f89c5d12e3843aadebf479c Mon Sep 17 00:00:00 2001 From: lethosor Date: Fri, 17 Sep 2021 23:10:39 -0400 Subject: [PATCH] Install libncursesw5 instead of libncursesw6 DF is hardcoded to open libncurses.so.5 first. Both libncurses.so.5 and libncurses.so.6 on Ubuntu 20.04 appear to have a valid waddnwstr symbol on my end, but the GitHub Actions environment might be different. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f28d58e1..843b8528e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: sudo apt-get update sudo apt-get install \ libgtk2.0-0 \ - libncursesw6 \ + libncursesw5 \ libsdl-image1.2-dev \ libsdl-ttf2.0-dev \ libsdl1.2-dev \