Wiki content at FAQ Changed by someone at IP 62.49.62.81 :
@@ -40,6 +40,8 @@
perl -V | grep "uselargefiles=define"
means perl has large file support.
You have to recompile apache and mod_perl. To get the required flags into apxs
use:
+
+
#!/bin/bash
CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" \
CFLAGS_SHLIB="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" \
@@ -49,6 +51,7 @@
--enable-shared=max \
--enable-shared=ssl \
--disable-rule=EXPAT
+
The CFLAGS* are the important bits.
Then recompile mod_perl with apxs and it should work... :)