[PATCH] Trust AC_SYS_LARGEFILE to provide large file support

2015-10-08 Thread Josh Stone
AC_SYS_LARGEFILE defines _FILE_OFFSET_BITS in config.h if needed for LFS, and this automatically maps things like open to open64. But quite a few places used explicit 64-bit names, which won't work on platforms like FreeBSD where off_t is always 64-bit and there are no foo64 names. It's better to

Re: [PATCH] Move recursive nested function to file scope.

2015-10-08 Thread Chih-hung Hsieh
Mark, Could you take a look of the attached 0002*patch file? Only one typo in 0001*patch was fixed and I synced with latest source. I am going to clean up and split my previous patches for nested functions into smaller pieces like this to make your job a little easier. Thanks. On Tue, Sep 15,

Re: [PATCH] Do without union of variable length arrays.

2015-10-08 Thread Mark Wielaard
On Wed, 2015-10-07 at 16:46 -0700, Chih-hung Hsieh wrote: > Your 0001-Allocate*path looked very clean to me. Thanks, pushed to master.