|
This post probably belongs in linux -> general instead of linux -> kernel.
Which program are you trying to install from a tarball?
./configure is a bash script that generates a Makefile after analyzing your system.
The configure script is built by the autoconf program given a configure.ac or configure.in template file. However you probably don't need to edit this file.
The first step will be to read the README and INSTALL files. Second, try
'./configure --help'. There may be information on some options you will need or want.
If the configure script fails, you need to read the log to determine what the problem was. Usually the cause is a missing dependency.
Last edited by jschiwal; 05-03-2006 at 12:01 AM.
|