ffi 1.9.18-x86-mingw32 → 1.9.21-x86-mingw32

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 (384) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +3 -2
  3. data/Rakefile +14 -4
  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/Makefile.in +923 -938
  17. data/ext/ffi_c/libffi/README +164 -52
  18. data/ext/ffi_c/libffi/acinclude.m4 +381 -0
  19. data/ext/ffi_c/libffi/aclocal.m4 +645 -384
  20. data/ext/ffi_c/libffi/autogen.sh +2 -0
  21. data/ext/ffi_c/libffi/autom4te.cache/output.0 +21972 -0
  22. data/ext/ffi_c/libffi/autom4te.cache/output.1 +21972 -0
  23. data/ext/ffi_c/libffi/autom4te.cache/output.2 +21972 -0
  24. data/ext/ffi_c/libffi/autom4te.cache/output.3 +21972 -0
  25. data/ext/ffi_c/libffi/autom4te.cache/requests +331 -0
  26. data/ext/ffi_c/libffi/autom4te.cache/traces.0 +4010 -0
  27. data/ext/ffi_c/libffi/autom4te.cache/traces.1 +1005 -0
  28. data/ext/ffi_c/libffi/autom4te.cache/traces.2 +4010 -0
  29. data/ext/ffi_c/libffi/autom4te.cache/traces.3 +4010 -0
  30. data/ext/ffi_c/libffi/compile +218 -14
  31. data/ext/ffi_c/libffi/config.guess +329 -368
  32. data/ext/ffi_c/libffi/config.sub +232 -112
  33. data/ext/ffi_c/libffi/configure +6970 -2189
  34. data/ext/ffi_c/libffi/configure.ac +148 -256
  35. data/ext/ffi_c/libffi/configure.host +265 -4
  36. data/ext/ffi_c/libffi/depcomp +346 -185
  37. data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
  38. data/ext/ffi_c/libffi/doc/Makefile.in +811 -0
  39. data/ext/ffi_c/libffi/doc/libffi.texi +430 -45
  40. data/ext/ffi_c/libffi/{mdate-sh → doc/mdate-sh} +40 -13
  41. data/ext/ffi_c/libffi/{texinfo.tex → doc/texinfo.tex} +3990 -1121
  42. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  43. data/ext/ffi_c/libffi/fficonfig.h.in +24 -13
  44. data/ext/ffi_c/libffi/fficonfig.h.in~ +210 -0
  45. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +207 -0
  46. data/ext/ffi_c/libffi/include/Makefile.am +3 -3
  47. data/ext/ffi_c/libffi/include/Makefile.in +188 -71
  48. data/ext/ffi_c/libffi/include/ffi.h.in +107 -50
  49. data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
  50. data/ext/ffi_c/libffi/include/ffi_common.h +32 -11
  51. data/ext/ffi_c/libffi/install-sh +190 -202
  52. data/ext/ffi_c/libffi/libffi.map.in +80 -0
  53. data/ext/ffi_c/libffi/libffi.pc.in +3 -2
  54. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +637 -0
  55. data/ext/ffi_c/libffi/libtool-ldflags +106 -0
  56. data/ext/ffi_c/libffi/libtool-version +1 -1
  57. data/ext/ffi_c/libffi/ltmain.sh +3553 -2033
  58. data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
  59. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +69 -0
  60. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +13 -8
  61. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +31 -104
  62. data/ext/ffi_c/libffi/m4/{ax_check_compiler_flags.m4 → ax_check_compile_flag.m4} +30 -34
  63. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +32 -11
  64. data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +6 -5
  65. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +31 -21
  66. data/ext/ffi_c/libffi/m4/libtool.m4 +1691 -1135
  67. data/ext/ffi_c/libffi/m4/ltoptions.m4 +104 -36
  68. data/ext/ffi_c/libffi/m4/ltsugar.m4 +4 -3
  69. data/ext/ffi_c/libffi/m4/ltversion.m4 +6 -6
  70. data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +4 -3
  71. data/ext/ffi_c/libffi/man/Makefile.am +2 -2
  72. data/ext/ffi_c/libffi/man/Makefile.in +141 -49
  73. data/ext/ffi_c/libffi/man/ffi.3 +10 -0
  74. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +6 -4
  75. data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
  76. data/ext/ffi_c/libffi/missing +150 -311
  77. data/ext/ffi_c/libffi/msvcc.sh +72 -9
  78. data/ext/ffi_c/libffi/src/aarch64/ffi.c +941 -0
  79. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +81 -0
  80. data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
  81. data/ext/ffi_c/libffi/src/aarch64/sysv.S +438 -0
  82. data/ext/ffi_c/libffi/src/alpha/ffi.c +335 -98
  83. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +10 -1
  84. data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
  85. data/ext/ffi_c/libffi/src/alpha/osf.S +161 -266
  86. data/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
  87. data/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
  88. data/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
  89. data/ext/ffi_c/libffi/src/arm/ffi.c +597 -517
  90. data/ext/ffi_c/libffi/src/arm/ffitarget.h +24 -7
  91. data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
  92. data/ext/ffi_c/libffi/src/arm/sysv.S +303 -417
  93. data/ext/ffi_c/libffi/src/avr32/ffitarget.h +6 -1
  94. data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
  95. data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
  96. data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
  97. data/ext/ffi_c/libffi/src/closures.c +319 -44
  98. data/ext/ffi_c/libffi/src/cris/ffi.c +10 -7
  99. data/ext/ffi_c/libffi/src/cris/ffitarget.h +6 -1
  100. data/ext/ffi_c/libffi/src/debug.c +6 -1
  101. data/ext/ffi_c/libffi/src/dlmalloc.c +16 -11
  102. data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
  103. data/ext/ffi_c/libffi/src/frv/ffitarget.h +6 -1
  104. data/ext/ffi_c/libffi/src/ia64/ffi.c +11 -7
  105. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +6 -1
  106. data/ext/ffi_c/libffi/src/java_raw_api.c +23 -5
  107. data/ext/ffi_c/libffi/src/m32r/ffi.c +1 -1
  108. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +6 -1
  109. data/ext/ffi_c/libffi/src/m68k/ffi.c +87 -13
  110. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +6 -1
  111. data/ext/ffi_c/libffi/src/m68k/sysv.S +119 -32
  112. data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
  113. data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
  114. data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
  115. data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
  116. data/ext/ffi_c/libffi/{fficonfig.hw → src/metag/ffitarget.h} +22 -26
  117. data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
  118. data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
  119. data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
  120. data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
  121. data/ext/ffi_c/libffi/src/mips/ffi.c +95 -28
  122. data/ext/ffi_c/libffi/src/mips/ffitarget.h +9 -2
  123. data/ext/ffi_c/libffi/src/mips/n32.S +126 -56
  124. data/ext/ffi_c/libffi/src/mips/o32.S +148 -27
  125. data/ext/ffi_c/libffi/src/moxie/eabi.S +55 -82
  126. data/ext/ffi_c/libffi/src/moxie/ffi.c +40 -44
  127. data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
  128. data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
  129. data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
  130. data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
  131. data/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
  132. data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
  133. data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
  134. data/ext/ffi_c/libffi/src/pa/ffitarget.h +8 -1
  135. data/ext/ffi_c/libffi/src/powerpc/aix.S +6 -6
  136. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +3 -1
  137. data/ext/ffi_c/libffi/src/powerpc/asm.h +2 -2
  138. data/ext/ffi_c/libffi/src/powerpc/darwin.S +2 -7
  139. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +22 -26
  140. data/ext/ffi_c/libffi/src/powerpc/ffi.c +103 -1378
  141. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +25 -25
  142. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +945 -0
  143. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
  144. data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
  145. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +100 -44
  146. data/ext/ffi_c/libffi/src/powerpc/linux64.S +100 -59
  147. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +360 -108
  148. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +138 -68
  149. data/ext/ffi_c/libffi/src/powerpc/sysv.S +68 -112
  150. data/ext/ffi_c/libffi/src/prep_cif.c +108 -24
  151. data/ext/ffi_c/libffi/src/raw_api.c +18 -5
  152. data/ext/ffi_c/libffi/src/s390/ffi.c +294 -318
  153. data/ext/ffi_c/libffi/src/s390/ffitarget.h +9 -1
  154. data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
  155. data/ext/ffi_c/libffi/src/s390/sysv.S +257 -366
  156. data/ext/ffi_c/libffi/src/sh/ffi.c +4 -3
  157. data/ext/ffi_c/libffi/src/sh/ffitarget.h +6 -1
  158. data/ext/ffi_c/libffi/src/sh64/ffi.c +3 -2
  159. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +6 -1
  160. data/ext/ffi_c/libffi/src/sparc/ffi.c +326 -527
  161. data/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
  162. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +20 -7
  163. data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
  164. data/ext/ffi_c/libffi/src/sparc/v8.S +364 -234
  165. data/ext/ffi_c/libffi/src/sparc/v9.S +340 -207
  166. data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
  167. data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
  168. data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
  169. data/ext/ffi_c/libffi/src/types.c +43 -14
  170. data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
  171. data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
  172. data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
  173. data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
  174. data/ext/ffi_c/libffi/src/x86/ffi.c +589 -500
  175. data/ext/ffi_c/libffi/src/x86/ffi64.c +338 -116
  176. data/ext/ffi_c/libffi/src/x86/ffitarget.h +55 -35
  177. data/ext/ffi_c/libffi/src/x86/ffiw64.c +287 -0
  178. data/ext/ffi_c/libffi/src/x86/internal.h +29 -0
  179. data/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
  180. data/ext/ffi_c/libffi/src/x86/sysv.S +975 -400
  181. data/ext/ffi_c/libffi/src/x86/unix64.S +398 -299
  182. data/ext/ffi_c/libffi/src/x86/win64.S +222 -458
  183. data/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
  184. data/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
  185. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
  186. data/ext/ffi_c/libffi/src/xtensa/sysv.S +253 -0
  187. data/ext/ffi_c/libffi/stamp-h.in +1 -0
  188. data/ext/ffi_c/libffi/testsuite/Makefile.am +78 -73
  189. data/ext/ffi_c/libffi/testsuite/Makefile.in +218 -111
  190. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +120 -25
  191. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +21 -1
  192. data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
  193. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +4 -6
  194. data/ext/ffi_c/libffi/testsuite/libffi.call/{closure_stdcall.c → closure_simple.c} +7 -16
  195. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +4 -4
  196. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +4 -4
  197. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +4 -4
  198. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +4 -4
  199. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +4 -4
  200. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +4 -4
  201. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +4 -4
  202. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +5 -5
  203. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +4 -4
  204. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +4 -4
  205. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +4 -4
  206. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +4 -4
  207. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +4 -4
  208. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +4 -4
  209. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +4 -4
  210. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +4 -4
  211. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +5 -5
  212. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +4 -4
  213. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +4 -4
  214. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +4 -4
  215. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +4 -4
  216. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +4 -4
  217. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +4 -4
  218. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +4 -4
  219. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +4 -4
  220. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +4 -4
  221. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +4 -4
  222. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +4 -6
  223. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +4 -6
  224. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +4 -4
  225. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +4 -4
  226. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +4 -4
  227. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +4 -4
  228. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +4 -4
  229. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +4 -4
  230. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +4 -4
  231. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +4 -4
  232. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +10 -9
  233. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +3 -3
  234. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +10 -9
  235. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
  236. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -0
  237. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +1 -1
  238. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +11 -9
  239. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +114 -0
  240. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
  241. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
  242. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -0
  243. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +5 -5
  244. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +44 -0
  245. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +2 -2
  246. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +23 -40
  247. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +3 -1
  248. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +6 -4
  249. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +4 -2
  250. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
  251. data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +18 -19
  252. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +6 -16
  253. data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
  254. data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
  255. data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
  256. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -1
  257. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +6 -6
  258. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +8 -8
  259. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +6 -6
  260. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -0
  261. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +5 -5
  262. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +5 -5
  263. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +5 -5
  264. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +5 -5
  265. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +6 -6
  266. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +5 -5
  267. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +6 -6
  268. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +6 -6
  269. data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
  270. data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
  271. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +1 -0
  272. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +1 -1
  273. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +1 -1
  274. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +1 -1
  275. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +7 -7
  276. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +7 -7
  277. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +5 -5
  278. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +5 -5
  279. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +2 -2
  280. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
  281. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
  282. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
  283. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +9 -7
  284. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +7 -7
  285. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +7 -6
  286. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +9 -8
  287. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +9 -8
  288. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +9 -9
  289. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +9 -9
  290. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +9 -8
  291. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +9 -8
  292. data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +2 -2
  293. data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
  294. data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest.cc +3 -10
  295. data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest_ffi_call.cc +2 -1
  296. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
  297. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
  298. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
  299. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
  300. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
  301. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
  302. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
  303. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
  304. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
  305. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
  306. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
  307. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
  308. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
  309. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
  310. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
  311. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
  312. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
  313. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
  314. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
  315. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
  316. data/ext/ffi_c/libffi/testsuite/{libffi.special/special.exp → libffi.complex/complex.exp} +9 -8
  317. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
  318. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
  319. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
  320. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
  321. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
  322. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
  323. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
  324. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
  325. data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
  326. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
  327. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
  328. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
  329. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
  330. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
  331. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
  332. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
  333. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
  334. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
  335. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
  336. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
  337. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
  338. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
  339. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
  340. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
  341. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
  342. data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
  343. data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
  344. data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
  345. data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
  346. data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
  347. data/ffi.gemspec +2 -2
  348. data/lib/2.0/ffi_c.so +0 -0
  349. data/lib/2.1/ffi_c.so +0 -0
  350. data/lib/2.2/ffi_c.so +0 -0
  351. data/lib/2.3/ffi_c.so +0 -0
  352. data/lib/2.4/ffi_c.so +0 -0
  353. data/lib/2.5/ffi_c.so +0 -0
  354. data/lib/ffi/enum.rb +124 -0
  355. data/lib/ffi/library.rb +65 -13
  356. data/lib/ffi/platform.rb +7 -2
  357. data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
  358. data/lib/ffi/platform/x86_64-windows/types.conf +113 -20
  359. data/lib/ffi/pointer.rb +1 -0
  360. data/lib/ffi/struct.rb +0 -2
  361. data/lib/ffi/version.rb +1 -1
  362. data/spec/ffi/bitmask_spec.rb +575 -0
  363. data/spec/ffi/embed-test/ext/Makefile +242 -0
  364. data/spec/ffi/fixtures/BitmaskTest.c +51 -0
  365. data/spec/ffi/rbx/memory_pointer_spec.rb +4 -0
  366. data/spec/ffi/struct_spec.rb +0 -4
  367. metadata +158 -32
  368. data/ext/ffi_c/libffi/Makefile.vc +0 -141
  369. data/ext/ffi_c/libffi/Makefile.vc64 +0 -141
  370. data/ext/ffi_c/libffi/build-ios.sh +0 -67
  371. data/ext/ffi_c/libffi/doc/libffi.info +0 -593
  372. data/ext/ffi_c/libffi/doc/stamp-vti +0 -4
  373. data/ext/ffi_c/libffi/include/ffi.h.vc +0 -427
  374. data/ext/ffi_c/libffi/include/ffi.h.vc64 +0 -427
  375. data/ext/ffi_c/libffi/src/arm/gentramp.sh +0 -118
  376. data/ext/ffi_c/libffi/src/arm/trampoline.S +0 -4450
  377. data/ext/ffi_c/libffi/src/x86/darwin.S +0 -444
  378. data/ext/ffi_c/libffi/src/x86/darwin64.S +0 -416
  379. data/ext/ffi_c/libffi/src/x86/freebsd.S +0 -458
  380. data/ext/ffi_c/libffi/src/x86/win32.S +0 -1065
  381. data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +0 -300
  382. data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +0 -63
  383. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +0 -44
  384. data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +0 -96
