forked from bradenmcd/friidump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.cmake
42 lines (34 loc) · 1001 Bytes
/
config.h.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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