diff options
author | P. J. McDermott <pjm@nac.net> | 2013-08-04 10:24:55 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-08-04 10:24:55 (EDT) |
commit | 628e52126c3b912ed54df481249efbb6010f4033 (patch) | |
tree | 3fed9d29e99fe522bbb83ed37ec1d8fd6c226fb5 /build | |
parent | b76d084bbd04cb7fc19f49c99002a83ed8e53b80 (diff) |
build: Adjust and reorganize configure options.
Diffstat (limited to 'build')
-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 $@ |