* Build with -D_FILE_OFFSET_BITS=64 to support files >= 2^31 bytes

(NIX-22).
This commit is contained in:
Eelco Dolstra 2006-09-22 11:13:12 +00:00
parent 25df501704
commit 4cab35d1a6
1 changed files with 5 additions and 0 deletions

View File

@ -79,6 +79,11 @@ AC_ENABLE_SHARED
AC_PROG_LIBTOOL
# Use 64-bit file system calls so that we can support files > 2 GiB.
CFLAGS="-D_FILE_OFFSET_BITS=64 $CFLAGS"
CXXFLAGS="-D_FILE_OFFSET_BITS=64 $CXXFLAGS"
# Check for pubsetbuf.
AC_MSG_CHECKING([for pubsetbuf])
AC_LANG_PUSH(C++)