diff options
-rwxr-xr-x | build | 28 |
1 files changed, 17 insertions, 11 deletions
@@ -2,33 +2,39 @@ build-ncurses: oh-autoconfigure -B obj-ncurses -- \ - --with-install-prefix="$${PWD}/dest" \ - --without-profile \ - --without-debug \ --without-ada \ + --without-tests \ + --enable-pc-files \ + --with-install-prefix="$${PWD}/dest" \ --with-shared \ - --disable-termcap \ + --without-debug \ + --without-profile \ --with-termlib=tinfo \ --with-ticlib=tic \ - --disable-python + --disable-termcap \ + --enable-symlinks \ + --enable-const oh-autobuild -B obj-ncurses touch $@ build-ncursesw: oh-autoconfigure -B obj-ncursesw -- \ --includedir=/usr/include/ncursesw \ - --with-install-prefix="$${PWD}/dest" \ + --without-ada \ --without-manpages \ --without-progs \ - --without-profile \ - --without-debug \ - --without-ada \ + --without-tests \ + --enable-pc-files \ + --with-install-prefix="$${PWD}/dest" \ --with-shared \ - --disable-termcap \ + --without-debug \ + --without-profile \ --without-termlib \ --without-ticlib \ + --disable-termcap \ + --enable-symlinks \ --enable-widec \ - --disable-python + --enable-const oh-autobuild -B obj-ncursesw touch $@ |