Installing Ncurses-&ncurses-version; Estimated build time: &ncurses-time-tools; Estimated required disk space: &ncurses-compsize-tools; &aa-ncurses-shortdesc; &aa-ncurses-dep;    Installation of Ncurses Fix two minor things: patch -Np1 -i ../&ncurses-etip-patch; patch -Np1 -i ../&ncurses-vsscanf-patch; The first patch corrects the etip.h header file, and the second patch prevents some compiler warnings being issued on the use of deprecated headers. Now prepare Ncurses for compilation: ./configure --prefix=/tools --with-shared \     --without-debug --without-ada --enable-overwrite The meaning of the configure options: --without-ada: This tells Ncurses not to build its Ada bindings, even if an Ada compiler is installed on the host. This must be done because once we enter the chroot environment, Ada will no longer be available. --enable-overwrite: This tells Ncurses to install its header files into /tools/include instead of /tools/include/ncurses to ensure that other packages can find the Ncurses headers successfully. Compile the programs and libraries: make Then install them and their documentation: make install