@@ -1,14 +1,14 @@
1
1
  # Helper functions for option handling. -*- Autoconf -*-
2
2
  #
3
- # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
4
- # Inc.
3
+ # Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software
4
+ # Foundation, Inc.
5
5
  # Written by Gary V. Vaughan, 2004
6
6
  #
7
7
  # This file is free software; the Free Software Foundation gives
8
8
  # unlimited permission to copy and/or distribute it, with or without
9
9
  # modifications, as long as this notice is preserved.
10
10
 
11
- # serial 7 ltoptions.m4
11
+ # serial 8 ltoptions.m4
12
12
 
13
13
  # This is to help aclocal find these macros, as it can't see m4_define.
14
14
  AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
@@ -29,7 +29,7 @@ m4_define([_LT_SET_OPTION],
29
29
  [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
30
30
  m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
31
31
  _LT_MANGLE_DEFUN([$1], [$2]),
32
- [m4_warning([Unknown $1 option `$2'])])[]dnl
32
+ [m4_warning([Unknown $1 option '$2'])])[]dnl
33
33
  ])
34
34
 
35
35
 
@@ -75,13 +75,15 @@ m4_if([$1],[LT_INIT],[
75
75
  dnl
76
76
  dnl If no reference was made to various pairs of opposing options, then
77
77
  dnl we run the default mode handler for the pair. For example, if neither
78
- dnl `shared' nor `disable-shared' was passed, we enable building of shared
78
+ dnl 'shared' nor 'disable-shared' was passed, we enable building of shared
79
79
  dnl archives by default:
80
80
  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
81
81
  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
82
82
  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
83
83
  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
84
- [_LT_ENABLE_FAST_INSTALL])
84
+ [_LT_ENABLE_FAST_INSTALL])
85
+ _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4],
86
+ [_LT_WITH_AIX_SONAME([aix])])
85
87
  ])
