From clauflibitFriiDump-0.5.3.1
This commit is contained in:
parent
fe937e7f4b
commit
87b108d6a1
63 changed files with 11067 additions and 26 deletions
42
config.h.cmake
Normal file
42
config.h.cmake
Normal file
|
@ -0,0 +1,42 @@
|
|||
/* 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
|
Loading…
Add table
Add a link
Reference in a new issue