[plt-scheme] Re: Large file support in PLT Scheme
At Fri, 4 Sep 2009 10:56:13 +0000 (UTC), Martin Dirichs wrote:
> So what I was trying was to recompile the PLT Scheme source with some flags:
>
> cd plt-4.2.1/src
> ./configure CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
> CXXFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
Since these flags affect preprocessing, define CPPFLAGS instead:
./configure CPPFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
I will look into adding these flags automatically in `configure'.