View Single Post
  #6  
Old February 3rd, 2002, 05:34 AM
smeger smeger is offline
Spackle King Of Helsinki
 
Join Date: Feb 2002
Location: Tempe, AZ
Posts: 45
Thanks: 0
Thanked 0 Times in 0 Posts
smeger is on a distinguished road
Most things are pretty easy to compile. Start by cd-ing into the directory with the source code and look to see if there is a file named 'configure.' If there isn't, ignore the rest of these instructions. If there is, type
Code:
./configure
If it works, move on to the next step. If not, try doing
Code:
cp /usr/libexec/config.guess ./
and running ./configure again. If it still doesn't work, you're SOL.

If it does, type
Code:
make
and wait a long time for everything to compile. Then, if you want the software you've just compiled installed, type
Code:
sudo make install
and your software will be installed into /usr/local
Reply With Quote