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 )