On Mon, Aug 30, 2010 at 1:34 PM, Alexej Ismailov <[email protected]> wrote: > I've tried to configure with –disable-largefile flag but this doesn't remove > or bypass the hardcoded 8 byte check. What is the purpose of this check? Is > there any configurations I can do to libtorrent or libcurl to make it work? > If I comment out that internal error throw, I get Segmentation fault later. > > Hope somebody has some wise words on this!
The code has only really been tested with sizeof(off_t) being 8 bytes, so if you disable the check you're likely to uncover a few hidden bugs or assumptions. The check is more to avoid weird bug reports from people who happen to compile with sizeof(off_t) being 4 bytes. Jari Sundell _______________________________________________ Libtorrent-devel mailing list [email protected] http://rakshasa.no/mailman/listinfo/libtorrent-devel

