From 4c56e68b7f3506cb347ebe82b9af864694da280a Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Fri, 22 Aug 2014 13:40:45 +0200 Subject: [PATCH] note on LFS macros --- UPGRADING.INTERNALS | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index f0eed8c0d4e..d446dcea3bb 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -11,6 +11,7 @@ UPGRADE NOTES - PHP X.Y f. zend_parse_parameters() specs g. sprintf() formats h. HashTable API + i. New portable macros for large file support 2. Build system changes a. Unix build system changes @@ -79,6 +80,15 @@ UPGRADE NOTES - PHP X.Y Datatype for array indexes was changed to php_uint_t, for string keys to zend_string *. + i. New portable macros for large file support + + Function Alias Comment + stat, _stat64 zend_stat for use with zend_stat_t + fstat, _fstat64 zend_fstat for use with zend_stat_t + lseek, _lseeki64 zend_lseek for use with zend_off_t + ftell, _ftelli64 zend_ftell for use with zend_off_t + fseek, _fseeki64 zend_fseek for use with zend_off_t + ======================== 2. Build system changes ========================