as some of you may know, perl 5.6.0+ enables largefile support by default. in order for mod_perl+apache to cooperate, the lfs flags must either be stripped when mod_perl is built or apache must be built with these flags, e.g. -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
however, this is not possible due to sys/sendfile.h (linux kernel 2.2.16): #ifdef __USE_FILE_OFFSET64 # error "<sendfile.h> cannot be used with _FILE_OFFSET_BITS=64" #endif any ideas howto workaround this? and any plans on adding largefile support to 2.0?
