diff options
Diffstat (limited to 'build')
-rwxr-xr-x | build | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -16,22 +16,20 @@ common_opts = \ --with-cxx-shared \ --without-debug \ --without-profile \ + --with-termlib=tinfo \ + --with-ticlib=tic \ --disable-termcap \ --enable-symlinks \ --enable-const build_ncurses_opts = $(common_opts) \ --with-install-prefix="$${PWD}/dest-ncurses" \ - --enable-overwrite \ - --with-termlib=tinfo \ - --with-ticlib=tic + --enable-overwrite build_ncursesw_opts = $(common_opts) \ --with-install-prefix="$${PWD}/dest-ncursesw" \ --includedir=/usr/include/ncursesw \ --without-progs \ --disable-overwrite \ - --enable-widec \ - --with-termlib=tinfow \ - --with-ticlib=ticw + --enable-widec build_ncurses_legacy_opts = $(build_ncurses_opts) \ --with-install-prefix="$${PWD}/dest-ncurses-legacy" \ --with-abi-version=$(legacy_abi_ver) |