ffi 1.9.18 → 1.9.21

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of ffi might be problematic. Click here for more details.

Files changed (366) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -2
  3. data/Rakefile +14 -3
  4. data/ext/ffi_c/AbstractMemory.c +6 -1
  5. data/ext/ffi_c/Platform.c +10 -2
  6. data/ext/ffi_c/extconf.rb +7 -2
  7. data/ext/ffi_c/libffi.bsd.mk +9 -3
  8. data/ext/ffi_c/libffi.darwin.mk +14 -4
  9. data/ext/ffi_c/libffi.gnu.mk +2 -1
  10. data/ext/ffi_c/libffi.mk +9 -4
  11. data/ext/ffi_c/libffi/ChangeLog.libffi +2 -2
  12. data/ext/ffi_c/libffi/{ChangeLog → ChangeLog.libffi-3.1} +1402 -2
  13. data/ext/ffi_c/libffi/ChangeLog.v1 +1 -1
  14. data/ext/ffi_c/libffi/LICENSE +1 -1
  15. data/ext/ffi_c/libffi/Makefile.am +166 -157
  16. data/ext/ffi_c/libffi/README +164 -52
  17. data/ext/ffi_c/libffi/acinclude.m4 +381 -0
  18. data/ext/ffi_c/libffi/autogen.sh +2 -0
  19. data/ext/ffi_c/libffi/configure.ac +148 -256
  20. data/ext/ffi_c/libffi/configure.host +265 -4
  21. data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
  22. data/ext/ffi_c/libffi/doc/libffi.texi +430 -45
  23. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  24. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +207 -0
  25. data/ext/ffi_c/libffi/include/Makefile.am +3 -3
  26. data/ext/ffi_c/libffi/include/ffi.h.in +107 -50
  27. data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
  28. data/ext/ffi_c/libffi/include/ffi_common.h +32 -11
  29. data/ext/ffi_c/libffi/libffi.map.in +80 -0
  30. data/ext/ffi_c/libffi/libffi.pc.in +3 -2
  31. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +637 -0
  32. data/ext/ffi_c/libffi/libtool-ldflags +106 -0
  33. data/ext/ffi_c/libffi/libtool-version +1 -1
  34. data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
  35. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +69 -0
  36. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +13 -8
  37. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +31 -104
  38. data/ext/ffi_c/libffi/m4/{ax_check_compiler_flags.m4 → ax_check_compile_flag.m4} +30 -34
  39. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +32 -11
  40. data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +6 -5
  41. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +31 -21
  42. data/ext/ffi_c/libffi/man/Makefile.am +2 -2
  43. data/ext/ffi_c/libffi/man/ffi.3 +10 -0
  44. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +6 -4
  45. data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
  46. data/ext/ffi_c/libffi/msvcc.sh +72 -9
  47. data/ext/ffi_c/libffi/src/aarch64/ffi.c +941 -0
  48. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +81 -0
  49. data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
  50. data/ext/ffi_c/libffi/src/aarch64/sysv.S +438 -0
  51. data/ext/ffi_c/libffi/src/alpha/ffi.c +335 -98
  52. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +10 -1
  53. data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
  54. data/ext/ffi_c/libffi/src/alpha/osf.S +161 -266
  55. data/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
  56. data/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
  57. data/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
  58. data/ext/ffi_c/libffi/src/arm/ffi.c +597 -517
  59. data/ext/ffi_c/libffi/src/arm/ffitarget.h +24 -7
  60. data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
  61. data/ext/ffi_c/libffi/src/arm/sysv.S +303 -417
  62. data/ext/ffi_c/libffi/src/avr32/ffitarget.h +6 -1
  63. data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
  64. data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
  65. data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
  66. data/ext/ffi_c/libffi/src/closures.c +319 -44
  67. data/ext/ffi_c/libffi/src/cris/ffi.c +10 -7
  68. data/ext/ffi_c/libffi/src/cris/ffitarget.h +6 -1
  69. data/ext/ffi_c/libffi/src/debug.c +6 -1
  70. data/ext/ffi_c/libffi/src/dlmalloc.c +16 -11
  71. data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
  72. data/ext/ffi_c/libffi/src/frv/ffitarget.h +6 -1
  73. data/ext/ffi_c/libffi/src/ia64/ffi.c +11 -7
  74. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +6 -1
  75. data/ext/ffi_c/libffi/src/java_raw_api.c +23 -5
  76. data/ext/ffi_c/libffi/src/m32r/ffi.c +1 -1
  77. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +6 -1
  78. data/ext/ffi_c/libffi/src/m68k/ffi.c +87 -13
  79. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +6 -1
  80. data/ext/ffi_c/libffi/src/m68k/sysv.S +119 -32
  81. data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
  82. data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
  83. data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
  84. data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
  85. data/ext/ffi_c/libffi/{fficonfig.hw → src/metag/ffitarget.h} +22 -26
  86. data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
  87. data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
  88. data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
  89. data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
  90. data/ext/ffi_c/libffi/src/mips/ffi.c +95 -28
  91. data/ext/ffi_c/libffi/src/mips/ffitarget.h +9 -2
  92. data/ext/ffi_c/libffi/src/mips/n32.S +126 -56
  93. data/ext/ffi_c/libffi/src/mips/o32.S +148 -27
  94. data/ext/ffi_c/libffi/src/moxie/eabi.S +55 -82
  95. data/ext/ffi_c/libffi/src/moxie/ffi.c +40 -44
  96. data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
  97. data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
  98. data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
  99. data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
  100. data/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
  101. data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
  102. data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
  103. data/ext/ffi_c/libffi/src/pa/ffitarget.h +8 -1
  104. data/ext/ffi_c/libffi/src/powerpc/aix.S +6 -6
  105. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +3 -1
  106. data/ext/ffi_c/libffi/src/powerpc/asm.h +2 -2
  107. data/ext/ffi_c/libffi/src/powerpc/darwin.S +2 -7
  108. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +22 -26
  109. data/ext/ffi_c/libffi/src/powerpc/ffi.c +103 -1378
  110. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +25 -25
  111. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +945 -0
  112. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
  113. data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
  114. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +100 -44
  115. data/ext/ffi_c/libffi/src/powerpc/linux64.S +100 -59
  116. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +360 -108
  117. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +138 -68
  118. data/ext/ffi_c/libffi/src/powerpc/sysv.S +68 -112
  119. data/ext/ffi_c/libffi/src/prep_cif.c +108 -24
  120. data/ext/ffi_c/libffi/src/raw_api.c +18 -5
  121. data/ext/ffi_c/libffi/src/s390/ffi.c +294 -318
  122. data/ext/ffi_c/libffi/src/s390/ffitarget.h +9 -1
  123. data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
  124. data/ext/ffi_c/libffi/src/s390/sysv.S +257 -366
  125. data/ext/ffi_c/libffi/src/sh/ffi.c +4 -3
  126. data/ext/ffi_c/libffi/src/sh/ffitarget.h +6 -1
  127. data/ext/ffi_c/libffi/src/sh64/ffi.c +3 -2
  128. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +6 -1
  129. data/ext/ffi_c/libffi/src/sparc/ffi.c +326 -527
  130. data/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
  131. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +20 -7
  132. data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
  133. data/ext/ffi_c/libffi/src/sparc/v8.S +364 -234
  134. data/ext/ffi_c/libffi/src/sparc/v9.S +340 -207
  135. data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
  136. data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
  137. data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
  138. data/ext/ffi_c/libffi/src/types.c +43 -14
  139. data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
  140. data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
  141. data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
  142. data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
  143. data/ext/ffi_c/libffi/src/x86/ffi.c +589 -500
  144. data/ext/ffi_c/libffi/src/x86/ffi64.c +338 -116
  145. data/ext/ffi_c/libffi/src/x86/ffitarget.h +55 -35
  146. data/ext/ffi_c/libffi/src/x86/ffiw64.c +287 -0
  147. data/ext/ffi_c/libffi/src/x86/internal.h +29 -0
  148. data/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
  149. data/ext/ffi_c/libffi/src/x86/sysv.S +975 -400
  150. data/ext/ffi_c/libffi/src/x86/unix64.S +398 -299
  151. data/ext/ffi_c/libffi/src/x86/win64.S +222 -458
  152. data/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
  153. data/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
  154. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
  155. data/ext/ffi_c/libffi/src/xtensa/sysv.S +253 -0
  156. data/ext/ffi_c/libffi/stamp-h.in +1 -0
  157. data/ext/ffi_c/libffi/testsuite/Makefile.am +78 -73
  158. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +120 -25
  159. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +21 -1
  160. data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
  161. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +4 -6
  162. data/ext/ffi_c/libffi/testsuite/libffi.call/{closure_stdcall.c → closure_simple.c} +7 -16
  163. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +4 -4
  164. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +4 -4
  165. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +4 -4
  166. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +4 -4
  167. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +4 -4
  168. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +4 -4
  169. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +4 -4
  170. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +5 -5
  171. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +4 -4
  172. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +4 -4
  173. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +4 -4
  174. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +4 -4
  175. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +4 -4
  176. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +4 -4
  177. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +4 -4
  178. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +4 -4
  179. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +5 -5
  180. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +4 -4
  181. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +4 -4
  182. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +4 -4
  183. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +4 -4
  184. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +4 -4
  185. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +4 -4
  186. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +4 -4
  187. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +4 -4
  188. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +4 -4
  189. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +4 -4
  190. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +4 -6
  191. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +4 -6
  192. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +4 -4
  193. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +4 -4
  194. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +4 -4
  195. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +4 -4
  196. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +4 -4
  197. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +4 -4
  198. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +4 -4
  199. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +4 -4
  200. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +10 -9
  201. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +3 -3
  202. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +10 -9
  203. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
  204. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -0
  205. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +1 -1
  206. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +11 -9
  207. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +114 -0
  208. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
  209. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
  210. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -0
  211. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +5 -5
  212. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +44 -0
  213. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +2 -2
  214. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +23 -40
  215. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +3 -1
  216. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +6 -4
  217. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +4 -2
  218. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
  219. data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +18 -19
  220. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +6 -16
  221. data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
  222. data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
  223. data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
  224. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -1
  225. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +6 -6
  226. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +8 -8
  227. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +6 -6
  228. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -0
  229. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +5 -5
  230. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +5 -5
  231. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +5 -5
  232. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +5 -5
  233. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +6 -6
  234. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +5 -5
  235. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +6 -6
  236. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +6 -6
  237. data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
  238. data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
  239. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +1 -0
  240. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +1 -1
  241. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +1 -1
  242. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +1 -1
  243. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +7 -7
  244. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +7 -7
  245. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +5 -5
  246. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +5 -5
  247. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +2 -2
  248. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
  249. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
  250. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
  251. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +9 -7
  252. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +7 -7
  253. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +7 -6
  254. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +9 -8
  255. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +9 -8
  256. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +9 -9
  257. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +9 -9
  258. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +9 -8
  259. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +9 -8
  260. data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +2 -2
  261. data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
  262. data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest.cc +3 -10
  263. data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest_ffi_call.cc +2 -1
  264. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
  265. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
  266. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
  267. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
  268. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
  269. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
  270. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
  271. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
  272. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
  273. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
  274. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
  275. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
  276. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
  277. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
  278. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
  279. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
  280. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
  281. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
  282. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
  283. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
  284. data/ext/ffi_c/libffi/testsuite/{libffi.special/special.exp → libffi.complex/complex.exp} +9 -8
  285. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
  286. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
  287. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
  288. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
  289. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
  290. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
  291. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
  292. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
  293. data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
  294. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
  295. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
  296. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
  297. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
  298. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
  299. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
  300. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
  301. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
  302. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
  303. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
  304. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
  305. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
  306. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
  307. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
  308. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
  309. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
  310. data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
  311. data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
  312. data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
  313. data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
  314. data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
  315. data/ffi.gemspec +2 -2
  316. data/lib/ffi/enum.rb +124 -0
  317. data/lib/ffi/library.rb +65 -13
  318. data/lib/ffi/platform.rb +7 -2
  319. data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
  320. data/lib/ffi/platform/x86_64-windows/types.conf +113 -20
  321. data/lib/ffi/pointer.rb +1 -0
  322. data/lib/ffi/struct.rb +0 -2
  323. data/lib/ffi/version.rb +1 -1
  324. data/spec/ffi/bitmask_spec.rb +575 -0
  325. data/spec/ffi/fixtures/BitmaskTest.c +51 -0
  326. data/spec/ffi/rbx/memory_pointer_spec.rb +4 -0
  327. data/spec/ffi/struct_spec.rb +0 -4
  328. metadata +143 -51
  329. data/ext/ffi_c/libffi/Makefile.in +0 -1820
  330. data/ext/ffi_c/libffi/Makefile.vc +0 -141
  331. data/ext/ffi_c/libffi/Makefile.vc64 +0 -141
  332. data/ext/ffi_c/libffi/aclocal.m4 +0 -1873
  333. data/ext/ffi_c/libffi/build-ios.sh +0 -67
  334. data/ext/ffi_c/libffi/compile +0 -143
  335. data/ext/ffi_c/libffi/config.guess +0 -1501
  336. data/ext/ffi_c/libffi/config.sub +0 -1705
  337. data/ext/ffi_c/libffi/configure +0 -17191
  338. data/ext/ffi_c/libffi/depcomp +0 -630
  339. data/ext/ffi_c/libffi/doc/libffi.info +0 -593
  340. data/ext/ffi_c/libffi/doc/stamp-vti +0 -4
  341. data/ext/ffi_c/libffi/fficonfig.h.in +0 -199
  342. data/ext/ffi_c/libffi/include/Makefile.in +0 -487
  343. data/ext/ffi_c/libffi/include/ffi.h.vc +0 -427
  344. data/ext/ffi_c/libffi/include/ffi.h.vc64 +0 -427
  345. data/ext/ffi_c/libffi/install-sh +0 -520
  346. data/ext/ffi_c/libffi/ltmain.sh +0 -9636
  347. data/ext/ffi_c/libffi/m4/libtool.m4 +0 -7831
  348. data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -369
  349. data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -123
  350. data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
  351. data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -98
  352. data/ext/ffi_c/libffi/man/Makefile.in +0 -466
  353. data/ext/ffi_c/libffi/mdate-sh +0 -201
  354. data/ext/ffi_c/libffi/missing +0 -376
  355. data/ext/ffi_c/libffi/src/arm/gentramp.sh +0 -118
  356. data/ext/ffi_c/libffi/src/arm/trampoline.S +0 -4450
  357. data/ext/ffi_c/libffi/src/x86/darwin.S +0 -444
  358. data/ext/ffi_c/libffi/src/x86/darwin64.S +0 -416
  359. data/ext/ffi_c/libffi/src/x86/freebsd.S +0 -458
  360. data/ext/ffi_c/libffi/src/x86/win32.S +0 -1065
  361. data/ext/ffi_c/libffi/testsuite/Makefile.in +0 -500
  362. data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +0 -300
  363. data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +0 -63
  364. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +0 -44
  365. data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +0 -96
  366. data/ext/ffi_c/libffi/texinfo.tex +0 -7210
