comparison lib-src/ChangeLog @ 5727:86d33ddc7fd6

Avoid EOVERFLOW from stat() calls due to overflowing inode numbers. The btrfs filesystem now uses 64-bit inode numbers even on 32-bit systems. This can lead to spurious stat() failures, where EOVERFLOW is returned because the inode number does not fit into the 32-bit stat structure, even when the caller is not interested in the inode number. This patch builds with _FILE_OFFSET_BITS == 64 when possible, and deals with integers that may be too large to fit into a Lisp fixnum. For more information, see xemacs-patches message <CAHCOHQk_mPM6WgFChBsGafqhuazep6VED7swFoqfFXOV1r8org@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Wed, 06 Mar 2013 08:32:17 -0700
parents bee2e2568828
children 0e2f2837c2bd
comparison
equal deleted inserted replaced
5726:179f4a9201b5 5727:86d33ddc7fd6
1 2013-03-04 Jerry James <james@xemacs.org>
2
3 * insert-data-in-exec.c (main): Use OFF_T, FSEEK, and FTELL macros,
4 and adjust variable types and printf specifiers for large file
5 support on supporting systems.
6
1 2013-01-04 Stephen J. Turnbull <stephen@xemacs.org> 7 2013-01-04 Stephen J. Turnbull <stephen@xemacs.org>
2 8
3 * XEmacs 21.5.33 "horseradish" is released. 9 * XEmacs 21.5.33 "horseradish" is released.
4 10
5 2012-08-02 Stephen J. Turnbull <stephen@xemacs.org> 11 2012-08-02 Stephen J. Turnbull <stephen@xemacs.org>