----- "Petter Reinholdtsen" <[email protected]> wrote: > Looking at the source, the problem seem to be that the struct stat > member st_mtime is not the same type as time_t. > > I've flagged the problematic lines with **: > ... > last_mtime can't be converted to int, compared to statbuf.st_mtime or > get an assignment from statbuf.st_mtime. I'm not quite sure how the > st_mtime membe variable can end up being different from time_t.
I'm not sure either. > Perhaps some missing include file? The stat(2) manual page state > that these are needed: > #include <sys/types.h> > #include <sys/stat.h> > #include <unistd.h> > > The pmns.c source only include <sys/stat.h>. If that is the > solution, here is a patch: It pulls in sys/types.h and unistd.h via "impl.h". But perhaps the order is important... we really need to run a build on an alpha but I have not been able to get access to one. Do you have one handy? Can you confirm either resolution, if so I'm happy to make the change, but feel like we're guessing a bit too much here at the moment. cheers. -- Nathan -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

