# HG changeset patch # User Rob Landley # Date 1284337302 18000 # Node ID 9f58f9a6b9e4f9132888ad6136cf4d442e82126d # Parent 313a2569dfe2fc93be95058e5d381c7af1b87945 Strangely, ncurses won't build shared libraries unless explicitly told to do so on the configure command line. (Yes, it's a library package. No, I don't know what they were smoking either.) diff -r 313a2569dfe2 -r 9f58f9a6b9e4 sources/native-builds/gentoo-stage1-files/init --- a/sources/native-builds/gentoo-stage1-files/init Sun Sep 12 18:05:42 2010 -0500 +++ b/sources/native-builds/gentoo-stage1-files/init Sun Sep 12 19:21:42 2010 -0500 @@ -60,7 +60,7 @@ set_titlebar "ncurses" && cp -sfR /mnt/ncurses ncurses && cd ncurses && -./configure --without-cxx-binding && +./configure --without-cxx-binding --with-shared && make -j $CPUS && make install &&