Author: robert
Date: 2008-10-13 15:14:10 -0600 (Mon, 13 Oct 2008)
New Revision: 1425
Modified:
branches/Onward/temporary_system/ncurses.txt
Log:
Add wide character support to Ncurses in /tools. The Linux kernel menuconfig
needs this. Added a couple other configure options to Ncurses to restrict
root's environment, and make the tic program a symbolic link
Modified: branches/Onward/temporary_system/ncurses.txt
===================================================================
--- branches/Onward/temporary_system/ncurses.txt 2008-10-13 19:56:00 UTC
(rev 1424)
+++ branches/Onward/temporary_system/ncurses.txt 2008-10-13 21:14:10 UTC
(rev 1425)
@@ -4,8 +4,15 @@
mkdir -v obj/ &&
cd obj/ &&
-../configure --prefix=/tools --with-shared \
- --without-debug --without-ada --enable-overwrite \
+
+# We need wide character support for the Linux kernel menuconfig.
+# --enable-symlinks installs the 'tic' program as a symbolic link (why not).
+# --disable-root-environ restricts some environment variables, like TERMINFO,
+# when running as root, so it can not be customized (why not).
+
+../configure --prefix=/tools --with-shared --without-debug \
+ --without-ada --enable-overwrite --enable-widec \
+ --without-cxx-binding --enable-symlinks --disable-root-environ \
--infodir=$(pwd)/DESTDIR --mandir=$(pwd)/DESTDIR &&
make &&
make install
--
http://linuxfromscratch.org/mailman/listinfo/hlfs-book
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page