When compiled with mingw32-4.0-gcc-4.8.1 (32-bit) the 'extras' command doesnt list any new files (Windows 7 64Bit, MSYS shell).

Reason is: config.h (and sqlite3.h and tcl.h) defines _USE_32BIT_TIME_T which forces 'time_t' to be 32bit resulting in readdir() returning a dirent struct with dirent->d_name not pointing to the filename at all (displaced by 16 Bytes).

Maybe the 32bit time_t is required for other parts of Fossil but vfile_scan() cant find anything.

My current workaround is compiling against a modified dirent.h (with __time64_t instead of time_t) and until now it seems to have no ugly side effects.

But that cant be the solution...

Tontyna
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to