Arc Forumnew | comments | leaders | submitlogin
Arc3.1 setuid problem on Windows
7 points by kens 5306 days ago | 1 comment
I tried running Arc3.1 on Windows, and it dies with:

   ffi-obj: couldn't get "setuid" from #f (The specified procedure could not be found.; errno=127)
I worked around this by editing ac.scm, replacing the line:

   (define setuid (get-ffi-obj 'setuid #f (_fun _int -> _int)))
with

   (define (setuid x) x)


3 points by revorad 5306 days ago | link

ah thanks. i had the same problem but didn't know how to fix it. it kept me from messing around with arc at work but no longer....

-----