mirror of
https://github.com/NixOS/nix
synced 2025-07-07 01:51:47 +02:00
* NAR archives: handle files larger than 2^32 bytes. Previously it
would just silently store only (fileSize % 2^32) bytes. * Use posix_fallocate if available when unpacking archives. * Provide a better error message when trying to unpack something that isn't a NAR archive.
This commit is contained in:
parent
7e05b8b75e
commit
77d272623f
7 changed files with 48 additions and 17 deletions
|
@ -266,6 +266,7 @@ AC_CHECK_FUNCS([setresuid setreuid lchown])
|
|||
|
||||
# Nice to have, but not essential.
|
||||
AC_CHECK_FUNCS([strsignal])
|
||||
AC_CHECK_FUNCS([posix_fallocate])
|
||||
|
||||
|
||||
# This is needed if ATerm, Berkeley DB or bzip2 are static libraries,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue