igraph library using dev cpp

Hi I'm using Dev cpp and i can't install this library ( igraph http://cneurocvs.rmki.kfki.hu/igraph/ ) i try to install that but i can't compile to generete the .a file.
Error message:
sys/times.h: No such file or directory
How can i compile that??
I'm a begginer
Get and configure MSYS to use the MinGW installation used by Dev-C++, then compile igraph as you would compile any GNU package:

gunzip igraph-0.5.tar.gz
tar -xf igraph-0.5.tar
cd igraph-0.5 (or whatever)
./configure
make

Then you need to move the .h file to the include directory used by Dev-C++ and there may also be .a files. Those, you move them to the lib directory. Finally, if any .dll was generated, move it to system32
Is there a devpak for it already on www.devpak.org ?
Topic archived. No new replies allowed.