/config-cmake.h.in

https://code.google.com/ · Autoconf · 89 lines · 39 code · 26 blank · 24 comment · 10 complexity · c7db764cbac6e5b22b21a94146399721 MD5 · raw file

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