Peter da Silva

Results 130 comments of Peter da Silva

As expected, the tarball build v0.4.3.tar.gz has the same failure mode ``` ltrcc.c:54:21: fatal error: version.c: No such file or directory #include "version.c" ^ compilation terminated. ``` gmake works.

Looks like doing "bash ./configure --with-tcl..." gets it to build even with the bad line. I suspect there's some subtle difference in the way bash and sh parse the code...

That prevents the problem from being manifested, but this code needs to be fixed or removed. ``` if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then system=MP-RAS-`awk...

Me too! There's a standard for multi-select on the Mac and it'd be great if it was followed.

Suggested workaround: transfer all the files and delete the ones you don't want, since it has to transfer the files to generate the thumbnails anyway. At least it shouldn't be...

A vote for not just sanitizing filenames, because that can lead to data loss. Properly encapsulating Unicode all the way through your internal file name handling can be a real...

I had that in the original code. ``` if(addr == (char *)-1) addr = 0; if(addr) flags |= MAP_FIXED; map = mmap(addr, size, PROT_READ|PROT_WRITE, flags, fd, (off_t) 0); ``` It...

This might be worked on alongside the fix to issue #38 if boost allows for it.

With a long-running process, the in-memory speedtable is used. ISTR this was created to avoid having short-running processes beating on the speedtable server. How would you envision long-running processes using...