diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-22T17·36+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-22T17·36+0000 |
commit | 77d272623fb4fd57cf27d4b92a7dc1713a2d4098 (patch) | |
tree | 37c40b30768dfe348527a93237652e041280419a /configure.ac | |
parent | 7e05b8b75e0f4b370cc7d4b78b3fb18a3678b360 (diff) |
* 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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0095e7d5ec41..29b741927422 100644 --- a/configure.ac +++ b/configure.ac @@ -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, |