Installation of imlib
Install imlib by running the following commands:
CPPFLAGS=-w ./configure --prefix=/usr &&
make &&
make install
Command explanations
CPPFLAGS=-w :
This
disables gcc 3.1 warnings that confuse configure.
./configure --prefix=/usr:
This compiles and installs imlib into the /usr
hierarchy instead of /usr/local.