config.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /* config.h. Generated from config.h.in by configure. */
  2. /* config.h.in. Generated from configure.ac by autoheader. */
  3. /* Year, month and day this program is compiled. */
  4. #define COMPILE_DATE "Mon 23 Aug 2021"
  5. /* System where this is compiled. */
  6. #define COMPILE_UNAME "Linux"
  7. /* Define to 1 if you have the <fcntl.h> header file. */
  8. #define HAVE_FCNTL_H 1
  9. /* Define to 1 if you have the `getpagesize' function. */
  10. #define HAVE_GETPAGESIZE 1
  11. /* Define to 1 if you have the <inttypes.h> header file. */
  12. #define HAVE_INTTYPES_H 1
  13. /* Define to 1 if you have the `gc' library (-lgc). */
  14. /* #undef HAVE_LIBGC */
  15. /* Define to 1 if your system has a GNU libc compatible `malloc' function, and
  16. to 0 otherwise. */
  17. #define HAVE_MALLOC 1
  18. /* Define to 1 if you have the <memory.h> header file. */
  19. #define HAVE_MEMORY_H 1
  20. /* Define to 1 if you have a working `mmap' system call. */
  21. #define HAVE_MMAP 1
  22. /* Define to 1 if your system has a GNU libc compatible `realloc' function,
  23. and to 0 otherwise. */
  24. #define HAVE_REALLOC 1
  25. /* Define to 1 if you have the <stdint.h> header file. */
  26. #define HAVE_STDINT_H 1
  27. /* Define to 1 if you have the <stdlib.h> header file. */
  28. #define HAVE_STDLIB_H 1
  29. /* Define to 1 if you have the `strchr' function. */
  30. #define HAVE_STRCHR 1
  31. /* Define to 1 if you have the `strdup' function. */
  32. #define HAVE_STRDUP 1
  33. /* Define to 1 if you have the `strerror' function. */
  34. #define HAVE_STRERROR 1
  35. /* Define to 1 if you have the <strings.h> header file. */
  36. #define HAVE_STRINGS_H 1
  37. /* Define to 1 if you have the <string.h> header file. */
  38. #define HAVE_STRING_H 1
  39. /* Define to 1 if you have the `strtol' function. */
  40. #define HAVE_STRTOL 1
  41. /* Define to 1 if you have the <sys/param.h> header file. */
  42. #define HAVE_SYS_PARAM_H 1
  43. /* Define to 1 if you have the <sys/stat.h> header file. */
  44. #define HAVE_SYS_STAT_H 1
  45. /* Define to 1 if you have the <sys/types.h> header file. */
  46. #define HAVE_SYS_TYPES_H 1
  47. /* Define to 1 if you have the <unistd.h> header file. */
  48. #define HAVE_UNISTD_H 1
  49. /* Name of package */
  50. #define PACKAGE "packgpl"
  51. /* Define to the address where bug reports for this package should be sent. */
  52. #define PACKAGE_BUGREPORT "unknown"
  53. /* Define to the full name of this package. */
  54. #define PACKAGE_NAME "packgpl"
  55. /* Define to the full name and version of this package. */
  56. #define PACKAGE_STRING "packgpl 0.4"
  57. /* Define to the one symbol short name of this package. */
  58. #define PACKAGE_TARNAME "packgpl"
  59. /* Define to the home page for this package. */
  60. #define PACKAGE_URL ""
  61. /* Define to the version of this package. */
  62. #define PACKAGE_VERSION "0.4"
  63. /* Define to 1 if you have the ANSI C header files. */
  64. #define STDC_HEADERS 1
  65. /* Version number of package */
  66. #define VERSION "0.4"
  67. /* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
  68. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  69. #define below would cause a syntax error. */
  70. /* #undef _UINT32_T */
  71. /* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
  72. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  73. #define below would cause a syntax error. */
  74. /* #undef _UINT8_T */
  75. /* Define to `__inline__' or `__inline' if that's what the C compiler
  76. calls it, or to nothing if 'inline' is not supported under any name. */
  77. #ifndef __cplusplus
  78. /* #undef inline */
  79. #endif
  80. /* Define to rpl_malloc if the replacement function should be used. */
  81. /* #undef malloc */
  82. /* Define to `long int' if <sys/types.h> does not define. */
  83. /* #undef off_t */
  84. /* Define to rpl_realloc if the replacement function should be used. */
  85. /* #undef realloc */
  86. /* Define to the equivalent of the C99 'restrict' keyword, or to
  87. nothing if this is not supported. Do not define if restrict is
  88. supported directly. */
  89. #define restrict __restrict
  90. /* Work around a bug in Sun C++: it does not support _Restrict or
  91. __restrict__, even though the corresponding Sun C compiler ends up with
  92. "#define restrict _Restrict" or "#define restrict __restrict__" in the
  93. previous line. Perhaps some future version of Sun C++ will work with
  94. restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
  95. #if defined __SUNPRO_CC && !defined __RESTRICT
  96. # define _Restrict
  97. # define __restrict__
  98. #endif
  99. /* Define to `unsigned int' if <sys/types.h> does not define. */
  100. /* #undef size_t */
  101. /* Define to the type of an unsigned integer type of width exactly 32 bits if
  102. such a type exists and the standard includes do not define it. */
  103. /* #undef uint32_t */
  104. /* Define to the type of an unsigned integer type of width exactly 8 bits if
  105. such a type exists and the standard includes do not define it. */
  106. /* #undef uint8_t */