Re: [Bug-wget] Fix: Large files in WARC

2012-02-04 Thread Giuseppe Scrivano
Gijs van Tulder gvtul...@gmail.com writes: Hi, Another small problem in the WARC section: wget crashes with a segmentation fault if you have WARC output enabled and try to download a file larger than 2GB. I think this is because of the size_t, ftell and fseek in warc.c. The attached patch

Re: [Bug-wget] Fix: Large files in WARC

2012-02-04 Thread Giuseppe Scrivano
Ángel González keis...@gmail.com writes: You would also need #define _FILE_OFFSET_BITS 64 but that seems already handled by configure. I'm not sure if that would work for 32bit Windows, though. _FILE_OFFSET_BITS is defined by the AC_SYS_LARGEFILE macro in the configure.ac file so we haven't