/config-cmake.h.in
Autoconf | 89 lines | 39 code | 26 blank | 24 comment | 10 complexity | c7db764cbac6e5b22b21a94146399721 MD5 | raw file
1/* Name of package */ 2#define PACKAGE "@PACKAGE@" 3 4/* Define to the address where bug reports for this package should be sent. */ 5#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@" 6 7/* Define to the full name of this package. */ 8#define PACKAGE_NAME "@PACKAGE_NAME@" 9 10/* Define to the full name and version of this package. */ 11#define PACKAGE_STRING "@PACKAGE_STRING@" 12 13/* Define to the one symbol short name of this package. */ 14#define PACKAGE_TARNAME "@PACKAGE_NAME@" 15 16/* Define to the version of this package. */ 17#define PACKAGE_VERSION "@PACKAGE_VERSION@" 18 19/* The size of `double', as computed by sizeof. */ 20#define SIZEOF_DOUBLE @SIZEOF_DOUBLE@ 21 22/* The size of `float', as computed by sizeof. */ 23#define SIZEOF_FLOAT @SIZEOF_FLOAT@ 24 25/* The size of `long double', as computed by sizeof. */ 26#define SIZEOF_LONG_DOUBLE @SIZEOF_LONG_DOUBLE@ 27 28/* Version number of package */ 29#define VERSION "@PACKAGE_VERSION@" 30 31/* Define to 1 if you have the <sys/types.h> header file. */ 32#cmakedefine HAVE_SYS_TYPES_H 33 34/* Define to 1 if you have the <stdint.h> header file. */ 35#cmakedefine HAVE_STDINT_H 36 37/* Define to 1 if you have the <stddef.h> header file. */ 38#cmakedefine HAVE_STDDEF_H 39 40/* Define to 1 if you have the <inttypes.h> header file. */ 41#cmakedefine HAVE_INTTYPES_H 42 43/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ 44#cmakedefine HAVE_FSEEKO 45 46/* Define to 1 if your processor stores words with the most significant byte 47 first (like Motorola and SPARC, unlike Intel and VAX). */ 48#cmakedefine WORDS_BIGENDIAN 49 50/* Define to empty if `const' does not conform to ANSI C. */ 51/* #undef const */ 52 53/* Define to rpl_malloc if the replacement function should be used. */ 54/* #undef malloc */ 55 56/* Define to `unsigned int' if <sys/types.h> does not define. */ 57/* #undef size_t */ 58 59/* Define to the type of an integer type of width exactly 16 bits if 60 such a type exists and the standard includes do not define it. */ 61#cmakedefine int16_t short int 62 63/* Define to the type of an integer type of width exactly 32 bits if 64 such a type exists and the standard includes do not define it. */ 65#cmakedefine int32_t int 66 67/* Define to the type of an integer type of width exactly 64 bits if 68 such a type exists and the standard includes do not define it. */ 69#cmakedefine int64_t long long int 70 71/* Define to the type of an integer type of width exactly 8 bits if 72 such a type exists and the standard includes do not define it. */ 73#cmakedefine int8_t char 74 75/* Define to the type of an unsigned integer type of width exactly 16 bits if 76 such a type exists and the standard includes do not define it. */ 77#cmakedefine uint16_t unsigned short int 78 79/* Define to the type of an unsigned integer type of width exactly 32 bits if 80 such a type exists and the standard includes do not define it. */ 81#cmakedefine uint32_t unsigned int 82 83/* Define to the type of an unsigned integer type of width exactly 64 bits if 84 such a type exists and the standard includes do not define it. */ 85#cmakedefine uint64_t unsigned long long int 86 87/* Define to the type of an unsigned integer type of width exactly 8 bits if 88 such a type exists and the standard includes do not define it. */ 89#cmakedefine uint8_t unsigned char