86
88
  ])# _LT_SET_OPTIONS
87
89
 
@@ -112,7 +114,7 @@ AU_DEFUN([AC_LIBTOOL_DLOPEN],
112
114
  [_LT_SET_OPTION([LT_INIT], [dlopen])
113
115
  AC_DIAGNOSE([obsolete],
114
116
  [$0: Remove this warning and the call to _LT_SET_OPTION when you
115
- put the `dlopen' option into LT_INIT's first parameter.])
117
+ put the 'dlopen' option into LT_INIT's first parameter.])
116
118
  ])
117
119
 
118
120
  dnl aclocal-1.4 backwards compatibility:
@@ -148,7 +150,7 @@ AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
148
150
  _LT_SET_OPTION([LT_INIT], [win32-dll])
149
151
  AC_DIAGNOSE([obsolete],
150
152
  [$0: Remove this warning and the call to _LT_SET_OPTION when you
151
- put the `win32-dll' option into LT_INIT's first parameter.])
153
+ put the 'win32-dll' option into LT_INIT's first parameter.])
152
154
  ])
153
155
 
154
156
  dnl aclocal-1.4 backwards compatibility:
@@ -157,9 +159,9 @@ dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
157
159
 
158
160
  # _LT_ENABLE_SHARED([DEFAULT])
