You may get an error C compiler cc is not found while installting or compiling softwares in your linux system, need to install supporting library packages.

#  ./configure

checking for OS
 + Linux 2.6.32-71.29.1.el6.x86_64 x86_64
checking for C compiler ... not found
./configure: error: C compiler cc is not found


Just install supporting library packages based on your Operating System.

For CentOS, Fedora:
 
#  yum groupinstall "Development Tools"

or
 
# yum install gcc glibc glibc-common gd gd-devel -y

For Ubuntu, Debian :
 
​#  sudo apt-get install build-essential

This Link also help you,