Re: undefined reference to `scm_init_guile'

2006-03-13 Thread steven mestdagh
Neil Jerram [2006-03-11, 18:43:17]: > steven mestdagh <[EMAIL PROTECTED]> writes: > > > Neil Jerram [2006-03-10, 22:41:16]: > >> > >> OK, so it's HAVE_LIBC_STACK_END that is not defined, then? When this > >> is the case, 1.8 leaves scm_init_guile undefined, whereas 1.6 would > >> use the vast pi

file-exists? confused

2006-03-13 Thread Bill Schottstaedt
The new Guile's file-exists? function is confused by very large files: guile> (version) "1.8.0" guile> (file-exists? "/home/bil/zap/sounds/bigger.snd") #f guile> (quit) /home/bil/ ls -la /home/bil/zap/sounds/bigger.snd -rw-r--r-- 1 bil bil 6350320648 Mar 13 04:07 /home/bil/zap/sounds/bigger.snd

Re: file-exists? confused

2006-03-13 Thread Kevin Ryde
"Bill Schottstaedt" <[EMAIL PROTECTED]> writes: > > The new Guile's file-exists? function is confused by very large files: Ahh. I changed it from access() to stat() to get the perms right under setuid. I think you'll find you can't open such a file in guile, so saying it doesn't exist is bad, bu