Displaying 1 result from an estimated 1 matches for "have_seeko".
Did you mean:
have_fseeko
2007 Aug 27
1
fix for broken largefile seek() on 32-bit linux (PR#9883)
...forms).
e.g.:
> f<-file("3gigabytefile.dat", "rb")
> seek(f, 3e9, "start", "r")
[1] 0 ## correct
> seek(f, NA, "start", "r")
[1] 0 ## should be 3e+09
DIAGNOSIS
Typo: the compile-time tests for large file support use "HAVE_SEEKO" instead of
"HAVE_FSEEKO", and so fail.
The same typo appears in one of the extra/zlib files, so I'm fixing
it in the patch below, but I haven't tested whether that actually
produces a bug.
PATCH
Index: src/extra/zlib/gzio.c
===============================================...