From b90e3cfa10b64ce1ea2df2bd4745d3769046a304 Mon Sep 17 00:00:00 2001 From: Explorer09 Date: Sat, 2 Nov 2024 16:36:20 +0800 Subject: [PATCH] ci: build ncurses as curses --- .github/workflows/ci.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f6525a53..525bb721c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,14 +22,14 @@ jobs: ./configure \ --prefix=/usr/local \ \ - --without-normal \ - --without-shared \ - --without-cxx-shared \ + --with-normal \ + --with-shared \ + --with-cxx-shared \ \ --enable-reentrant \ - --enable-widec \ + --disable-widec \ \ - --with-debug \ + --without-debug \ --without-profile \ --with-termlib=yes \ --with-pthread \ @@ -37,11 +37,10 @@ jobs: --enable-pc-files \ --enable-symlinks \ --enable-warnings \ - --disable-weak-symbols \ + --enable-weak-symbols \ --with-pkg-config=yes \ - --disable-overwrite \ - --with-curses-h \ - --with-extra-suffix=suffix + --enable-overwrite \ + --with-curses-h make -k || : make -k install DESTDIR=$(pwd)/ncurses-install || : ( cd ncurses-install && find . -ls )