ncurses: Pass --disable-widec to configure
Some checks failed
CI / crosstool (macos-13) (push) Has been cancelled
CI / crosstool (ubuntu-22.04) (push) Has been cancelled
CI / tarballs (ubuntu-22.04) (push) Has been cancelled
CI / toolchains (push) Has been cancelled

The default for wide char support has changed in ncurses-6.5. This
causes build failures for gdb. Pass --disable-widec to prevent the build
errors.

Fixes #2292, #2294
Signed-off-by: Chris Packham <judge.packham@gmail.com>
This commit is contained in:
Chris Packham 2025-02-23 11:44:22 +13:00
parent 64e6c96532
commit 5a11188bd0

View File

@ -133,6 +133,8 @@ do_ncurses_backend() {
esac
done
ncurses_opts+=("--disable-widec")
if [ "${CT_NCURSES_NEW_ABI}" != "y" ]; then
ncurses_opts+=("--with-abi-version=5")
fi