159
161
  # ----------------------------
160
- # implement the --enable-shared flag, and supports the `shared' and
161
- # `disable-shared' LT_INIT options.
162
- # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
162
+ # implement the --enable-shared flag, and supports the 'shared' and
163
+ # 'disable-shared' LT_INIT options.
164
+ # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'.
163
165
  m4_define([_LT_ENABLE_SHARED],
164
166
  [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
165
167
  AC_ARG_ENABLE([shared],
@@ -172,14 +174,14 @@ AC_ARG_ENABLE([shared],
172
174
  *)
173
175
  enable_shared=no
174
176
  # Look at the argument we got. We use all the common list separators.
175
- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
177
+ lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
176
178
  for pkg in $enableval; do
177
- IFS="$lt_save_ifs"
179
+ IFS=$lt_save_ifs
178
180
  if test "X$pkg" = "X$p"; then
179
181
  enable_shared=yes
180
182
  fi
181
183
  done
182
- IFS="$lt_save_ifs"
184
+ IFS=$lt_save_ifs
183
185
  ;;
184
186
  esac],
185
187
  [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
@@ -211,9 +213,9 @@ dnl AC_DEFUN([AM_DISABLE_SHARED], [])
211
213
 
212
214
  # _LT_ENABLE_STATIC([DEFAULT])
213
215
  # ----------------------------
214
- # implement the --enable-static flag, and support the `static' and
215
- # `disable-static' LT_INIT options.
216
- # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
216
+ # implement the --enable-static flag, and support the 'static' and
217
+ # 'disable-static' LT_INIT options.
218
+ # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'.
217
219
  m4_define([_LT_ENABLE_STATIC],
218
220
  [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
219
221
  AC_ARG_ENABLE([static],
@@ -226,14 +228,14 @@ AC_ARG_ENABLE([static],
226
228
  *)
227
229
  enable_static=no
228
230
  # Look at the argument we got. We use all the common list separators.
229
- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
231
+ lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
230
232
  for pkg in $enableval; do
231
- IFS="$lt_save_ifs"
233
+ IFS=$lt_save_ifs
232
234
  if test "X$pkg" = "X$p"; then
233
235
  enable_static=yes
234
236
  fi
235
237
  done
236
- IFS="$lt_save_ifs"
238
+ IFS=$lt_save_ifs
237
239
  ;;
238
240
  esac],
239
241
  [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
@@ -265,9 +267,9 @@ dnl AC_DEFUN([AM_DISABLE_STATIC], [])
265
267
 
266
268
  # _LT_ENABLE_FAST_INSTALL([DEFAULT])
267
269
  # ----------------------------------
268
- # implement the --enable-fast-install flag, and support the `fast-install'
269
- # and `disable-fast-install' LT_INIT options.
270
- # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
270
+ # implement the --enable-fast-install flag, and support the 'fast-install'
271
+ # and 'disable-fast-install' LT_INIT options.
272
+ # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'.
271
273
  m4_define([_LT_ENABLE_FAST_INSTALL],
272
274
  [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
273
275
  AC_ARG_ENABLE([fast-install],
@@ -280,14 +282,14 @@ AC_ARG_ENABLE([fast-install],
280
282
  *)
281
283
  enable_fast_install=no
282
284
  # Look at the argument we got. We use all the common list separators.
283
- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
285
+ lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
284
286
  for pkg in $enableval; do
285
- IFS="$lt_save_ifs"
287
+ IFS=$lt_save_ifs
286
288
  if test "X$pkg" = "X$p"; then
287
289
  enable_fast_install=yes
288
290
  fi
289
291
  done
290
- IFS="$lt_save_ifs"
292
+ IFS=$lt_save_ifs
291
293
  ;;
292
294
  esac],
293
295
  [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
@@ -304,14 +306,14 @@ AU_DEFUN([AC_ENABLE_FAST_INSTALL],
304
306
  [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
305
307
  AC_DIAGNOSE([obsolete],
306
308
  [$0: Remove this warning and the call to _LT_SET_OPTION when you put
307
- the `fast-install' option into LT_INIT's first parameter.])
309
+ the 'fast-install' option into LT_INIT's first parameter.])
308
310
  ])
309
311
 
310
312
  AU_DEFUN([AC_DISABLE_FAST_INSTALL],
311
313
  [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
312
314
  AC_DIAGNOSE([obsolete],
313
315
  [$0: Remove this warning and the call to _LT_SET_OPTION when you put
314
- the `disable-fast-install' option into LT_INIT's first parameter.])
316
+ the 'disable-fast-install' option into LT_INIT's first parameter.])
315
317
  ])
316
318
 
317
319
  dnl aclocal-1.4 backwards compatibility:
@@ -319,19 +321,85 @@ dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
319
321
  dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
320
322
 
321
323
 
324
+ # _LT_WITH_AIX_SONAME([DEFAULT])
325
+ # ----------------------------------
326
+ # implement the --with-aix-soname flag, and support the `aix-soname=aix'
327
+ # and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT
328
+ # is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'.
329
+ m4_define([_LT_WITH_AIX_SONAME],
330
+ [m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl
331
+ shared_archive_member_spec=
332
+ case $host,$enable_shared in
333
+ power*-*-aix[[5-9]]*,yes)
334
+ AC_MSG_CHECKING([which variant of shared library versioning to provide])
335
+ AC_ARG_WITH([aix-soname],
336
+ [AS_HELP_STRING([--with-aix-soname=aix|svr4|both],
337
+ [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])],
338
+ [case $withval in
339
+ aix|svr4|both)
340
+ ;;
341
+ *)
342
+ AC_MSG_ERROR([Unknown argument to --with-aix-soname])
343
+ ;;
344
+ esac
345
+ lt_cv_with_aix_soname=$with_aix_soname],
346
+ [AC_CACHE_VAL([lt_cv_with_aix_soname],
347
+ [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT)
348
+ with_aix_soname=$lt_cv_with_aix_soname])
349
+ AC_MSG_RESULT([$with_aix_soname])
350
+ if test aix != "$with_aix_soname"; then
351
+ # For the AIX way of multilib, we name the shared archive member
352
+ # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o',
353
+ # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File.
354
+ # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,
355
+ # the AIX toolchain works better with OBJECT_MODE set (default 32).
356
+ if test 64 = "${OBJECT_MODE-32}"; then
357
+ shared_archive_member_spec=shr_64
358
+ else
359
+ shared_archive_member_spec=shr
360
+ fi
361
+ fi
362
+ ;;
363
+ *)
364
+ with_aix_soname=aix
365
+ ;;
366
+ esac
367
+
368
+ _LT_DECL([], [shared_archive_member_spec], [0],
369
+ [Shared archive member basename, for filename based shared library versioning on AIX])dnl
370
+ ])# _LT_WITH_AIX_SONAME
371
+
372
+ LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])])
373
+ LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])])
374
+ LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])])
375
+
376
+
322
377
  # _LT_WITH_PIC([MODE])
