changeset 397:c4e5604a8257

Largefile support additions.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 31 May 2006 12:59:04 +0000
parents 0a60ef2b5ab0
children 933b9ea5923e
files configure.in src/config.h.in
diffstat 2 files changed, 18 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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 ***
--- 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 <dlfcn.h> 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 <sys/types.h> does not define. */
+#undef off_t
+
 /* Define to `unsigned' if <sys/types.h> does not define. */
 #undef size_t