checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
Ya make sure that you can get gcc in your $PATH.
It is the normal c compiler for linux, it forms the heart if of the operating system if the linux kernel is the brain. Those others cc, cc, and cl, are just other C compilers. Of course C is the programming language everything is written in.
There are more then likely 3 reasons for this type of error.
1. The $PATH variable is misconfigured. Type in "echo $PATH" to find that out. The path is basicly the directories in the order of were the OS looks for executable. If gcc is in /usr/bin/ and there is no /usr/bin in the PATH, the OS ain't gonna find it.
2. The package for gcc in your OS is not installed. Gcc should either be in /bin or in /usr/bin. If you can't find it anywere, (/bin, /usr/bin, /usr/local/bin, /sbin, /usr/sbin, /usr/local/sbin, or the normal directories you can find executables...) THe you are just going to hav to install it.
3. The software you are trying to install is simply broken. If you type in "gcc -v" this will return the version number and other information on gcc. If you get a response then gcc is probably gonna work. IF not the problem is probably one of the 2 above. Try going to ./configure --help and see if there is any options you can use to force configure to know were the gcc executable is located.
This gcc missing is a fairly serious error, without it you have a snowball's chance in hell of ever compiling something. If you compiled stuff in the past, and you can still compile something now even after all this trouble, then its a possiblity the package is broken. How ever this is unlikely if it a "stable" package. This usually means that it's been tested on several different OS's and with different people and it works ok. IF it is a "developement" or "unstable" then the chances of it breaking is pretty likely.
What are you trying to install?