I am on ArchLinux64 and this is the error. http://sprunge.us/NLTN
A quick response will be highly appreciated.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2011-07-12
Hi, you could try this git repository which has some fixes (don't know if author is affiliated with proxychains author): https://github.com/haad/proxychains
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I tried to compile proxychains v.3.1 on a x86_64 machine, running a 3.1-CHAKRA kernel and I failed.
I then, came across giradc's solution, but it didn't work for me. So, I opened the two files mentioned in the error log (libproxychains.c and netdb.h) and compared the two declarations. The problem resided in the definition of parameter
flags. If flags is not declared unsigned, then everything works.
Here is my diff file:
294c294
< socklen_t servlen, unsigned int flags)
---
> socklen_t servlen, int flags)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am on ArchLinux64 and this is the error. http://sprunge.us/NLTN
A quick response will be highly appreciated.
Hi, you could try this git repository which has some fixes (don't know if author is affiliated with proxychains author):
https://github.com/haad/proxychains
A fix for this is available there: https://bbs.archlinux.org/viewtopic.php?pid=964665#p964665
Please correct.
I tried to compile proxychains v.3.1 on a x86_64 machine, running a 3.1-CHAKRA kernel and I failed.
I then, came across giradc's solution, but it didn't work for me. So, I opened the two files mentioned in the error log (libproxychains.c and netdb.h) and compared the two declarations. The problem resided in the definition of parameter
flags. If flags is not declared unsigned, then everything works.
Here is my diff file: