Menu

Cannot compile on x86_64

2011-07-02
2013-05-09
  • Abhijeet Rastogi

    I am on ArchLinux64 and this is the error. http://sprunge.us/NLTN
    A quick response will be highly appreciated.

     
  • Anonymous

    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

     
  • girardc

    girardc - 2011-08-29

    A fix for this is available there: https://bbs.archlinux.org/viewtopic.php?pid=964665#p964665
    Please correct.

     
  • nullsem

    nullsem - 2012-02-08

    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)
    
     

Log in to post a comment.