# HG changeset patch # User Matti Hamalainen # Date 1149080344 0 # Node ID c4e5604a82577172ab2d888da980758576632deb # Parent 0a60ef2b5ab0ec058e1301ea3cbc3dd5ca9a477d Largefile support additions. diff -r 0a60ef2b5ab0 -r c4e5604a8257 configure.in --- a/configure.in Wed May 31 12:58:05 2006 +0000 +++ b/configure.in Wed May 31 12:59:04 2006 +0000 @@ -34,6 +34,9 @@ AC_LIBTOOL_DLOPEN AC_LIB_RPATH AM_PROG_LIBTOOL +AC_SYS_LARGEFILE +AC_TYPE_OFF_T +AC_FUNC_FSEEKO dnl *** diff -r 0a60ef2b5ab0 -r c4e5604a8257 src/config.h.in --- a/src/config.h.in Wed May 31 12:58:05 2006 +0000 +++ b/src/config.h.in Wed May 31 12:59:04 2006 +0000 @@ -3,6 +3,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H +/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ +#undef HAVE_FSEEKO + /* Define if you have HardSID with libSIDPlay 2 */ #undef HAVE_HARDSID_BUILDER @@ -114,6 +117,15 @@ first (like Motorola and SPARC, unlike Intel and VAX). */ #undef WORDS_BIGENDIAN +/* Number of bits in a file offset, on hosts where this is settable. */ +#undef _FILE_OFFSET_BITS + +/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ +#undef _LARGEFILE_SOURCE + +/* Define for large files, on AIX-style hosts. */ +#undef _LARGE_FILES + /* Define to empty if `const' does not conform to ANSI C. */ #undef const @@ -126,6 +138,9 @@ /* Define to rpl_malloc if the replacement function should be used. */ #undef malloc +/* Define to `long' if does not define. */ +#undef off_t + /* Define to `unsigned' if does not define. */ #undef size_t