On Sunday 29 September 2002 00:40, [EMAIL PROTECTED] wrote: > d2ia1@nya:~/AxKit-1.6$ grep -i large Makefile > CCFLAGS = -fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE > -D_FILE_OFFSET_BITS=64 > d2ia1@nya:~/AxKit-1.6$ cd ../apache_1.3.24 > d2ia1@nya:~/apache_1.3.24$ grep -i large Makefile > d2ia1@nya:~/apache_1.3.24$ cd ../mod_perl-1.26/ > d2ia1@nya:~/mod_perl-1.26$ grep -i large Makefile > CCFLAGS = -fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE > -D_FILE_OFFSET_BITS=64 > > Does it mean anything that no lines of the Apache Makefile contain the > string "large"?
Correct. I had this problems several times, though I don't remember exactly why I had it and why not any longer. The solution is to force apache to include "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" in the CFLAGS, no matter what. Usually something like this does the job: CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" ./configure ... (append your usual apache configuration flags) CU J�rg --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
