diff src/config.h.in @ 933:6820177eb6da

Properly check for things like off_t and size_t and few libc functions, just to be safe.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 Nov 2012 01:47:29 +0200
parents ae1f6418d093
children 7a3aefb4844c
line wrap: on
line diff
--- a/src/config.h.in	Sun Nov 18 18:09:19 2012 +0200
+++ b/src/config.h.in	Mon Nov 19 01:47:29 2012 +0200
@@ -22,6 +22,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 the GNU gettext() function is already present or preinstalled. */
 #undef HAVE_GETTEXT
 
@@ -37,9 +40,6 @@
 /* Define to 1 if you have the <memory.h> header file. */
 #undef HAVE_MEMORY_H
 
-/* Define to 1 if you have the `memset' function. */
-#undef HAVE_MEMSET
-
 /* Define if you have reSID for libSIDPlay 2 */
 #undef HAVE_RESID_BUILDER
 
@@ -125,6 +125,9 @@
 /* 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
 
@@ -137,5 +140,8 @@
 #undef inline
 #endif
 
+/* Define to `long int' if <sys/types.h> does not define. */
+#undef off_t
+
 /* Define to `unsigned int' if <sys/types.h> does not define. */
 #undef size_t