Hello, I tried to build version 2.6.6 on one of my Sinix machines which resulted in the following compile error: syscall.c:247: identifier "off64_t" is undefined <snip file="syscall.c" line-start="244"> OFF_T do_lseek(int fd, OFF_T offset, int whence) { #ifdef HAVE_LSEEK64 off64_t lseek64(); return lseek64(fd, offset, whence); #else return lseek(fd, offset, whence); #endif } </snip> <snip file="config.log"> This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.59. Invocation command line was $ configure --prefix=/home/xps/xpsprod/berny --with-rsync-path=./rsync ## --------- ## ## Platform. ## ## --------- ## hostname = lux09034 uname -m = RM600 uname -r = 5.45 uname -s = SINIX-Y uname -v = B2005 /usr/bin/uname -p = R4000 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown ... configure:7183: checking for off64_t configure:7207: cc -c -g -DHAVE_CONFIG_H conftest.c >&5 conftest.c 99: [error]: CFE1020 identifier "off64_t" is undefined if ((off64_t *) 0) ^ ... ac_cv_func_lseek64=yes ... ac_cv_sizeof_off64_t=0 </snip> Replacing "off64_t" at syscall.c:247 seemed to work. Have a nice day, Berny
I just committed a change to CVS that should fix this. Thanks for the report!