deiv / driftnet

Driftnet watches network traffic, and picks out and displays JPEG and GIF images for display
GNU General Public License v2.0
437 stars 56 forks source link

Can't install #4

Open DarkRedman opened 9 years ago

DarkRedman commented 9 years ago

I tried that command ./configure; make; make install unfortunately configure isn't found, make doesn't find any makefile and make says there is no rules for the target "install" I think your repository is really incomplete, install file, useless or not well done.

deiv commented 9 years ago

Yeah, that probably fail all the times :)

Problem here is that we are not providing the source code with the needed generated files for autotools, I think that Chris always provides a generated tarball with them.

You should run autoreconf -fi prior to this commands to generate the fault configure file.

DarkRedman commented 9 years ago

I tried but I still get strange errors

Making all in src
make[1] : on entre dans le répertoire « /home/darkredman/creepy/driftnet/src »
make  all-recursive
make[2] : on entre dans le répertoire « /home/darkredman/creepy/driftnet/src »
Making all in media
make[3] : on entre dans le répertoire « /home/darkredman/creepy/driftnet/src/media »
make[3]: rien à faire pour « all ».
make[3] : on quitte le répertoire « /home/darkredman/creepy/driftnet/src/media »
Making all in display
make[3] : on entre dans le répertoire « /home/darkredman/creepy/driftnet/src/display »
  CC       gif.o
Makefile:319 : la recette pour la cible « gif.o » a échouée
make[3] : on quitte le répertoire « /home/darkredman/creepy/driftnet/src/display »
Makefile:449 : la recette pour la cible « all-recursive » a échouée
make[2] : on quitte le répertoire « /home/darkredman/creepy/driftnet/src »
Makefile:316 : la recette pour la cible « all » a échouée
make[1] : on quitte le répertoire « /home/darkredman/creepy/driftnet/src »
Makefile:395 : la recette pour la cible « all-recursive » a échouée
deiv commented 9 years ago

Sounds that you lacks libgif development library.

Could you run configure this way './configure --disable-silent-rules', run make again and paste the error ?