mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02:00
* Build with -D_FILE_OFFSET_BITS=64 to support files >= 2^31 bytes
(NIX-22).
This commit is contained in:
parent
25df501704
commit
4cab35d1a6
1 changed files with 5 additions and 0 deletions
|
@ -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++)
|
||||
|
|
Loading…
Reference in a new issue