/* Static GCC/MinGW config for the root Makefile. Use CMake for auto-detected config. */
#ifndef FRIIDUMP_CONFIG_H
#define FRIIDUMP_CONFIG_H

#define HAVE_STDBOOL_H 1

/* MSVC does not provide POSIX fseeko/ftello. Use _fseeki64/_ftelli64
   through libfriidump/misc.c instead of advertising HAVE_FSEEKO/HAVE_FTELLO. */
#if !defined(_MSC_VER)
#define HAVE_FSEEKO 1
#define HAVE_FTELLO 1
#endif

#define HAVE_OFF_T 1
#define SIZEOF_OFF_T 8
#define HAVE_FPOS_T 1
#define SIZEOF_FPOS_T 8
#define _FILE_OFFSET_BITS 64
#define _LARGEFILE_SOURCE 1
#define _LARGE_FILES 1
#define HAVE_LARGEFILE_SUPPORT 1

#endif /* FRIIDUMP_CONFIG_H */
