I'm trying to compile 0.1.3 on umbuntu dapper. I get the following error:
gcc -o wepattack wepattack.o rc4.o wepfilter.o log.o\
modes.o misc.o verify.o keygen.o -lpcap -lz -lcrypto
gcc: log.omodes.o: No such file or directory
make: *** [wepattack] Error 1
Any ideas why? Google shows nothing...
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Coffee to the rescue...
In src/Makefile on line 24 change
$(LD) $(LDFLAGS) -o $@ wepattack.o rc4.o wepfilter.o log.o\
to
$(LD) $(LDFLAGS) -o $@ wepattack.o rc4.o wepfilter.o log.o \
...it needs the space before the newline, at least on gcc 4.0.3
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm trying to compile 0.1.3 on umbuntu dapper. I get the following error:
gcc -o wepattack wepattack.o rc4.o wepfilter.o log.o\
modes.o misc.o verify.o keygen.o -lpcap -lz -lcrypto
gcc: log.omodes.o: No such file or directory
make: *** [wepattack] Error 1
Any ideas why? Google shows nothing...
Thanks
Coffee to the rescue...
In src/Makefile on line 24 change
$(LD) $(LDFLAGS) -o $@ wepattack.o rc4.o wepfilter.o log.o\
to
$(LD) $(LDFLAGS) -o $@ wepattack.o rc4.o wepfilter.o log.o \
...it needs the space before the newline, at least on gcc 4.0.3