#! /bin/sh # Basically I followed the path outlined in the # extensions wiki. So the sources for my # packages were placed in /home/tc/ # For this you need Xorg-dev package and # compile, coreutils.... export CFLAGS="-march=i486 -mtune=i686 -Os -pipe" export CXXFLAGS="-march=i486 -mtune=i686 -Os -pipe" # basically what's in the wiki but I did't add # -fno-exceptions and -fno-rtti in the CXXFLAGS export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/li /pkgconfig # Prior to this I had gone to each of the sources and unarchived them. # Then I added the script for the menu option. cd neXtaw... ./configure --prefix=/usr/local make sudo mkdir /tmp/neXtaw sudo make DESTDIR=/tmp/neXtaw #then follow the steps in the wiki and repeat for # the mowitz and siag extensions. # no special options were needed to configure and build the packages.