Bug #1: The makefile will only work for x86 machines. You can fix this
by using this as your RUBYINC line in the makefile
RUBYINC := /usr/lib/ruby/1.8/$(shell uname -m)-linux
The current version hardcodes i486 which will not work on all
machines. This way it is more dynamic
Bug #2: libnids1.23 does not compile due to missing expression in
#elif in killtcp.c. You can fix it with the following
On line 121, change
#elif
to
#elif LIBNET_VER != 0
No comments:
Post a Comment