@@ -1,4 +0,0 @@
1
- @set UPDATED 23 August 2011
2
- @set UPDATED-MONTH August 2011
3
- @set EDITION 3.0.10
4
- @set VERSION 3.0.10
@@ -1,199 +0,0 @@
1
- /* fficonfig.h.in. Generated from configure.ac by autoheader. */
2
-
3
- /* Define if building universal (internal helper macro) */
4
- #undef AC_APPLE_UNIVERSAL_BUILD
5
-
6
- /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
7
- systems. This function is required for `alloca.c' support on those systems.
8
- */
9
- #undef CRAY_STACKSEG_END
10
-
11
- /* Define to 1 if using `alloca.c'. */
12
- #undef C_ALLOCA
13
-
14
- /* Define to the flags needed for the .section .eh_frame directive. */
15
- #undef EH_FRAME_FLAGS
16
-
17
- /* Define this if you want extra debugging. */
18
- #undef FFI_DEBUG
19
-
20
- /* Cannot use PROT_EXEC on this target, so, we revert to alternative means */
21
- #undef FFI_EXEC_TRAMPOLINE_TABLE
22
-
23
- /* Cannot use malloc on this target, so, we revert to alternative means */
24
- #undef FFI_MMAP_EXEC_WRIT
25
-
26
- /* Define this is you do not want support for the raw API. */
27
- #undef FFI_NO_RAW_API
28
-
29
- /* Define this is you do not want support for aggregate types. */
30
- #undef FFI_NO_STRUCTS
31
-
32
- /* Define to 1 if you have `alloca', as a function or macro. */
33
- #undef HAVE_ALLOCA
34
-
35
- /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
36
- */
37
- #undef HAVE_ALLOCA_H
38
-
39
- /* Define if your assembler supports .ascii. */
40
- #undef HAVE_AS_ASCII_PSEUDO_OP
41
-
42
- /* Define if your assembler supports .cfi_* directives. */
43
- #undef HAVE_AS_CFI_PSEUDO_OP
44
-
45
- /* Define if your assembler supports .register. */
46
- #undef HAVE_AS_REGISTER_PSEUDO_OP
47
-
48
- /* Define if your assembler and linker support unaligned PC relative relocs.
49
- */
50
- #undef HAVE_AS_SPARC_UA_PCREL
51
-
52
- /* Define if your assembler supports .string. */
53
- #undef HAVE_AS_STRING_PSEUDO_OP
54
-
55
- /* Define if your assembler supports unwind section type. */
56
- #undef HAVE_AS_X86_64_UNWIND_SECTION_TYPE
57
-
58
- /* Define if your assembler supports PC relative relocs. */
59
- #undef HAVE_AS_X86_PCREL
60
-
61
- /* Define to 1 if you have the <dlfcn.h> header file. */
62
- #undef HAVE_DLFCN_H
63
-
64
- /* Define if __attribute__((visibility("hidden"))) is supported. */
65
- #undef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
66
-
67
- /* Define to 1 if you have the <inttypes.h> header file. */
68
- #undef HAVE_INTTYPES_H
69
-
70
- /* Define if you have the long double type and it is bigger than a double */
71
- #undef HAVE_LONG_DOUBLE
72
-
73
- /* Define to 1 if you have the `memcpy' function. */
74
- #undef HAVE_MEMCPY
75
-
76
- /* Define to 1 if you have the <memory.h> header file. */
77
- #undef HAVE_MEMORY_H
78
-
79
- /* Define to 1 if you have the `mmap' function. */
80
- #undef HAVE_MMAP
81
-
82
- /* Define if mmap with MAP_ANON(YMOUS) works. */
83
- #undef HAVE_MMAP_ANON
84
-
85
- /* Define if mmap of /dev/zero works. */
86
- #undef HAVE_MMAP_DEV_ZERO
87
-
88
- /* Define if read-only mmap of a plain file works. */
89
- #undef HAVE_MMAP_FILE
90
-
91
- /* Define if .eh_frame sections should be read-only. */
92
- #undef HAVE_RO_EH_FRAME
93
-
94
- /* Define to 1 if you have the <stdint.h> header file. */
95
- #undef HAVE_STDINT_H
96
-
97
- /* Define to 1 if you have the <stdlib.h> header file. */
98
- #undef HAVE_STDLIB_H
99
-
100
- /* Define to 1 if you have the <strings.h> header file. */
101
- #undef HAVE_STRINGS_H
102
-
103
- /* Define to 1 if you have the <string.h> header file. */
104
- #undef HAVE_STRING_H
105
-
106
- /* Define to 1 if you have the <sys/mman.h> header file. */
107
- #undef HAVE_SYS_MMAN_H
108
-
109
- /* Define to 1 if you have the <sys/stat.h> header file. */
110
- #undef HAVE_SYS_STAT_H
111
-
112
- /* Define to 1 if you have the <sys/types.h> header file. */
113
- #undef HAVE_SYS_TYPES_H
114
-
115
- /* Define to 1 if you have the <unistd.h> header file. */
116
- #undef HAVE_UNISTD_H
117
-
118
- /* Define to the sub-directory in which libtool stores uninstalled libraries.
119
- */
120
- #undef LT_OBJDIR
121
-
122
- /* Define to 1 if your C compiler doesn't accept -c and -o together. */
123
- #undef NO_MINUS_C_MINUS_O
124
-
125
- /* Name of package */
126
- #undef PACKAGE
127
-
128
- /* Define to the address where bug reports for this package should be sent. */
129
- #undef PACKAGE_BUGREPORT
130
-
131
- /* Define to the full name of this package. */
132
- #undef PACKAGE_NAME
133
-
134
- /* Define to the full name and version of this package. */
135
- #undef PACKAGE_STRING
136
-
137
- /* Define to the one symbol short name of this package. */
138
- #undef PACKAGE_TARNAME
139
-
140
- /* Define to the home page for this package. */
141
- #undef PACKAGE_URL
142
-
143
- /* Define to the version of this package. */
144
- #undef PACKAGE_VERSION
145
-
146
- /* The size of `double', as computed by sizeof. */
147
- #undef SIZEOF_DOUBLE
148
-
149
- /* The size of `long double', as computed by sizeof. */
150
- #undef SIZEOF_LONG_DOUBLE
151
-
152
- /* If using the C implementation of alloca, define if you know the
153
- direction of stack growth for your system; otherwise it will be
154
- automatically deduced at runtime.
155
- STACK_DIRECTION > 0 => grows toward higher addresses
156
- STACK_DIRECTION < 0 => grows toward lower addresses
157
- STACK_DIRECTION = 0 => direction of growth unknown */
158
- #undef STACK_DIRECTION
159
-
160
- /* Define to 1 if you have the ANSI C header files. */
161
- #undef STDC_HEADERS
162
-
163
- /* Define this if you are using Purify and want to suppress spurious messages.
164
- */
165
- #undef USING_PURIFY
166
-
167
- /* Version number of package */
168
- #undef VERSION
169
-
170
- /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
171
- significant byte first (like Motorola and SPARC, unlike Intel). */
172
- #if defined AC_APPLE_UNIVERSAL_BUILD
173
- # if defined __BIG_ENDIAN__
174
- # define WORDS_BIGENDIAN 1
175
- # endif
176
- #else
177
- # ifndef WORDS_BIGENDIAN
178
- # undef WORDS_BIGENDIAN
179
- # endif
180
- #endif
181
-
182
- /* Define to `unsigned int' if <sys/types.h> does not define. */
183
- #undef size_t
184
-
185
-
186
- #ifdef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
187
- #ifdef LIBFFI_ASM
188
- #define FFI_HIDDEN(name) .hidden name
189
- #else
190
- #define FFI_HIDDEN __attribute__ ((visibility ("hidden")))
191
- #endif
192
- #else
193
- #ifdef LIBFFI_ASM
194
- #define FFI_HIDDEN(name)
195
- #else
196
- #define FFI_HIDDEN
197
- #endif
198
- #endif
199
-
@@ -1,487 +0,0 @@
1
- # Makefile.in generated by automake 1.11.1 from Makefile.am.
2
- # @configure_input@
3
-
4
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
- # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
6
- # Inc.
7
- # This Makefile.in is free software; the Free Software Foundation
8
- # gives unlimited permission to copy and/or distribute it,
9
- # with or without modifications, as long as this notice is preserved.
10
-
11
- # This program is distributed in the hope that it will be useful,
12
- # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13
- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14
- # PARTICULAR PURPOSE.
15
-
16
- @SET_MAKE@
17
-
18
- VPATH = @srcdir@
19
- pkgdatadir = $(datadir)/@PACKAGE@
20
- pkgincludedir = $(includedir)/@PACKAGE@
21
- pkglibdir = $(libdir)/@PACKAGE@
22
- pkglibexecdir = $(libexecdir)/@PACKAGE@
23
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
24
- install_sh_DATA = $(install_sh) -c -m 644
25
- install_sh_PROGRAM = $(install_sh) -c
26
- install_sh_SCRIPT = $(install_sh) -c
27
- INSTALL_HEADER = $(INSTALL_DATA)
28
- transform = $(program_transform_name)
29
- NORMAL_INSTALL = :
30
- PRE_INSTALL = :
31
- POST_INSTALL = :
32
- NORMAL_UNINSTALL = :
33
- PRE_UNINSTALL = :
34
- POST_UNINSTALL = :
35
- build_triplet = @build@
36
- host_triplet = @host@
37
- target_triplet = @target@
38
- subdir = include
39
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
40
- $(srcdir)/ffi.h.in
41
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
42
- am__aclocal_m4_deps = $(top_srcdir)/m4/ax_cc_maxopt.m4 \
43
- $(top_srcdir)/m4/ax_cflags_warn_all.m4 \
44
- $(top_srcdir)/m4/ax_check_compiler_flags.m4 \
45
- $(top_srcdir)/m4/ax_compiler_vendor.m4 \
46
- $(top_srcdir)/m4/ax_configure_args.m4 \
47
- $(top_srcdir)/m4/ax_enable_builddir.m4 \
48
- $(top_srcdir)/m4/ax_gcc_archflag.m4 \
49
- $(top_srcdir)/m4/ax_gcc_x86_cpuid.m4 \
50
- $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
51
- $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
52
- $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
53
- $(top_srcdir)/configure.ac
54
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
55
- $(ACLOCAL_M4)
56
- mkinstalldirs = $(install_sh) -d
57
- CONFIG_HEADER = $(top_builddir)/fficonfig.h
58
- CONFIG_CLEAN_FILES = ffi.h ffitarget.h
59
- CONFIG_CLEAN_VPATH_FILES =
60
- SOURCES =
61
- DIST_SOURCES =
62
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
63
- am__vpath_adj = case $$p in \
64
- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
65
- *) f=$$p;; \
66
- esac;
67
- am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
68
- am__install_max = 40
69
- am__nobase_strip_setup = \
70
- srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
71
- am__nobase_strip = \
72
- for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
73
- am__nobase_list = $(am__nobase_strip_setup); \
74
- for p in $$list; do echo "$$p $$p"; done | \
75
- sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
76
- $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
77
- if (++n[$$2] == $(am__install_max)) \
78
- { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
79
- END { for (dir in files) print dir, files[dir] }'
80
- am__base_list = \
81
- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
82
- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
83
- am__installdirs = "$(DESTDIR)$(includesdir)"
84
- HEADERS = $(nodist_includes_HEADERS)
85
- ETAGS = etags
86
- CTAGS = ctags
87
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
88
- ACLOCAL = @ACLOCAL@
89
- ALLOCA = @ALLOCA@
90
- AMTAR = @AMTAR@
91
- AM_LTLDFLAGS = @AM_LTLDFLAGS@
92
- AM_RUNTESTFLAGS = @AM_RUNTESTFLAGS@
93
- AR = @AR@
94
- AUTOCONF = @AUTOCONF@
95
- AUTOHEADER = @AUTOHEADER@
96
- AUTOMAKE = @AUTOMAKE@
97
- AWK = @AWK@
98
- CC = @CC@
99
- CCAS = @CCAS@
100
- CCASDEPMODE = @CCASDEPMODE@
101
- CCASFLAGS = @CCASFLAGS@
102
- CCDEPMODE = @CCDEPMODE@
103
- CFLAGS = @CFLAGS@
104
- CPP = @CPP@
105
- CPPFLAGS = @CPPFLAGS@
106
- CYGPATH_W = @CYGPATH_W@
107
- DEFS = @DEFS@
108
- DEPDIR = @DEPDIR@
109
- DLLTOOL = @DLLTOOL@
110
- DSYMUTIL = @DSYMUTIL@
111
- DUMPBIN = @DUMPBIN@
112
- ECHO_C = @ECHO_C@
113
- ECHO_N = @ECHO_N@
114
- ECHO_T = @ECHO_T@
115
- EGREP = @EGREP@
116
- EXEEXT = @EXEEXT@
117
- FFI_EXEC_TRAMPOLINE_TABLE = @FFI_EXEC_TRAMPOLINE_TABLE@
118
- FGREP = @FGREP@
119
- GREP = @GREP@
120
- HAVE_LONG_DOUBLE = @HAVE_LONG_DOUBLE@
121
- INSTALL = @INSTALL@
122
- INSTALL_DATA = @INSTALL_DATA@
123
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
124
- INSTALL_SCRIPT = @INSTALL_SCRIPT@
125
- INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
126
- LD = @LD@
127
- LDFLAGS = @LDFLAGS@
128
- LIBOBJS = @LIBOBJS@
129
- LIBS = @LIBS@
130
- LIBTOOL = @LIBTOOL@
131
- LIPO = @LIPO@
132
- LN_S = @LN_S@
133
- LTLIBOBJS = @LTLIBOBJS@
134
- MAINT = @MAINT@
135
- MAKEINFO = @MAKEINFO@
136
- MANIFEST_TOOL = @MANIFEST_TOOL@
137
- MKDIR_P = @MKDIR_P@
138
- NM = @NM@
139
- NMEDIT = @NMEDIT@
140
- OBJDUMP = @OBJDUMP@
141
- OBJEXT = @OBJEXT@
142
- OTOOL = @OTOOL@
143
- OTOOL64 = @OTOOL64@
144
- PACKAGE = @PACKAGE@
145
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
146
- PACKAGE_NAME = @PACKAGE_NAME@
147
- PACKAGE_STRING = @PACKAGE_STRING@
148
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
149
- PACKAGE_URL = @PACKAGE_URL@
150
- PACKAGE_VERSION = @PACKAGE_VERSION@
151
- PATH_SEPARATOR = @PATH_SEPARATOR@
152
- PRTDIAG = @PRTDIAG@
153
- RANLIB = @RANLIB@
154
- SED = @SED@
155
- SET_MAKE = @SET_MAKE@
156
- SHELL = @SHELL@
157
- STRIP = @STRIP@
158
- TARGET = @TARGET@
159
- TARGETDIR = @TARGETDIR@
160
- VERSION = @VERSION@
161
- abs_builddir = @abs_builddir@
162
- abs_srcdir = @abs_srcdir@
163
- abs_top_builddir = @abs_top_builddir@
164
- abs_top_srcdir = @abs_top_srcdir@
165
- ac_ct_AR = @ac_ct_AR@
166
- ac_ct_CC = @ac_ct_CC@
167
- ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
168
- am__include = @am__include@
169
- am__leading_dot = @am__leading_dot@
170
- am__quote = @am__quote@
171
- am__tar = @am__tar@
172
- am__untar = @am__untar@
173
- ax_enable_builddir_sed = @ax_enable_builddir_sed@
174
- bindir = @bindir@
175
- build = @build@
176
- build_alias = @build_alias@
177
- build_cpu = @build_cpu@
178
- build_os = @build_os@
179
- build_vendor = @build_vendor@
180
- builddir = @builddir@
181
- datadir = @datadir@
182
- datarootdir = @datarootdir@
183
- docdir = @docdir@
184
- dvidir = @dvidir@
185
- exec_prefix = @exec_prefix@
186
- host = @host@
187
- host_alias = @host_alias@
188
- host_cpu = @host_cpu@
189
- host_os = @host_os@
190
- host_vendor = @host_vendor@
191
- htmldir = @htmldir@
192
- includedir = @includedir@
193
- infodir = @infodir@
194
- install_sh = @install_sh@
195
- libdir = @libdir@
196
- libexecdir = @libexecdir@
197
- localedir = @localedir@
198
- localstatedir = @localstatedir@
199
- mandir = @mandir@
200
- mkdir_p = @mkdir_p@
201
- oldincludedir = @oldincludedir@
202
- pdfdir = @pdfdir@
203
- prefix = @prefix@
204
- program_transform_name = @program_transform_name@
205
- psdir = @psdir@
206
- sbindir = @sbindir@
207
- sharedstatedir = @sharedstatedir@
208
- srcdir = @srcdir@
209
- sys_symbol_underscore = @sys_symbol_underscore@
210
- sysconfdir = @sysconfdir@
211
- target = @target@
212
- target_alias = @target_alias@
213
- target_cpu = @target_cpu@
214
- target_os = @target_os@
215
- target_vendor = @target_vendor@
216
- toolexecdir = @toolexecdir@
217
- toolexeclibdir = @toolexeclibdir@
218
- top_build_prefix = @top_build_prefix@
219
- top_builddir = @top_builddir@
220
- top_srcdir = @top_srcdir@
221
- AUTOMAKE_OPTIONS = foreign
222
- DISTCLEANFILES = ffitarget.h
223
- EXTRA_DIST = ffi.h.in ffi_common.h
224
- includesdir = $(libdir)/@PACKAGE_NAME@-@PACKAGE_VERSION@/include
225
- nodist_includes_HEADERS = ffi.h ffitarget.h
226
- all: all-am
227
-
228
- .SUFFIXES:
229
- $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
230
- @for dep in $?; do \
231
- case '$(am__configure_deps)' in \
232
- *$$dep*) \
233
- ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
234
- && { if test -f $@; then exit 0; else break; fi; }; \
235
- exit 1;; \
236
- esac; \
237
- done; \
238
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign include/Makefile'; \
239
- $(am__cd) $(top_srcdir) && \
240
- $(AUTOMAKE) --foreign include/Makefile
241
- .PRECIOUS: Makefile
242
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
243
- @case '$?' in \
244
- *config.status*) \
245
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
246
- *) \
247
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
248
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
249
- esac;
250
-
251
- $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
252
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
253
-
254
- $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
255
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
256
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
257
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
258
- $(am__aclocal_m4_deps):
259
- ffi.h: $(top_builddir)/config.status $(srcdir)/ffi.h.in
260
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
261
-
262
- mostlyclean-libtool:
263
- -rm -f *.lo
264
-
265
- clean-libtool:
266
- -rm -rf .libs _libs
267
- install-nodist_includesHEADERS: $(nodist_includes_HEADERS)
268
- @$(NORMAL_INSTALL)
269
- test -z "$(includesdir)" || $(MKDIR_P) "$(DESTDIR)$(includesdir)"
270
- @list='$(nodist_includes_HEADERS)'; test -n "$(includesdir)" || list=; \
271
- for p in $$list; do \
272
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
273
- echo "$$d$$p"; \
274
- done | $(am__base_list) | \
275
- while read files; do \
276
- echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includesdir)'"; \
277
- $(INSTALL_HEADER) $$files "$(DESTDIR)$(includesdir)" || exit $$?; \
278
- done
279
-
280
- uninstall-nodist_includesHEADERS:
281
- @$(NORMAL_UNINSTALL)
282
- @list='$(nodist_includes_HEADERS)'; test -n "$(includesdir)" || list=; \
283
- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
284
- test -n "$$files" || exit 0; \
285
- echo " ( cd '$(DESTDIR)$(includesdir)' && rm -f" $$files ")"; \
286
- cd "$(DESTDIR)$(includesdir)" && rm -f $$files
287
-
288
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
289
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
290
- unique=`for i in $$list; do \
291
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
292
- done | \
293
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
294
- END { if (nonempty) { for (i in files) print i; }; }'`; \
295
- mkid -fID $$unique
296
- tags: TAGS
297
-
298
- TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
299
- $(TAGS_FILES) $(LISP)
300
- set x; \
301
- here=`pwd`; \
302
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
303
- unique=`for i in $$list; do \
304
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
305
- done | \
306
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
307
- END { if (nonempty) { for (i in files) print i; }; }'`; \
308
- shift; \
309
- if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
310
- test -n "$$unique" || unique=$$empty_fix; \
311
- if test $$# -gt 0; then \
312
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
313
- "$$@" $$unique; \
314
- else \
315
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
316
- $$unique; \
317
- fi; \
318
- fi
319
- ctags: CTAGS
320
- CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
321
- $(TAGS_FILES) $(LISP)
322
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
323
- unique=`for i in $$list; do \
324
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
325
- done | \
326
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
327
- END { if (nonempty) { for (i in files) print i; }; }'`; \
328
- test -z "$(CTAGS_ARGS)$$unique" \
329
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
330
- $$unique
331
-
332
- GTAGS:
333
- here=`$(am__cd) $(top_builddir) && pwd` \
334
- && $(am__cd) $(top_srcdir) \
335
- && gtags -i $(GTAGS_ARGS) "$$here"
336
-
337
- distclean-tags:
338
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
339
-
340
- distdir: $(DISTFILES)
341
- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
342
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
343
- list='$(DISTFILES)'; \
344
- dist_files=`for file in $$list; do echo $$file; done | \
345
- sed -e "s|^$$srcdirstrip/||;t" \
346
- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
347
- case $$dist_files in \
348
- */*) $(MKDIR_P) `echo "$$dist_files" | \
349
- sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
350
- sort -u` ;; \
351
- esac; \
352
- for file in $$dist_files; do \
353
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
354
- if test -d $$d/$$file; then \
355
- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
356
- if test -d "$(distdir)/$$file"; then \
357
- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
358
- fi; \
359
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
360
- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
361
- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
362
- fi; \
363
- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
364
- else \
365
- test -f "$(distdir)/$$file" \
366
- || cp -p $$d/$$file "$(distdir)/$$file" \
367
- || exit 1; \
368
- fi; \
369
- done
370
- check-am: all-am
371
- check: check-am
372
- all-am: Makefile $(HEADERS)
373
- installdirs:
374
- for dir in "$(DESTDIR)$(includesdir)"; do \
375
- test -z "$$dir" || $(MKDIR_P) "$$dir"; \
376
- done
377
- install: install-am
378
- install-exec: install-exec-am
379
- install-data: install-data-am
380
- uninstall: uninstall-am
381
-
382
- install-am: all-am
383
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
384
-
385
- installcheck: installcheck-am
386
- install-strip:
387
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
388
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
389
- `test -z '$(STRIP)' || \
390
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
391
- mostlyclean-generic:
392
-
393
- clean-generic:
394
-
395
- distclean-generic:
396
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
397
- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
398
- -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
399
-
400
- maintainer-clean-generic:
401
- @echo "This command is intended for maintainers to use"
402
- @echo "it deletes files that may require special tools to rebuild."
403
- clean: clean-am
404
-
405
- clean-am: clean-generic clean-libtool mostlyclean-am
406
-
407
- distclean: distclean-am
408
- -rm -f Makefile
409
- distclean-am: clean-am distclean-generic distclean-tags
410
-
411
- dvi: dvi-am
412
-
413
- dvi-am:
414
-
415
- html: html-am
416
-
417
- html-am:
418
-
419
- info: info-am
420
-
421
- info-am:
422
-
423
- install-data-am: install-nodist_includesHEADERS
424
-
425
- install-dvi: install-dvi-am
426
-
427
- install-dvi-am:
428
-
429
- install-exec-am:
430
-
431
- install-html: install-html-am
432
-
433
- install-html-am:
434
-
435
- install-info: install-info-am
436
-
437
- install-info-am:
438
-
439
- install-man:
440
-
441
- install-pdf: install-pdf-am
442
-
443
- install-pdf-am:
444
-
445
- install-ps: install-ps-am
446
-
447
- install-ps-am:
448
-
449
- installcheck-am:
450
-
451
- maintainer-clean: maintainer-clean-am
452
- -rm -f Makefile
453
- maintainer-clean-am: distclean-am maintainer-clean-generic
454
-
455
- mostlyclean: mostlyclean-am
456
-
457
- mostlyclean-am: mostlyclean-generic mostlyclean-libtool
458
-
459
- pdf: pdf-am
460
-
461
- pdf-am:
462
-
463
- ps: ps-am
464
-
465
- ps-am:
466
-
467
- uninstall-am: uninstall-nodist_includesHEADERS
468
-
469
- .MAKE: install-am install-strip
470
-
471
- .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
472
- clean-libtool ctags distclean distclean-generic \
473
- distclean-libtool distclean-tags distdir dvi dvi-am html \
474
- html-am info info-am install install-am install-data \
475
- install-data-am install-dvi install-dvi-am install-exec \
476
- install-exec-am install-html install-html-am install-info \
477
- install-info-am install-man install-nodist_includesHEADERS \
478
- install-pdf install-pdf-am install-ps install-ps-am \
479
- install-strip installcheck installcheck-am installdirs \
480
- maintainer-clean maintainer-clean-generic mostlyclean \
481
- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
482
- tags uninstall uninstall-am uninstall-nodist_includesHEADERS
483
-
484
-
485
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
486
- # Otherwise a system limit (for SysV at least) may be exceeded.
487
- .NOEXPORT: