Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Richard Wirth wrote: > Hello Tony, > > there is an undefined type uintptr_t in lib/fnmatch.c and > cvsapi/lib/fnmatch.c > That's ANSI... should be there on pretty much any platform. Maybe just needs a configure for it, but it's hard to get right - on linux it's unsigned int because you can get a pointer into it. On Win64 it has to be __int64 as MS defined int and long as 32bit(!)... I'd expect it to vary by platform. Tony