/Modules/_ctypes/libffi/fficonfig.h.in

http://unladen-swallow.googlecode.com/ · Autoconf · 160 lines · 56 code · 47 blank · 57 comment · 38 complexity · acb9744ea3efe168dc0e6f827e884ce4 MD5 · raw file

  1. /* fficonfig.h.in. Generated from configure.ac by autoheader. */
  2. /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
  3. systems. This function is required for `alloca.c' support on those systems.
  4. */
  5. #undef CRAY_STACKSEG_END
  6. /* Define to 1 if using `alloca.c'. */
  7. #undef C_ALLOCA
  8. /* Define to the flags needed for the .section .eh_frame directive. */
  9. #undef EH_FRAME_FLAGS
  10. /* Define this if you want extra debugging. */
  11. #undef FFI_DEBUG
  12. /* Define this is you do not want support for the raw API. */
  13. #undef FFI_NO_RAW_API
  14. /* Define this is you do not want support for aggregate types. */
  15. #undef FFI_NO_STRUCTS
  16. /* Define to 1 if you have `alloca', as a function or macro. */
  17. #undef HAVE_ALLOCA
  18. /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
  19. */
  20. #undef HAVE_ALLOCA_H
  21. /* Define if your assembler supports .cfi_* directives. */
  22. #undef HAVE_AS_CFI_PSEUDO_OP
  23. /* Define if your assembler supports .register. */
  24. #undef HAVE_AS_REGISTER_PSEUDO_OP
  25. /* Define if your assembler and linker support unaligned PC relative relocs.
  26. */
  27. #undef HAVE_AS_SPARC_UA_PCREL
  28. /* Define to 1 if you have the <dlfcn.h> header file. */
  29. #undef HAVE_DLFCN_H
  30. /* Define if __attribute__((visibility("hidden"))) is supported. */
  31. #undef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
  32. /* Define to 1 if you have the <inttypes.h> header file. */
  33. #undef HAVE_INTTYPES_H
  34. /* Define if you have the long double type and it is bigger than a double */
  35. #undef HAVE_LONG_DOUBLE
  36. /* Define to 1 if you have the `memcpy' function. */
  37. #undef HAVE_MEMCPY
  38. /* Define to 1 if you have the <memory.h> header file. */
  39. #undef HAVE_MEMORY_H
  40. /* Define to 1 if you have the `mmap' function. */
  41. #undef HAVE_MMAP
  42. /* Define if mmap with MAP_ANON(YMOUS) works. */
  43. #undef HAVE_MMAP_ANON
  44. /* Define if mmap of /dev/zero works. */
  45. #undef HAVE_MMAP_DEV_ZERO
  46. /* Define if read-only mmap of a plain file works. */
  47. #undef HAVE_MMAP_FILE
  48. /* Define if .eh_frame sections should be read-only. */
  49. #undef HAVE_RO_EH_FRAME
  50. /* Define to 1 if you have the <stdint.h> header file. */
  51. #undef HAVE_STDINT_H
  52. /* Define to 1 if you have the <stdlib.h> header file. */
  53. #undef HAVE_STDLIB_H
  54. /* Define to 1 if you have the <strings.h> header file. */
  55. #undef HAVE_STRINGS_H
  56. /* Define to 1 if you have the <string.h> header file. */
  57. #undef HAVE_STRING_H
  58. /* Define to 1 if you have the <sys/mman.h> header file. */
  59. #undef HAVE_SYS_MMAN_H
  60. /* Define to 1 if you have the <sys/stat.h> header file. */
  61. #undef HAVE_SYS_STAT_H
  62. /* Define to 1 if you have the <sys/types.h> header file. */
  63. #undef HAVE_SYS_TYPES_H
  64. /* Define to 1 if you have the <unistd.h> header file. */
  65. #undef HAVE_UNISTD_H
  66. /* Define to 1 if your C compiler doesn't accept -c and -o together. */
  67. #undef NO_MINUS_C_MINUS_O
  68. /* Name of package */
  69. #undef PACKAGE
  70. /* Define to the address where bug reports for this package should be sent. */
  71. #undef PACKAGE_BUGREPORT
  72. /* Define to the full name of this package. */
  73. #undef PACKAGE_NAME
  74. /* Define to the full name and version of this package. */
  75. #undef PACKAGE_STRING
  76. /* Define to the one symbol short name of this package. */
  77. #undef PACKAGE_TARNAME
  78. /* Define to the version of this package. */
  79. #undef PACKAGE_VERSION
  80. /* The size of `double', as computed by sizeof. */
  81. #undef SIZEOF_DOUBLE
  82. /* The size of `long double', as computed by sizeof. */
  83. #undef SIZEOF_LONG_DOUBLE
  84. /* If using the C implementation of alloca, define if you know the
  85. direction of stack growth for your system; otherwise it will be
  86. automatically deduced at runtime.
  87. STACK_DIRECTION > 0 => grows toward higher addresses
  88. STACK_DIRECTION < 0 => grows toward lower addresses
  89. STACK_DIRECTION = 0 => direction of growth unknown */
  90. #undef STACK_DIRECTION
  91. /* Define to 1 if you have the ANSI C header files. */
  92. #undef STDC_HEADERS
  93. /* Define this if you are using Purify and want to suppress spurious messages.
  94. */
  95. #undef USING_PURIFY
  96. /* Version number of package */
  97. #undef VERSION
  98. /* Define to 1 if your processor stores words with the most significant byte
  99. first (like Motorola and SPARC, unlike Intel and VAX). */
  100. #undef WORDS_BIGENDIAN
  101. #ifdef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
  102. #ifdef LIBFFI_ASM
  103. #define FFI_HIDDEN(name) .hidden name
  104. #else
  105. #define FFI_HIDDEN __attribute__ ((visibility ("hidden")))
  106. #endif
  107. #else
  108. #ifdef LIBFFI_ASM
  109. #define FFI_HIDDEN(name)
  110. #else
  111. #define FFI_HIDDEN
  112. #endif
  113. #endif