323
378
  # --------------------
324
- # implement the --with-pic flag, and support the `pic-only' and `no-pic'
379
+ # implement the --with-pic flag, and support the 'pic-only' and 'no-pic'
325
380
  # LT_INIT options.
326
- # MODE is either `yes' or `no'. If omitted, it defaults to `both'.
381
+ # MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'.
327
382
  m4_define([_LT_WITH_PIC],
328
383
  [AC_ARG_WITH([pic],
329
- [AS_HELP_STRING([--with-pic],
384
+ [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
330
385
  [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
331
- [pic_mode="$withval"],
332
- [pic_mode=default])
333
-
334
- test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
386
+ [lt_p=${PACKAGE-default}
387
+ case $withval in
388
+ yes|no) pic_mode=$withval ;;
389
+ *)
390
+ pic_mode=default
391
+ # Look at the argument we got. We use all the common list separators.
392
+ lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
393
+ for lt_pkg in $withval; do
394
+ IFS=$lt_save_ifs
395
+ if test "X$lt_pkg" = "X$lt_p"; then
396
+ pic_mode=yes
397
+ fi
398
+ done
399
+ IFS=$lt_save_ifs
400
+ ;;
401
+ esac],
402
+ [pic_mode=m4_default([$1], [default])])
335
403
 
336
404
  _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
337
405
  ])# _LT_WITH_PIC
@@ -344,7 +412,7 @@ AU_DEFUN([AC_LIBTOOL_PICMODE],
344
412
  [_LT_SET_OPTION([LT_INIT], [pic-only])
345
413
  AC_DIAGNOSE([obsolete],
346
414
  [$0: Remove this warning and the call to _LT_SET_OPTION when you
347
- put the `pic-only' option into LT_INIT's first parameter.])
415
+ put the 'pic-only' option into LT_INIT's first parameter.])
348
416
  ])
349
417
 
350
418
  dnl aclocal-1.4 backwards compatibility:
@@ -1,6 +1,7 @@
1
1
  # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
2
2
  #
3
- # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
3
+ # Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software
4
+ # Foundation, Inc.
4
5
  # Written by Gary V. Vaughan, 2004
5
6
  #
6
7
  # This file is free software; the Free Software Foundation gives
@@ -33,7 +34,7 @@ m4_define([_lt_join],
33
34
  # ------------
34
35
  # Manipulate m4 lists.
35
36
  # These macros are necessary as long as will still need to support
36
- # Autoconf-2.59 which quotes differently.
37
+ # Autoconf-2.59, which quotes differently.
37
38
  m4_define([lt_car], [[$1]])
38
39
  m4_define([lt_cdr],
39
40
  [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
@@ -44,7 +45,7 @@ m4_define([lt_unquote], $1)
44
45
 
45
46
  # lt_append(MACRO-NAME, STRING, [SEPARATOR])
46
47
  # ------------------------------------------
47
- # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
48
+ # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'.
48
49
  # Note that neither SEPARATOR nor STRING are expanded; they are appended
49
50
  # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
50
51
  # No SEPARATOR is output if MACRO-NAME was previously undefined (different
@@ -1,6 +1,6 @@
1
1
  # ltversion.m4 -- version numbers -*- Autoconf -*-
2
2
  #
3
- # Copyright (C) 2004 Free Software Foundation, Inc.
3
+ # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc.
4
4
  # Written by Scott James Remnant, 2004
5
5
  #
6
6
  # This file is free software; the Free Software Foundation gives
@@ -9,15 +9,15 @@
9
9
 
10
10
  # @configure_input@
11
11
 
12
- # serial 3293 ltversion.m4
12
+ # serial 4179 ltversion.m4
13
13
  # This file is part of GNU Libtool
14
14
 
15
- m4_define([LT_PACKAGE_VERSION], [2.4])
16
- m4_define([LT_PACKAGE_REVISION], [1.3293])
15
+ m4_define([LT_PACKAGE_VERSION], [2.4.6])
16
+ m4_define([LT_PACKAGE_REVISION], [2.4.6])
17
17
 
18
18
  AC_DEFUN([LTVERSION_VERSION],
19
- [macro_version='2.4'
20
- macro_revision='1.3293'
19
+ [macro_version='2.4.6'
20
+ macro_revision='2.4.6'
21
21
  _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
22
22
  _LT_DECL(, macro_revision, 0)
23
23
  ])
@@ -1,6 +1,7 @@
1
1
  # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
2
2
  #
3
- # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
3
+ # Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software
4
+ # Foundation, Inc.
4
5
  # Written by Scott James Remnant, 2004.
5
6
  #
6
7
  # This file is free software; the Free Software Foundation gives
@@ -11,7 +12,7 @@
11
12
 
12
13
  # These exist entirely to fool aclocal when bootstrapping libtool.
13
14
  #
14
- # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
15
+ # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN),
15
16
  # which have later been changed to m4_define as they aren't part of the
16
17
  # exported API, or moved to Autoconf or Automake where they belong.
17
18
  #
@@ -25,7 +26,7 @@
25
26
  # included after everything else. This provides aclocal with the
26
27
  # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
27
28
  # because those macros already exist, or will be overwritten later.
28
- # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
29
+ # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
29
30
  #
30
31
  # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
31
32
  # Yes, that means every name once taken will need to remain here until
@@ -2,7 +2,7 @@
2
2
 
3
3
  AUTOMAKE_OPTIONS=foreign
4
4
 
5
- EXTRA_DIST = ffi.3 ffi_call.3 ffi_prep_cif.3
5
+ EXTRA_DIST = ffi.3 ffi_call.3 ffi_prep_cif.3 ffi_prep_cif_var.3
6
6
 
7
- man_MANS = ffi.3 ffi_call.3 ffi_prep_cif.3
7
+ man_MANS = ffi.3 ffi_call.3 ffi_prep_cif.3 ffi_prep_cif_var.3
8
8
 
@@ -1,9 +1,8 @@
1
- # Makefile.in generated by automake 1.11.1 from Makefile.am.
1
+ # Makefile.in generated by automake 1.15 from Makefile.am.
2
2
  # @configure_input@
3
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.
4
+ # Copyright (C) 1994-2014 Free Software Foundation, Inc.
5
+
7
6
  # This Makefile.in is free software; the Free Software Foundation
8
7
  # gives unlimited permission to copy and/or distribute it,
9
8
  # with or without modifications, as long as this notice is preserved.
@@ -15,6 +14,61 @@
15
14
 
16
15
  @SET_MAKE@
17
16
  VPATH = @srcdir@
17
+ am__is_gnu_make = { \
18
+ if test -z '$(MAKELEVEL)'; then \
19
+ false; \
20
+ elif test -n '$(MAKE_HOST)'; then \
21
+ true; \
22
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
23
+ true; \
24
+ else \
25
+ false; \
26
+ fi; \
27
+ }
28
+ am__make_running_with_option = \
29
+ case $${target_option-} in \
30
+ ?) ;; \
31
+ *) echo "am__make_running_with_option: internal error: invalid" \
32
+ "target option '$${target_option-}' specified" >&2; \
33
+ exit 1;; \
34
+ esac; \
35
+ has_opt=no; \
36
+ sane_makeflags=$$MAKEFLAGS; \
37
+ if $(am__is_gnu_make); then \
38
+ sane_makeflags=$$MFLAGS; \
39
+ else \
40
+ case $$MAKEFLAGS in \
41
+ *\\[\ \ ]*) \
42
+ bs=\\; \
43
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
44
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
45
+ esac; \
46
+ fi; \
47
+ skip_next=no; \
48
+ strip_trailopt () \
49
+ { \
50
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
51
+ }; \
52
+ for flg in $$sane_makeflags; do \
53
+ test $$skip_next = yes && { skip_next=no; continue; }; \
54
+ case $$flg in \
55
+ *=*|--*) continue;; \
56
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
57
+ -*I?*) strip_trailopt 'I';; \
58
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
59
+ -*O?*) strip_trailopt 'O';; \
60
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
61
+ -*l?*) strip_trailopt 'l';; \
62
+ -[dEDm]) skip_next=yes;; \
63
+ -[JT]) skip_next=yes;; \
64
+ esac; \
65
+ case $$flg in \
66
+ *$$target_option*) has_opt=yes; break;; \
67
+ esac; \
68
+ done; \
69
+ test $$has_opt = yes
70
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
71
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
18
72
  pkgdatadir = $(datadir)/@PACKAGE@
19
73
  pkgincludedir = $(includedir)/@PACKAGE@
20
74
  pkglibdir = $(libdir)/@PACKAGE@
@@ -35,11 +89,12 @@ build_triplet = @build@
35
89
  host_triplet = @host@
36
90
  target_triplet = @target@
37
91
  subdir = man
38
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
39
92
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
40
- am__aclocal_m4_deps = $(top_srcdir)/m4/ax_cc_maxopt.m4 \
93
+ am__aclocal_m4_deps = $(top_srcdir)/m4/asmcfi.m4 \
94
+ $(top_srcdir)/m4/ax_append_flag.m4 \
95
+ $(top_srcdir)/m4/ax_cc_maxopt.m4 \
41
96
  $(top_srcdir)/m4/ax_cflags_warn_all.m4 \
42
- $(top_srcdir)/m4/ax_check_compiler_flags.m4 \
97
+ $(top_srcdir)/m4/ax_check_compile_flag.m4 \
43
98
  $(top_srcdir)/m4/ax_compiler_vendor.m4 \
44
99
  $(top_srcdir)/m4/ax_configure_args.m4 \
45
100
  $(top_srcdir)/m4/ax_enable_builddir.m4 \
@@ -51,12 +106,30 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/ax_cc_maxopt.m4 \
51
106
  $(top_srcdir)/configure.ac
52
107
  am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
53
108
  $(ACLOCAL_M4)
109
+ DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
54
110
  mkinstalldirs = $(install_sh) -d
55
111
  CONFIG_HEADER = $(top_builddir)/fficonfig.h
56
112
  CONFIG_CLEAN_FILES =
57
113
  CONFIG_CLEAN_VPATH_FILES =
114
+ AM_V_P = $(am__v_P_@AM_V@)
115
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
116
+ am__v_P_0 = false
117
+ am__v_P_1 = :
118
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
119
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
120
+ am__v_GEN_0 = @echo " GEN " $@;
121
+ am__v_GEN_1 =
122
+ AM_V_at = $(am__v_at_@AM_V@)
123
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
124
+ am__v_at_0 = @
125
+ am__v_at_1 =
58
126
  SOURCES =
59
127
  DIST_SOURCES =
128
+ am__can_run_installinfo = \
129
+ case $$AM_UPDATE_INFO_DIR in \
130
+ n|no|NO) false;; \
131
+ *) (install-info --version) >/dev/null 2>&1;; \
132
+ esac
60
133
  am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
61
134
  am__vpath_adj = case $$p in \
62
135
  $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
@@ -78,14 +151,23 @@ am__nobase_list = $(am__nobase_strip_setup); \
78
151
  am__base_list = \
79
152
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
80
153
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
154
+ am__uninstall_files_from_dir = { \
155
+ test -z "$$files" \
156
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
157
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
158
+ $(am__cd) "$$dir" && rm -f $$files; }; \
159
+ }
81
160
  man3dir = $(mandir)/man3
82
161
  am__installdirs = "$(DESTDIR)$(man3dir)"
83
162
  NROFF = nroff
84
163
  MANS = $(man_MANS)
164
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
165
+ am__DIST_COMMON = $(srcdir)/Makefile.in
85
166
  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
86
167
  ACLOCAL = @ACLOCAL@
87
168
  ALLOCA = @ALLOCA@
88
169
  AMTAR = @AMTAR@
170
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
89
171
  AM_LTLDFLAGS = @AM_LTLDFLAGS@
90
172
  AM_RUNTESTFLAGS = @AM_RUNTESTFLAGS@
91
173
  AR = @AR@
@@ -101,6 +183,10 @@ CCDEPMODE = @CCDEPMODE@
101
183
  CFLAGS = @CFLAGS@
102
184
  CPP = @CPP@
103
185
  CPPFLAGS = @CPPFLAGS@
186
+ CXX = @CXX@
187
+ CXXCPP = @CXXCPP@
188
+ CXXDEPMODE = @CXXDEPMODE@
189
+ CXXFLAGS = @CXXFLAGS@
104
190
  CYGPATH_W = @CYGPATH_W@
105
191
  DEFS = @DEFS@
106
192
  DEPDIR = @DEPDIR@
@@ -116,6 +202,7 @@ FFI_EXEC_TRAMPOLINE_TABLE = @FFI_EXEC_TRAMPOLINE_TABLE@
116
202
  FGREP = @FGREP@
117
203
  GREP = @GREP@
118
204
  HAVE_LONG_DOUBLE = @HAVE_LONG_DOUBLE@
205
+ HAVE_LONG_DOUBLE_VARIANT = @HAVE_LONG_DOUBLE_VARIANT@
119
206
  INSTALL = @INSTALL@
120
207
  INSTALL_DATA = @INSTALL_DATA@
121
208
  INSTALL_PROGRAM = @INSTALL_PROGRAM@
@@ -129,6 +216,7 @@ LIBTOOL = @LIBTOOL@
129
216
  LIPO = @LIPO@
130
217
  LN_S = @LN_S@
131
218
  LTLIBOBJS = @LTLIBOBJS@
219
+ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
132
220
  MAINT = @MAINT@
133
221
  MAKEINFO = @MAKEINFO@
134
222
  MANIFEST_TOOL = @MANIFEST_TOOL@
@@ -137,6 +225,7 @@ NM = @NM@
137
225
  NMEDIT = @NMEDIT@
138
226
  OBJDUMP = @OBJDUMP@
139
227
  OBJEXT = @OBJEXT@
228
+ OPT_LDFLAGS = @OPT_LDFLAGS@
140
229
  OTOOL = @OTOOL@
141
230
  OTOOL64 = @OTOOL64@
142
231
  PACKAGE = @PACKAGE@
@@ -149,12 +238,14 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
149
238
  PATH_SEPARATOR = @PATH_SEPARATOR@
150
239
  PRTDIAG = @PRTDIAG@
151
240
  RANLIB = @RANLIB@
241
+ SECTION_LDFLAGS = @SECTION_LDFLAGS@
152
242
  SED = @SED@
153
243
  SET_MAKE = @SET_MAKE@
154
244
  SHELL = @SHELL@
155
245
  STRIP = @STRIP@
156
246
  TARGET = @TARGET@
157
247
  TARGETDIR = @TARGETDIR@
248
+ TARGET_OBJ = @TARGET_OBJ@
158
249
  VERSION = @VERSION@
159
250
  abs_builddir = @abs_builddir@
160
251
  abs_srcdir = @abs_srcdir@
@@ -162,6 +253,7 @@ abs_top_builddir = @abs_top_builddir@
162
253
  abs_top_srcdir = @abs_top_srcdir@
163
254
  ac_ct_AR = @ac_ct_AR@
164
255
  ac_ct_CC = @ac_ct_CC@
256
+ ac_ct_CXX = @ac_ct_CXX@
165
257
  ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
166
258
  am__include = @am__include@
167
259
  am__leading_dot = @am__leading_dot@
@@ -201,6 +293,7 @@ pdfdir = @pdfdir@
201
293
  prefix = @prefix@
202
294
  program_transform_name = @program_transform_name@
203
295
  psdir = @psdir@
296
+ runstatedir = @runstatedir@
204
297
  sbindir = @sbindir@
205
298
  sharedstatedir = @sharedstatedir@
206
299
  srcdir = @srcdir@
@@ -217,8 +310,8 @@ top_build_prefix = @top_build_prefix@
217
310
  top_builddir = @top_builddir@
218
311
  top_srcdir = @top_srcdir@
219
312
  AUTOMAKE_OPTIONS = foreign
220
- EXTRA_DIST = ffi.3 ffi_call.3 ffi_prep_cif.3
221
- man_MANS = ffi.3 ffi_call.3 ffi_prep_cif.3
313
+ EXTRA_DIST = ffi.3 ffi_call.3 ffi_prep_cif.3 ffi_prep_cif_var.3
314
+ man_MANS = ffi.3 ffi_call.3 ffi_prep_cif.3 ffi_prep_cif_var.3
222
315
  all: all-am
223
316
 
224
317
  .SUFFIXES:
@@ -234,7 +327,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi
234
327
  echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign man/Makefile'; \
235
328
  $(am__cd) $(top_srcdir) && \
236
329
  $(AUTOMAKE) --foreign man/Makefile
237
- .PRECIOUS: Makefile
238
330
  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
239
331
  @case '$?' in \
240
332
  *config.status*) \
@@ -260,11 +352,18 @@ clean-libtool:
260
352
  -rm -rf .libs _libs
261
353
  install-man3: $(man_MANS)
262
354
  @$(NORMAL_INSTALL)
263
- test -z "$(man3dir)" || $(MKDIR_P) "$(DESTDIR)$(man3dir)"
264
- @list=''; test -n "$(man3dir)" || exit 0; \
265
- { for i in $$list; do echo "$$i"; done; \
266
- l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
267
- sed -n '/\.3[a-z]*$$/p'; \
355
+ @list1=''; \
356
+ list2='$(man_MANS)'; \
357
+ test -n "$(man3dir)" \
358
+ && test -n "`echo $$list1$$list2`" \
359
+ || exit 0; \
360
+ echo " $(MKDIR_P) '$(DESTDIR)$(man3dir)'"; \
361
+ $(MKDIR_P) "$(DESTDIR)$(man3dir)" || exit 1; \
362
+ { for i in $$list1; do echo "$$i"; done; \
363
+ if test -n "$$list2"; then \
364
+ for i in $$list2; do echo "$$i"; done \
365
+ | sed -n '/\.3[a-z]*$$/p'; \
366
+ fi; \
268
367
  } | while read p; do \
269
368
  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
270
369
  echo "$$d$$p"; echo "$$p"; \
@@ -293,30 +392,15 @@ uninstall-man3:
293
392
  sed -n '/\.3[a-z]*$$/p'; \
294
393
  } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
295
394
  -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
296
- test -z "$$files" || { \
297
- echo " ( cd '$(DESTDIR)$(man3dir)' && rm -f" $$files ")"; \
298
- cd "$(DESTDIR)$(man3dir)" && rm -f $$files; }
299
- tags: TAGS
300
- TAGS:
395
+ dir='$(DESTDIR)$(man3dir)'; $(am__uninstall_files_from_dir)
396
+ tags TAGS:
397
+
398
+ ctags CTAGS:
301
399
 
302
- ctags: CTAGS
303
- CTAGS:
400
+ cscope cscopelist:
304
401
 
305
402
 
306
403
  distdir: $(DISTFILES)
307
- @list='$(MANS)'; if test -n "$$list"; then \
308
- list=`for p in $$list; do \
309
- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
310
- if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
311
- if test -n "$$list" && \
312
- grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
313
- echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
314
- grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \
315
- echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \
316
- echo " typically \`make maintainer-clean' will remove them" >&2; \
317
- exit 1; \
318
- else :; fi; \
319
- else :; fi
320
404
  @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
321
405
  topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
322
406
  list='$(DISTFILES)'; \
@@ -363,10 +447,15 @@ install-am: all-am
363
447
 
364
448
  installcheck: installcheck-am
365
449
  install-strip:
366
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
367
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
368
- `test -z '$(STRIP)' || \
369
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
450
+ if test -z '$(STRIP)'; then \
451
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
452
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
453
+ install; \
454
+ else \
455
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
456
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
457
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
458
+ fi
370
459
  mostlyclean-generic:
371
460
 
372
461
  clean-generic:
@@ -449,16 +538,19 @@ uninstall-man: uninstall-man3
449
538
  .MAKE: install-am install-strip
450
539
 
451
540
  .PHONY: all all-am check check-am clean clean-generic clean-libtool \
452
- distclean distclean-generic distclean-libtool distdir dvi \
453
- dvi-am html html-am info info-am install install-am \
454
- install-data install-data-am install-dvi install-dvi-am \
455
- install-exec install-exec-am install-html install-html-am \
456
- install-info install-info-am install-man install-man3 \
457
- install-pdf install-pdf-am install-ps install-ps-am \
458
- install-strip installcheck installcheck-am installdirs \
459
- maintainer-clean maintainer-clean-generic mostlyclean \
460
- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
461
- uninstall uninstall-am uninstall-man uninstall-man3
541
+ cscopelist-am ctags-am distclean distclean-generic \
542
+ distclean-libtool distdir dvi dvi-am html html-am info info-am \
543
+ install install-am install-data install-data-am install-dvi \
544
+ install-dvi-am install-exec install-exec-am install-html \
545
+ install-html-am install-info install-info-am install-man \
546
+ install-man3 install-pdf install-pdf-am install-ps \
547
+ install-ps-am install-strip installcheck installcheck-am \
548
+ installdirs maintainer-clean maintainer-clean-generic \
549
+ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
550
+ ps ps-am tags-am uninstall uninstall-am uninstall-man \
551
+ uninstall-man3
552
+
553
+ .PRECIOUS: Makefile
462
554
 
463
555
 
464
556
  # Tell versions [3.59,3.63) of GNU make to not export all variables.