42 lines
No EOL
1,001 B
CMake
42 lines
No EOL
1,001 B
CMake
/* Define to 1 if your processor stores words with the most significant byte
|
|
first (like Motorola and SPARC, unlike Intel and VAX). */
|
|
#cmakedefine WORDS_BIGENDIAN ${CMAKE_WORDS_BIGENDIAN}
|
|
|
|
/* Define to 1 if stdbool.h conforms to C99. */
|
|
#cmakedefine HAVE_STDBOOL_H 1
|
|
|
|
/* Debug support */
|
|
#cmakedefine DEBUG 1
|
|
|
|
#cmakedefine HAVE_FSEEKO
|
|
#cmakedefine HAVE_FTELLO
|
|
#cmakedefine HAVE_FSEEK64
|
|
#cmakedefine HAVE_FTELL64
|
|
|
|
#cmakedefine HAVE_OFF_T
|
|
#ifdef HAVE_OFF_T
|
|
#cmakedefine OFF_T ${OFF_T}
|
|
#define SIZEOF_OFF_T OFF_T
|
|
#endif
|
|
|
|
#cmakedefine HAVE_FPOS_T
|
|
#ifdef HAVE_FPOS_T
|
|
#cmakedefine FPOS_T ${FPOS_T}
|
|
#define SIZEOF_FPOS_T FPOS_T
|
|
#endif
|
|
|
|
|
|
/* Large file support - Can't this be done better with CMake!? What about on Windows? */
|
|
#define _FILE_OFFSET_BITS 64
|
|
#define _LARGEFILE_SOURCE 1
|
|
#define _LARGE_FILES
|
|
#define HAVE_LARGEFILE_SUPPORT
|
|
|
|
#if defined(_FILE_OFFSET_BITS)
|
|
# if (_FILE_OFFSET_BITS<64)
|
|
# undef _FILE_OFFSET_BITS
|
|
# define _FILE_OFFSET_BITS 64
|
|
# endif
|
|
#else
|
|
# define _FILE_OFFSET_BITS 64
|
|
#endif |