ffi 1.9.21-x86-mingw32 → 1.9.22-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 (551) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +22 -0
  3. data/.gitmodules +3 -0
  4. data/.travis.yml +52 -0
  5. data/.yardopts +5 -0
  6. data/Gemfile +15 -0
  7. data/{spec/ffi/LICENSE.SPECS → LICENSE.SPECS} +1 -1
  8. data/README.md +1 -1
  9. data/Rakefile +28 -3
  10. data/appveyor.yml +22 -0
  11. data/ffi.gemspec +14 -1
  12. data/lib/2.0/ffi_c.so +0 -0
  13. data/lib/2.1/ffi_c.so +0 -0
  14. data/lib/2.2/ffi_c.so +0 -0
  15. data/lib/2.3/ffi_c.so +0 -0
  16. data/lib/2.4/ffi_c.so +0 -0
  17. data/lib/2.5/ffi_c.so +0 -0
  18. data/lib/ffi/library.rb +1 -1
  19. data/lib/ffi/version.rb +1 -1
  20. data/samples/getlogin.rb +8 -0
  21. data/samples/getpid.rb +8 -0
  22. data/samples/gettimeofday.rb +18 -0
  23. data/samples/hello.rb +7 -0
  24. data/samples/inotify.rb +60 -0
  25. data/samples/pty.rb +76 -0
  26. data/samples/qsort.rb +21 -0
  27. data/samples/sample_helper.rb +6 -0
  28. metadata +17 -526
  29. data/ext/ffi_c/AbstractMemory.c +0 -1109
  30. data/ext/ffi_c/AbstractMemory.h +0 -175
  31. data/ext/ffi_c/ArrayType.c +0 -162
  32. data/ext/ffi_c/ArrayType.h +0 -59
  33. data/ext/ffi_c/Buffer.c +0 -365
  34. data/ext/ffi_c/Call.c +0 -517
  35. data/ext/ffi_c/Call.h +0 -110
  36. data/ext/ffi_c/ClosurePool.c +0 -283
  37. data/ext/ffi_c/ClosurePool.h +0 -57
  38. data/ext/ffi_c/DataConverter.c +0 -91
  39. data/ext/ffi_c/DynamicLibrary.c +0 -339
  40. data/ext/ffi_c/DynamicLibrary.h +0 -98
  41. data/ext/ffi_c/Function.c +0 -998
  42. data/ext/ffi_c/Function.h +0 -87
  43. data/ext/ffi_c/FunctionInfo.c +0 -271
  44. data/ext/ffi_c/LastError.c +0 -184
  45. data/ext/ffi_c/LastError.h +0 -47
  46. data/ext/ffi_c/LongDouble.c +0 -63
  47. data/ext/ffi_c/LongDouble.h +0 -51
  48. data/ext/ffi_c/MappedType.c +0 -168
  49. data/ext/ffi_c/MappedType.h +0 -59
  50. data/ext/ffi_c/MemoryPointer.c +0 -197
  51. data/ext/ffi_c/MemoryPointer.h +0 -53
  52. data/ext/ffi_c/MethodHandle.c +0 -358
  53. data/ext/ffi_c/MethodHandle.h +0 -55
  54. data/ext/ffi_c/Platform.c +0 -129
  55. data/ext/ffi_c/Platform.h +0 -45
  56. data/ext/ffi_c/Pointer.c +0 -508
  57. data/ext/ffi_c/Pointer.h +0 -63
  58. data/ext/ffi_c/Struct.c +0 -829
  59. data/ext/ffi_c/Struct.h +0 -106
  60. data/ext/ffi_c/StructByReference.c +0 -190
  61. data/ext/ffi_c/StructByReference.h +0 -50
  62. data/ext/ffi_c/StructByValue.c +0 -150
  63. data/ext/ffi_c/StructByValue.h +0 -55
  64. data/ext/ffi_c/StructLayout.c +0 -698
  65. data/ext/ffi_c/Thread.c +0 -352
  66. data/ext/ffi_c/Thread.h +0 -95
  67. data/ext/ffi_c/Type.c +0 -397
  68. data/ext/ffi_c/Type.h +0 -62
  69. data/ext/ffi_c/Types.c +0 -139
  70. data/ext/ffi_c/Types.h +0 -89
  71. data/ext/ffi_c/Variadic.c +0 -304
  72. data/ext/ffi_c/compat.h +0 -78
  73. data/ext/ffi_c/extconf.rb +0 -71
  74. data/ext/ffi_c/ffi.c +0 -98
  75. data/ext/ffi_c/libffi.bsd.mk +0 -40
  76. data/ext/ffi_c/libffi.darwin.mk +0 -105
  77. data/ext/ffi_c/libffi.gnu.mk +0 -32
  78. data/ext/ffi_c/libffi.mk +0 -18
  79. data/ext/ffi_c/libffi.vc.mk +0 -26
  80. data/ext/ffi_c/libffi.vc64.mk +0 -26
  81. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  82. data/ext/ffi_c/libffi/ChangeLog.libffi-3.1 +0 -6000
  83. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  84. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  85. data/ext/ffi_c/libffi/LICENSE +0 -21
  86. data/ext/ffi_c/libffi/Makefile.am +0 -205
  87. data/ext/ffi_c/libffi/Makefile.in +0 -1805
  88. data/ext/ffi_c/libffi/README +0 -454
  89. data/ext/ffi_c/libffi/acinclude.m4 +0 -473
  90. data/ext/ffi_c/libffi/aclocal.m4 +0 -2134
  91. data/ext/ffi_c/libffi/autogen.sh +0 -2
  92. data/ext/ffi_c/libffi/autom4te.cache/output.0 +0 -21972
  93. data/ext/ffi_c/libffi/autom4te.cache/output.1 +0 -21972
  94. data/ext/ffi_c/libffi/autom4te.cache/output.2 +0 -21972
  95. data/ext/ffi_c/libffi/autom4te.cache/output.3 +0 -21972
  96. data/ext/ffi_c/libffi/autom4te.cache/requests +0 -331
  97. data/ext/ffi_c/libffi/autom4te.cache/traces.0 +0 -4010
  98. data/ext/ffi_c/libffi/autom4te.cache/traces.1 +0 -1005
  99. data/ext/ffi_c/libffi/autom4te.cache/traces.2 +0 -4010
  100. data/ext/ffi_c/libffi/autom4te.cache/traces.3 +0 -4010
  101. data/ext/ffi_c/libffi/compile +0 -347
  102. data/ext/ffi_c/libffi/config.guess +0 -1462
  103. data/ext/ffi_c/libffi/config.sub +0 -1825
  104. data/ext/ffi_c/libffi/configure +0 -21972
  105. data/ext/ffi_c/libffi/configure.ac +0 -388
  106. data/ext/ffi_c/libffi/configure.host +0 -272
  107. data/ext/ffi_c/libffi/depcomp +0 -791
  108. data/ext/ffi_c/libffi/doc/Makefile.am +0 -3
  109. data/ext/ffi_c/libffi/doc/Makefile.in +0 -811
  110. data/ext/ffi_c/libffi/doc/libffi.texi +0 -985
  111. data/ext/ffi_c/libffi/doc/mdate-sh +0 -228
  112. data/ext/ffi_c/libffi/doc/texinfo.tex +0 -10079
  113. data/ext/ffi_c/libffi/doc/version.texi +0 -4
  114. data/ext/ffi_c/libffi/fficonfig.h.in +0 -210
  115. data/ext/ffi_c/libffi/fficonfig.h.in~ +0 -210
  116. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -207
  117. data/ext/ffi_c/libffi/include/Makefile.am +0 -9
  118. data/ext/ffi_c/libffi/include/Makefile.in +0 -604
  119. data/ext/ffi_c/libffi/include/ffi.h.in +0 -484
  120. data/ext/ffi_c/libffi/include/ffi_cfi.h +0 -55
  121. data/ext/ffi_c/libffi/include/ffi_common.h +0 -147
  122. data/ext/ffi_c/libffi/install-sh +0 -508
  123. data/ext/ffi_c/libffi/libffi.map.in +0 -80
  124. data/ext/ffi_c/libffi/libffi.pc.in +0 -11
  125. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -637
  126. data/ext/ffi_c/libffi/libtool-ldflags +0 -106
  127. data/ext/ffi_c/libffi/libtool-version +0 -29
  128. data/ext/ffi_c/libffi/ltmain.sh +0 -11156
  129. data/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -13
  130. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -69
  131. data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -181
  132. data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -122
  133. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -72
  134. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -84
  135. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -70
  136. data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -301
  137. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -225
  138. data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -79
  139. data/ext/ffi_c/libffi/m4/libtool.m4 +0 -8387
  140. data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -437
  141. data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -124
  142. data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
  143. data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -99
  144. data/ext/ffi_c/libffi/man/Makefile.am +0 -8
  145. data/ext/ffi_c/libffi/man/Makefile.in +0 -558
  146. data/ext/ffi_c/libffi/man/ffi.3 +0 -41
  147. data/ext/ffi_c/libffi/man/ffi_call.3 +0 -103
  148. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -68
  149. data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -73
  150. data/ext/ffi_c/libffi/missing +0 -215
  151. data/ext/ffi_c/libffi/msvcc.sh +0 -260
  152. data/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -941
  153. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -81
  154. data/ext/ffi_c/libffi/src/aarch64/internal.h +0 -67
  155. data/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -438
  156. data/ext/ffi_c/libffi/src/alpha/ffi.c +0 -521
  157. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -57
  158. data/ext/ffi_c/libffi/src/alpha/internal.h +0 -23
  159. data/ext/ffi_c/libffi/src/alpha/osf.S +0 -282
  160. data/ext/ffi_c/libffi/src/arc/arcompact.S +0 -135
  161. data/ext/ffi_c/libffi/src/arc/ffi.c +0 -266
  162. data/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -53
  163. data/ext/ffi_c/libffi/src/arm/ffi.c +0 -808
  164. data/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -82
  165. data/ext/ffi_c/libffi/src/arm/internal.h +0 -7
  166. data/ext/ffi_c/libffi/src/arm/sysv.S +0 -383
  167. data/ext/ffi_c/libffi/src/avr32/ffi.c +0 -423
  168. data/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -55
  169. data/ext/ffi_c/libffi/src/avr32/sysv.S +0 -208
  170. data/ext/ffi_c/libffi/src/bfin/ffi.c +0 -196
  171. data/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -43
  172. data/ext/ffi_c/libffi/src/bfin/sysv.S +0 -179
  173. data/ext/ffi_c/libffi/src/closures.c +0 -890
  174. data/ext/ffi_c/libffi/src/cris/ffi.c +0 -386
  175. data/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -56
  176. data/ext/ffi_c/libffi/src/cris/sysv.S +0 -215
  177. data/ext/ffi_c/libffi/src/debug.c +0 -64
  178. data/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
  179. data/ext/ffi_c/libffi/src/frv/eabi.S +0 -128
  180. data/ext/ffi_c/libffi/src/frv/ffi.c +0 -292
  181. data/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -62
  182. data/ext/ffi_c/libffi/src/ia64/ffi.c +0 -586
  183. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -55
  184. data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -40
  185. data/ext/ffi_c/libffi/src/ia64/unix.S +0 -560
  186. data/ext/ffi_c/libffi/src/java_raw_api.c +0 -374
  187. data/ext/ffi_c/libffi/src/m32r/ffi.c +0 -232
  188. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -53
  189. data/ext/ffi_c/libffi/src/m32r/sysv.S +0 -121
  190. data/ext/ffi_c/libffi/src/m68k/ffi.c +0 -362
  191. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -54
  192. data/ext/ffi_c/libffi/src/m68k/sysv.S +0 -357
  193. data/ext/ffi_c/libffi/src/m88k/ffi.c +0 -400
  194. data/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -49
  195. data/ext/ffi_c/libffi/src/m88k/obsd.S +0 -209
  196. data/ext/ffi_c/libffi/src/metag/ffi.c +0 -330
  197. data/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -53
  198. data/ext/ffi_c/libffi/src/metag/sysv.S +0 -311
  199. data/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -321
  200. data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -53
  201. data/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -302
  202. data/ext/ffi_c/libffi/src/mips/ffi.c +0 -1105
  203. data/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -249
  204. data/ext/ffi_c/libffi/src/mips/n32.S +0 -661
  205. data/ext/ffi_c/libffi/src/mips/o32.S +0 -502
  206. data/ext/ffi_c/libffi/src/moxie/eabi.S +0 -101
  207. data/ext/ffi_c/libffi/src/moxie/ffi.c +0 -272
  208. data/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -52
  209. data/ext/ffi_c/libffi/src/nios2/ffi.c +0 -304
  210. data/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -52
  211. data/ext/ffi_c/libffi/src/nios2/sysv.S +0 -136
  212. data/ext/ffi_c/libffi/src/or1k/ffi.c +0 -328
  213. data/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -58
  214. data/ext/ffi_c/libffi/src/or1k/sysv.S +0 -107
  215. data/ext/ffi_c/libffi/src/pa/ffi.c +0 -719
  216. data/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -85
  217. data/ext/ffi_c/libffi/src/pa/hpux32.S +0 -368
  218. data/ext/ffi_c/libffi/src/pa/linux.S +0 -357
  219. data/ext/ffi_c/libffi/src/powerpc/aix.S +0 -328
  220. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -447
  221. data/ext/ffi_c/libffi/src/powerpc/asm.h +0 -125
  222. data/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -378
  223. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -571
  224. data/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -173
  225. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -1359
  226. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -945
  227. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -94
  228. data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -923
  229. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -195
  230. data/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -228
  231. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -488
  232. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -397
  233. data/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -175
  234. data/ext/ffi_c/libffi/src/prep_cif.c +0 -261
  235. data/ext/ffi_c/libffi/src/raw_api.c +0 -267
  236. data/ext/ffi_c/libffi/src/s390/ffi.c +0 -756
  237. data/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -70
  238. data/ext/ffi_c/libffi/src/s390/internal.h +0 -11
  239. data/ext/ffi_c/libffi/src/s390/sysv.S +0 -325
  240. data/ext/ffi_c/libffi/src/sh/ffi.c +0 -717
  241. data/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -54
  242. data/ext/ffi_c/libffi/src/sh/sysv.S +0 -850
  243. data/ext/ffi_c/libffi/src/sh64/ffi.c +0 -469
  244. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -58
  245. data/ext/ffi_c/libffi/src/sh64/sysv.S +0 -539
  246. data/ext/ffi_c/libffi/src/sparc/ffi.c +0 -468
  247. data/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -608
  248. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -81
  249. data/ext/ffi_c/libffi/src/sparc/internal.h +0 -26
  250. data/ext/ffi_c/libffi/src/sparc/v8.S +0 -443
  251. data/ext/ffi_c/libffi/src/sparc/v9.S +0 -440
  252. data/ext/ffi_c/libffi/src/tile/ffi.c +0 -355
  253. data/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -65
  254. data/ext/ffi_c/libffi/src/tile/tile.S +0 -360
  255. data/ext/ffi_c/libffi/src/types.c +0 -106
  256. data/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -195
  257. data/ext/ffi_c/libffi/src/vax/ffi.c +0 -276
  258. data/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -49
  259. data/ext/ffi_c/libffi/src/x86/asmnames.h +0 -30
  260. data/ext/ffi_c/libffi/src/x86/ffi.c +0 -733
  261. data/ext/ffi_c/libffi/src/x86/ffi64.c +0 -857
  262. data/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -141
  263. data/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -287
  264. data/ext/ffi_c/libffi/src/x86/internal.h +0 -29
  265. data/ext/ffi_c/libffi/src/x86/internal64.h +0 -22
  266. data/ext/ffi_c/libffi/src/x86/sysv.S +0 -1043
  267. data/ext/ffi_c/libffi/src/x86/unix64.S +0 -525
  268. data/ext/ffi_c/libffi/src/x86/win64.S +0 -232
  269. data/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -237
  270. data/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -298
  271. data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -53
  272. data/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -253
  273. data/ext/ffi_c/libffi/stamp-h.in +0 -1
  274. data/ext/ffi_c/libffi/testsuite/Makefile.am +0 -85
  275. data/ext/ffi_c/libffi/testsuite/Makefile.in +0 -607
  276. data/ext/ffi_c/libffi/testsuite/config/default.exp +0 -1
  277. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -445
  278. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -283
  279. data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -45
  280. data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -46
  281. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -30
  282. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +0 -89
  283. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +0 -81
  284. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +0 -81
  285. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +0 -82
  286. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +0 -89
  287. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +0 -92
  288. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +0 -90
  289. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +0 -95
  290. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_simple.c +0 -55
  291. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +0 -94
  292. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +0 -95
  293. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +0 -96
  294. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +0 -102
  295. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +0 -89
  296. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +0 -91
  297. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +0 -93
  298. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +0 -113
  299. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +0 -90
  300. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +0 -95
  301. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +0 -90
  302. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +0 -90
  303. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +0 -98
  304. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +0 -90
  305. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +0 -109
  306. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +0 -98
  307. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +0 -124
  308. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +0 -113
  309. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +0 -99
  310. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +0 -117
  311. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +0 -97
  312. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +0 -88
  313. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +0 -90
  314. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +0 -91
  315. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +0 -93
  316. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +0 -91
  317. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +0 -92
  318. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +0 -132
  319. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +0 -115
  320. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +0 -95
  321. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +0 -91
  322. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +0 -91
  323. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +0 -92
  324. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +0 -91
  325. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +0 -91
  326. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +0 -93
  327. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +0 -66
  328. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +0 -43
  329. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +0 -61
  330. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +0 -42
  331. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +0 -105
  332. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +0 -61
  333. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +0 -70
  334. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +0 -55
  335. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +0 -74
  336. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +0 -74
  337. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +0 -86
  338. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +0 -91
  339. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +0 -74
  340. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +0 -86
  341. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +0 -74
  342. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +0 -142
  343. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +0 -44
  344. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +0 -42
  345. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +0 -42
  346. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +0 -114
  347. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +0 -42
  348. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +0 -44
  349. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +0 -43
  350. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +0 -45
  351. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +0 -45
  352. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +0 -47
  353. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +0 -43
  354. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +0 -44
  355. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +0 -36
  356. data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -26
  357. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -136
  358. data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -59
  359. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -60
  360. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -60
  361. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -74
  362. data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -62
  363. data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -107
  364. data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +0 -341
  365. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -59
  366. data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -57
  367. data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -70
  368. data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -78
  369. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -52
  370. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +0 -152
  371. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +0 -161
  372. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +0 -133
  373. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +0 -121
  374. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +0 -110
  375. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +0 -111
  376. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +0 -111
  377. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +0 -112
  378. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +0 -131
  379. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +0 -111
  380. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +0 -131
  381. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +0 -131
  382. data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -46
  383. data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -127
  384. data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +0 -90
  385. data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -59
  386. data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +0 -114
  387. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -36
  388. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -43
  389. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -42
  390. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -35
  391. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -36
  392. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -49
  393. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -42
  394. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -34
  395. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -41
  396. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -43
  397. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -36
  398. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -38
  399. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -38
  400. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -38
  401. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +0 -145
  402. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +0 -148
  403. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +0 -124
  404. data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +0 -125
  405. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -44
  406. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -49
  407. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -49
  408. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -55
  409. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -67
  410. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -67
  411. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -60
  412. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -64
  413. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -66
  414. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -64
  415. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -74
  416. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -81
  417. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -68
  418. data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +0 -70
  419. data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -61
  420. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc +0 -117
  421. data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc +0 -54
  422. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -196
  423. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -121
  424. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -123
  425. data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -125
  426. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -91
  427. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -10
  428. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -10
  429. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -10
  430. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -42
  431. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -10
  432. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -10
  433. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -10
  434. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -71
  435. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -10
  436. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -10
  437. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -10
  438. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -80
  439. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -10
  440. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -16
  441. data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -10
  442. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -36
  443. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -51
  444. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -7
  445. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -7
  446. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -7
  447. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -10
  448. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -10
  449. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -86
  450. data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -10
  451. data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -1
  452. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -78
  453. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -10
  454. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -10
  455. data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -10
  456. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -37
  457. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -41
  458. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -10
  459. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -10
  460. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -10
  461. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -44
  462. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -10
  463. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -10
  464. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -10
  465. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -10
  466. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -10
  467. data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -10
  468. data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -34
  469. data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -28
  470. data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -1
  471. data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -36
  472. data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -19
  473. data/ext/ffi_c/rbffi.h +0 -57
  474. data/ext/ffi_c/rbffi_endian.h +0 -59
  475. data/ext/ffi_c/win32/stdbool.h +0 -8
  476. data/ext/ffi_c/win32/stdint.h +0 -201
  477. data/gen/Rakefile +0 -30
  478. data/libtest/Benchmark.c +0 -52
  479. data/libtest/BoolTest.c +0 -34
  480. data/libtest/BufferTest.c +0 -31
  481. data/libtest/ClosureTest.c +0 -205
  482. data/libtest/EnumTest.c +0 -51
  483. data/libtest/FunctionTest.c +0 -70
  484. data/libtest/GNUmakefile +0 -149
  485. data/libtest/GlobalVariable.c +0 -62
  486. data/libtest/LastErrorTest.c +0 -21
  487. data/libtest/NumberTest.c +0 -132
  488. data/libtest/PointerTest.c +0 -63
  489. data/libtest/ReferenceTest.c +0 -23
  490. data/libtest/StringTest.c +0 -34
  491. data/libtest/StructTest.c +0 -243
  492. data/libtest/UnionTest.c +0 -43
  493. data/libtest/VariadicTest.c +0 -99
  494. data/spec/ffi/async_callback_spec.rb +0 -35
  495. data/spec/ffi/bitmask_spec.rb +0 -575
  496. data/spec/ffi/bool_spec.rb +0 -32
  497. data/spec/ffi/buffer_spec.rb +0 -279
  498. data/spec/ffi/callback_spec.rb +0 -773
  499. data/spec/ffi/custom_param_type.rb +0 -37
  500. data/spec/ffi/custom_type_spec.rb +0 -74
  501. data/spec/ffi/dup_spec.rb +0 -52
  502. data/spec/ffi/embed-test/ext/Makefile +0 -242
  503. data/spec/ffi/enum_spec.rb +0 -423
  504. data/spec/ffi/errno_spec.rb +0 -20
  505. data/spec/ffi/ffi_spec.rb +0 -28
  506. data/spec/ffi/fixtures/Benchmark.c +0 -52
  507. data/spec/ffi/fixtures/BitmaskTest.c +0 -51
  508. data/spec/ffi/fixtures/BoolTest.c +0 -34
  509. data/spec/ffi/fixtures/BufferTest.c +0 -31
  510. data/spec/ffi/fixtures/ClosureTest.c +0 -205
  511. data/spec/ffi/fixtures/EnumTest.c +0 -51
  512. data/spec/ffi/fixtures/FunctionTest.c +0 -142
  513. data/spec/ffi/fixtures/GNUmakefile +0 -149
  514. data/spec/ffi/fixtures/GlobalVariable.c +0 -62
  515. data/spec/ffi/fixtures/LastErrorTest.c +0 -21
  516. data/spec/ffi/fixtures/NumberTest.c +0 -132
  517. data/spec/ffi/fixtures/PipeHelper.h +0 -21
  518. data/spec/ffi/fixtures/PipeHelperPosix.c +0 -41
  519. data/spec/ffi/fixtures/PipeHelperWindows.c +0 -72
  520. data/spec/ffi/fixtures/PointerTest.c +0 -63
  521. data/spec/ffi/fixtures/ReferenceTest.c +0 -23
  522. data/spec/ffi/fixtures/StringTest.c +0 -34
  523. data/spec/ffi/fixtures/StructTest.c +0 -243
  524. data/spec/ffi/fixtures/UnionTest.c +0 -43
  525. data/spec/ffi/fixtures/VariadicTest.c +0 -99
  526. data/spec/ffi/fixtures/classes.rb +0 -438
  527. data/spec/ffi/function_spec.rb +0 -97
  528. data/spec/ffi/io_spec.rb +0 -16
  529. data/spec/ffi/library_spec.rb +0 -286
  530. data/spec/ffi/long_double.rb +0 -30
  531. data/spec/ffi/managed_struct_spec.rb +0 -68
  532. data/spec/ffi/memorypointer_spec.rb +0 -78
  533. data/spec/ffi/number_spec.rb +0 -247
  534. data/spec/ffi/platform_spec.rb +0 -114
  535. data/spec/ffi/pointer_spec.rb +0 -285
  536. data/spec/ffi/rbx/attach_function_spec.rb +0 -34
  537. data/spec/ffi/rbx/memory_pointer_spec.rb +0 -198
  538. data/spec/ffi/rbx/spec_helper.rb +0 -6
  539. data/spec/ffi/rbx/struct_spec.rb +0 -18
  540. data/spec/ffi/spec_helper.rb +0 -93
  541. data/spec/ffi/string_spec.rb +0 -118
  542. data/spec/ffi/strptr_spec.rb +0 -50
  543. data/spec/ffi/struct_by_ref_spec.rb +0 -43
  544. data/spec/ffi/struct_callback_spec.rb +0 -69
  545. data/spec/ffi/struct_initialize_spec.rb +0 -35
  546. data/spec/ffi/struct_packed_spec.rb +0 -50
  547. data/spec/ffi/struct_spec.rb +0 -882
  548. data/spec/ffi/typedef_spec.rb +0 -91
  549. data/spec/ffi/union_spec.rb +0 -67
  550. data/spec/ffi/variadic_spec.rb +0 -132
  551. data/spec/spec.opts +0 -4
@@ -1,4010 +0,0 @@
1
- m4trace:/usr/share/aclocal/libtool.m4:61: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK
2
- AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
3
- AC_BEFORE([$0], [LT_LANG])dnl
4
- AC_BEFORE([$0], [LT_OUTPUT])dnl
5
- AC_BEFORE([$0], [LTDL_INIT])dnl
6
- m4_require([_LT_CHECK_BUILDDIR])dnl
7
-
8
- dnl Autoconf doesn't catch unexpanded LT_ macros by default:
9
- m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
10
- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
11
- dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
12
- dnl unless we require an AC_DEFUNed macro:
13
- AC_REQUIRE([LTOPTIONS_VERSION])dnl
14
- AC_REQUIRE([LTSUGAR_VERSION])dnl
15
- AC_REQUIRE([LTVERSION_VERSION])dnl
16
- AC_REQUIRE([LTOBSOLETE_VERSION])dnl
17
- m4_require([_LT_PROG_LTMAIN])dnl
18
-
19
- _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
20
-
21
- dnl Parse OPTIONS
22
- _LT_SET_OPTIONS([$0], [$1])
23
-
24
- # This can be used to rebuild libtool when needed
25
- LIBTOOL_DEPS=$ltmain
26
-
27
- # Always use our own libtool.
28
- LIBTOOL='$(SHELL) $(top_builddir)/libtool'
29
- AC_SUBST(LIBTOOL)dnl
30
-
31
- _LT_SETUP
32
-
33
- # Only expand once:
34
- m4_define([LT_INIT])
35
- ])
36
- m4trace:/usr/share/aclocal/libtool.m4:99: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
37
- m4trace:/usr/share/aclocal/libtool.m4:99: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
38
- You should run autoupdate.])dnl
39
- m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
40
- m4trace:/usr/share/aclocal/libtool.m4:100: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
41
- m4trace:/usr/share/aclocal/libtool.m4:100: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
42
- You should run autoupdate.])dnl
43
- m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
44
- m4trace:/usr/share/aclocal/libtool.m4:619: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
45
- AC_MSG_NOTICE([creating $CONFIG_LT])
46
- _LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
47
- [# Run this file to recreate a libtool stub with the current configuration.])
48
-
49
- cat >>"$CONFIG_LT" <<\_LTEOF
50
- lt_cl_silent=false
51
- exec AS_MESSAGE_LOG_FD>>config.log
52
- {
53
- echo
54
- AS_BOX([Running $as_me.])
55
- } >&AS_MESSAGE_LOG_FD
56
-
57
- lt_cl_help="\
58
- '$as_me' creates a local libtool stub from the current configuration,
59
- for use in further configure time tests before the real libtool is
60
- generated.
61
-
62
- Usage: $[0] [[OPTIONS]]
63
-
64
- -h, --help print this help, then exit
65
- -V, --version print version number, then exit
66
- -q, --quiet do not print progress messages
67
- -d, --debug don't remove temporary files
68
-
69
- Report bugs to <bug-libtool@gnu.org>."
70
-
71
- lt_cl_version="\
72
- m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
73
- m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
74
- configured by $[0], generated by m4_PACKAGE_STRING.
75
-
76
- Copyright (C) 2011 Free Software Foundation, Inc.
77
- This config.lt script is free software; the Free Software Foundation
78
- gives unlimited permision to copy, distribute and modify it."
79
-
80
- while test 0 != $[#]
81
- do
82
- case $[1] in
83
- --version | --v* | -V )
84
- echo "$lt_cl_version"; exit 0 ;;
85
- --help | --h* | -h )
86
- echo "$lt_cl_help"; exit 0 ;;
87
- --debug | --d* | -d )
88
- debug=: ;;
89
- --quiet | --q* | --silent | --s* | -q )
90
- lt_cl_silent=: ;;
91
-
92
- -*) AC_MSG_ERROR([unrecognized option: $[1]
93
- Try '$[0] --help' for more information.]) ;;
94
-
95
- *) AC_MSG_ERROR([unrecognized argument: $[1]
96
- Try '$[0] --help' for more information.]) ;;
97
- esac
98
- shift
99
- done
100
-
101
- if $lt_cl_silent; then
102
- exec AS_MESSAGE_FD>/dev/null
103
- fi
104
- _LTEOF
105
-
106
- cat >>"$CONFIG_LT" <<_LTEOF
107
- _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
108
- _LTEOF
109
-
110
- cat >>"$CONFIG_LT" <<\_LTEOF
111
- AC_MSG_NOTICE([creating $ofile])
112
- _LT_OUTPUT_LIBTOOL_COMMANDS
113
- AS_EXIT(0)
114
- _LTEOF
115
- chmod +x "$CONFIG_LT"
116
-
117
- # configure is writing to config.log, but config.lt does its own redirection,
118
- # appending to config.log, which fails on DOS, as config.log is still kept
119
- # open by configure. Here we exec the FD to /dev/null, effectively closing
120
- # config.log, so it can be properly (re)opened and appended to by config.lt.
121
- lt_cl_success=:
122
- test yes = "$silent" &&
123
- lt_config_lt_args="$lt_config_lt_args --quiet"
124
- exec AS_MESSAGE_LOG_FD>/dev/null
125
- $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
126
- exec AS_MESSAGE_LOG_FD>>config.log
127
- $lt_cl_success || AS_EXIT(1)
128
- ])
129
- m4trace:/usr/share/aclocal/libtool.m4:811: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
130
- m4trace:/usr/share/aclocal/libtool.m4:822: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
131
- m4_case([$1],
132
- [C], [_LT_LANG(C)],
133
- [C++], [_LT_LANG(CXX)],
134
- [Go], [_LT_LANG(GO)],
135
- [Java], [_LT_LANG(GCJ)],
136
- [Fortran 77], [_LT_LANG(F77)],
137
- [Fortran], [_LT_LANG(FC)],
138
- [Windows Resource], [_LT_LANG(RC)],
139
- [m4_ifdef([_LT_LANG_]$1[_CONFIG],
140
- [_LT_LANG($1)],
141
- [m4_fatal([$0: unsupported language: "$1"])])])dnl
142
- ])
143
- m4trace:/usr/share/aclocal/libtool.m4:914: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
144
- m4trace:/usr/share/aclocal/libtool.m4:914: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
145
- You should run autoupdate.])dnl
146
- LT_LANG(C++)])
147
- m4trace:/usr/share/aclocal/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
148
- m4trace:/usr/share/aclocal/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
149
- You should run autoupdate.])dnl
150
- LT_LANG(Fortran 77)])
151
- m4trace:/usr/share/aclocal/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
152
- m4trace:/usr/share/aclocal/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
153
- You should run autoupdate.])dnl
154
- LT_LANG(Fortran)])
155
- m4trace:/usr/share/aclocal/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
156
- m4trace:/usr/share/aclocal/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
157
- You should run autoupdate.])dnl
158
- LT_LANG(Java)])
159
- m4trace:/usr/share/aclocal/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
160
- m4trace:/usr/share/aclocal/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
161
- You should run autoupdate.])dnl
162
- LT_LANG(Windows Resource)])
163
- m4trace:/usr/share/aclocal/libtool.m4:1246: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
164
- AC_ARG_WITH([sysroot],
165
- [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
166
- [Search for dependent libraries within DIR (or the compiler's sysroot
167
- if not specified).])],
168
- [], [with_sysroot=no])
169
-
170
- dnl lt_sysroot will always be passed unquoted. We quote it here
171
- dnl in case the user passed a directory name.
172
- lt_sysroot=
173
- case $with_sysroot in #(
174
- yes)
175
- if test yes = "$GCC"; then
176
- lt_sysroot=`$CC --print-sysroot 2>/dev/null`
177
- fi
178
- ;; #(
179
- /*)
180
- lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
181
- ;; #(
182
- no|'')
183
- ;; #(
184
- *)
185
- AC_MSG_RESULT([$with_sysroot])
186
- AC_MSG_ERROR([The sysroot must be an absolute path.])
187
- ;;
188
- esac
189
-
190
- AC_MSG_RESULT([${lt_sysroot:-no}])
191
- _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
192
- [dependent libraries, and where our libraries should be installed.])])
193
- m4trace:/usr/share/aclocal/libtool.m4:1577: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
194
- m4_require([_LT_DECL_SED])dnl
195
- AC_CACHE_CHECK([$1], [$2],
196
- [$2=no
197
- m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
198
- echo "$lt_simple_compile_test_code" > conftest.$ac_ext
199
- lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment
200
- # Insert the option either (1) after the last *FLAGS variable, or
201
- # (2) before a word containing "conftest.", or (3) at the end.
202
- # Note that $ac_compile itself does not contain backslashes and begins
203
- # with a dollar sign (not a hyphen), so the echo should work correctly.
204
- # The option is referenced via a variable to avoid confusing sed.
205
- lt_compile=`echo "$ac_compile" | $SED \
206
- -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
207
- -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
208
- -e 's:$: $lt_compiler_flag:'`
209
- (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
210
- (eval "$lt_compile" 2>conftest.err)
211
- ac_status=$?
212
- cat conftest.err >&AS_MESSAGE_LOG_FD
213
- echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
214
- if (exit $ac_status) && test -s "$ac_outfile"; then
215
- # The compiler can only warn and ignore the option if not recognized
216
- # So say no if there are warnings other than the usual output.
217
- $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
218
- $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
219
- if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
220
- $2=yes
221
- fi
222
- fi
223
- $RM conftest*
224
- ])
225
-
226
- if test yes = "[$]$2"; then
227
- m4_if([$5], , :, [$5])
228
- else
229
- m4_if([$6], , :, [$6])
230
- fi
231
- ])
232
- m4trace:/usr/share/aclocal/libtool.m4:1619: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
233
- m4trace:/usr/share/aclocal/libtool.m4:1619: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
234
- You should run autoupdate.])dnl
235
- m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
236
- m4trace:/usr/share/aclocal/libtool.m4:1628: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
237
- m4_require([_LT_DECL_SED])dnl
238
- AC_CACHE_CHECK([$1], [$2],
239
- [$2=no
240
- save_LDFLAGS=$LDFLAGS
241
- LDFLAGS="$LDFLAGS $3"
242
- echo "$lt_simple_link_test_code" > conftest.$ac_ext
243
- if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
244
- # The linker can only warn and ignore the option if not recognized
245
- # So say no if there are warnings
246
- if test -s conftest.err; then
247
- # Append any errors to the config.log.
248
- cat conftest.err 1>&AS_MESSAGE_LOG_FD
249
- $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
250
- $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
251
- if diff conftest.exp conftest.er2 >/dev/null; then
252
- $2=yes
253
- fi
254
- else
255
- $2=yes
256
- fi
257
- fi
258
- $RM -r conftest*
259
- LDFLAGS=$save_LDFLAGS
260
- ])
261
-
262
- if test yes = "[$]$2"; then
263
- m4_if([$4], , :, [$4])
264
- else
265
- m4_if([$5], , :, [$5])
266
- fi
267
- ])
268
- m4trace:/usr/share/aclocal/libtool.m4:1663: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
269
- m4trace:/usr/share/aclocal/libtool.m4:1663: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
270
- You should run autoupdate.])dnl
271
- m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
272
- m4trace:/usr/share/aclocal/libtool.m4:1670: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
273
- # find the maximum length of command line arguments
274
- AC_MSG_CHECKING([the maximum length of command line arguments])
275
- AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
276
- i=0
277
- teststring=ABCD
278
-
279
- case $build_os in
280
- msdosdjgpp*)
281
- # On DJGPP, this test can blow up pretty badly due to problems in libc
282
- # (any single argument exceeding 2000 bytes causes a buffer overrun
283
- # during glob expansion). Even if it were fixed, the result of this
284
- # check would be larger than it should be.
285
- lt_cv_sys_max_cmd_len=12288; # 12K is about right
286
- ;;
287
-
288
- gnu*)
289
- # Under GNU Hurd, this test is not required because there is
290
- # no limit to the length of command line arguments.
291
- # Libtool will interpret -1 as no limit whatsoever
292
- lt_cv_sys_max_cmd_len=-1;
293
- ;;
294
-
295
- cygwin* | mingw* | cegcc*)
296
- # On Win9x/ME, this test blows up -- it succeeds, but takes
297
- # about 5 minutes as the teststring grows exponentially.
298
- # Worse, since 9x/ME are not pre-emptively multitasking,
299
- # you end up with a "frozen" computer, even though with patience
300
- # the test eventually succeeds (with a max line length of 256k).
301
- # Instead, let's just punt: use the minimum linelength reported by
302
- # all of the supported platforms: 8192 (on NT/2K/XP).
303
- lt_cv_sys_max_cmd_len=8192;
304
- ;;
305
-
306
- mint*)
307
- # On MiNT this can take a long time and run out of memory.
308
- lt_cv_sys_max_cmd_len=8192;
309
- ;;
310
-
311
- amigaos*)
312
- # On AmigaOS with pdksh, this test takes hours, literally.
313
- # So we just punt and use a minimum line length of 8192.
314
- lt_cv_sys_max_cmd_len=8192;
315
- ;;
316
-
317
- bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
318
- # This has been around since 386BSD, at least. Likely further.
319
- if test -x /sbin/sysctl; then
320
- lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
321
- elif test -x /usr/sbin/sysctl; then
322
- lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
323
- else
324
- lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
325
- fi
326
- # And add a safety zone
327
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
328
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
329
- ;;
330
-
331
- interix*)
332
- # We know the value 262144 and hardcode it with a safety zone (like BSD)
333
- lt_cv_sys_max_cmd_len=196608
334
- ;;
335
-
336
- os2*)
337
- # The test takes a long time on OS/2.
338
- lt_cv_sys_max_cmd_len=8192
339
- ;;
340
-
341
- osf*)
342
- # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
343
- # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
344
- # nice to cause kernel panics so lets avoid the loop below.
345
- # First set a reasonable default.
346
- lt_cv_sys_max_cmd_len=16384
347
- #
348
- if test -x /sbin/sysconfig; then
349
- case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
350
- *1*) lt_cv_sys_max_cmd_len=-1 ;;
351
- esac
352
- fi
353
- ;;
354
- sco3.2v5*)
355
- lt_cv_sys_max_cmd_len=102400
356
- ;;
357
- sysv5* | sco5v6* | sysv4.2uw2*)
358
- kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
359
- if test -n "$kargmax"; then
360
- lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
361
- else
362
- lt_cv_sys_max_cmd_len=32768
363
- fi
364
- ;;
365
- *)
366
- lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
367
- if test -n "$lt_cv_sys_max_cmd_len" && \
368
- test undefined != "$lt_cv_sys_max_cmd_len"; then
369
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
370
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
371
- else
372
- # Make teststring a little bigger before we do anything with it.
373
- # a 1K string should be a reasonable start.
374
- for i in 1 2 3 4 5 6 7 8; do
375
- teststring=$teststring$teststring
376
- done
377
- SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
378
- # If test is not a shell built-in, we'll probably end up computing a
379
- # maximum length that is only half of the actual maximum length, but
380
- # we can't tell.
381
- while { test X`env echo "$teststring$teststring" 2>/dev/null` \
382
- = "X$teststring$teststring"; } >/dev/null 2>&1 &&
383
- test 17 != "$i" # 1/2 MB should be enough
384
- do
385
- i=`expr $i + 1`
386
- teststring=$teststring$teststring
387
- done
388
- # Only check the string length outside the loop.
389
- lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
390
- teststring=
391
- # Add a significant safety factor because C++ compilers can tack on
392
- # massive amounts of additional arguments before passing them to the
393
- # linker. It appears as though 1/2 is a usable value.
394
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
395
- fi
396
- ;;
397
- esac
398
- ])
399
- if test -n "$lt_cv_sys_max_cmd_len"; then
400
- AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
401
- else
402
- AC_MSG_RESULT(none)
403
- fi
404
- max_cmd_len=$lt_cv_sys_max_cmd_len
405
- _LT_DECL([], [max_cmd_len], [0],
406
- [What is the maximum length of a command?])
407
- ])
408
- m4trace:/usr/share/aclocal/libtool.m4:1809: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
409
- m4trace:/usr/share/aclocal/libtool.m4:1809: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
410
- You should run autoupdate.])dnl
411
- m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
412
- m4trace:/usr/share/aclocal/libtool.m4:1920: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
413
- if test yes != "$enable_dlopen"; then
414
- enable_dlopen=unknown
415
- enable_dlopen_self=unknown
416
- enable_dlopen_self_static=unknown
417
- else
418
- lt_cv_dlopen=no
419
- lt_cv_dlopen_libs=
420
-
421
- case $host_os in
422
- beos*)
423
- lt_cv_dlopen=load_add_on
424
- lt_cv_dlopen_libs=
425
- lt_cv_dlopen_self=yes
426
- ;;
427
-
428
- mingw* | pw32* | cegcc*)
429
- lt_cv_dlopen=LoadLibrary
430
- lt_cv_dlopen_libs=
431
- ;;
432
-
433
- cygwin*)
434
- lt_cv_dlopen=dlopen
435
- lt_cv_dlopen_libs=
436
- ;;
437
-
438
- darwin*)
439
- # if libdl is installed we need to link against it
440
- AC_CHECK_LIB([dl], [dlopen],
441
- [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[
442
- lt_cv_dlopen=dyld
443
- lt_cv_dlopen_libs=
444
- lt_cv_dlopen_self=yes
445
- ])
446
- ;;
447
-
448
- tpf*)
449
- # Don't try to run any link tests for TPF. We know it's impossible
450
- # because TPF is a cross-compiler, and we know how we open DSOs.
451
- lt_cv_dlopen=dlopen
452
- lt_cv_dlopen_libs=
453
- lt_cv_dlopen_self=no
454
- ;;
455
-
456
- *)
457
- AC_CHECK_FUNC([shl_load],
458
- [lt_cv_dlopen=shl_load],
459
- [AC_CHECK_LIB([dld], [shl_load],
460
- [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],
461
- [AC_CHECK_FUNC([dlopen],
462
- [lt_cv_dlopen=dlopen],
463
- [AC_CHECK_LIB([dl], [dlopen],
464
- [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],
465
- [AC_CHECK_LIB([svld], [dlopen],
466
- [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],
467
- [AC_CHECK_LIB([dld], [dld_link],
468
- [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])
469
- ])
470
- ])
471
- ])
472
- ])
473
- ])
474
- ;;
475
- esac
476
-
477
- if test no = "$lt_cv_dlopen"; then
478
- enable_dlopen=no
479
- else
480
- enable_dlopen=yes
481
- fi
482
-
483
- case $lt_cv_dlopen in
484
- dlopen)
485
- save_CPPFLAGS=$CPPFLAGS
486
- test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
487
-
488
- save_LDFLAGS=$LDFLAGS
489
- wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
490
-
491
- save_LIBS=$LIBS
492
- LIBS="$lt_cv_dlopen_libs $LIBS"
493
-
494
- AC_CACHE_CHECK([whether a program can dlopen itself],
495
- lt_cv_dlopen_self, [dnl
496
- _LT_TRY_DLOPEN_SELF(
497
- lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
498
- lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
499
- ])
500
-
501
- if test yes = "$lt_cv_dlopen_self"; then
502
- wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
503
- AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
504
- lt_cv_dlopen_self_static, [dnl
505
- _LT_TRY_DLOPEN_SELF(
506
- lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
507
- lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
508
- ])
509
- fi
510
-
511
- CPPFLAGS=$save_CPPFLAGS
512
- LDFLAGS=$save_LDFLAGS
513
- LIBS=$save_LIBS
514
- ;;
515
- esac
516
-
517
- case $lt_cv_dlopen_self in
518
- yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
519
- *) enable_dlopen_self=unknown ;;
520
- esac
521
-
522
- case $lt_cv_dlopen_self_static in
523
- yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
524
- *) enable_dlopen_self_static=unknown ;;
525
- esac
526
- fi
527
- _LT_DECL([dlopen_support], [enable_dlopen], [0],
528
- [Whether dlopen is supported])
529
- _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
530
- [Whether dlopen of programs is supported])
531
- _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
532
- [Whether dlopen of statically linked programs is supported])
533
- ])
534
- m4trace:/usr/share/aclocal/libtool.m4:2045: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
535
- m4trace:/usr/share/aclocal/libtool.m4:2045: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
536
- You should run autoupdate.])dnl
537
- m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
538
- m4trace:/usr/share/aclocal/libtool.m4:3166: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
539
- AC_MSG_CHECKING([for $1])
540
- AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
541
- [case $MAGIC_CMD in
542
- [[\\/*] | ?:[\\/]*])
543
- lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
544
- ;;
545
- *)
546
- lt_save_MAGIC_CMD=$MAGIC_CMD
547
- lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
548
- dnl $ac_dummy forces splitting on constant user-supplied paths.
549
- dnl POSIX.2 word splitting is done only on the output of word expansions,
550
- dnl not every word. This closes a longstanding sh security hole.
551
- ac_dummy="m4_if([$2], , $PATH, [$2])"
552
- for ac_dir in $ac_dummy; do
553
- IFS=$lt_save_ifs
554
- test -z "$ac_dir" && ac_dir=.
555
- if test -f "$ac_dir/$1"; then
556
- lt_cv_path_MAGIC_CMD=$ac_dir/"$1"
557
- if test -n "$file_magic_test_file"; then
558
- case $deplibs_check_method in
559
- "file_magic "*)
560
- file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
561
- MAGIC_CMD=$lt_cv_path_MAGIC_CMD
562
- if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
563
- $EGREP "$file_magic_regex" > /dev/null; then
564
- :
565
- else
566
- cat <<_LT_EOF 1>&2
567
-
568
- *** Warning: the command libtool uses to detect shared libraries,
569
- *** $file_magic_cmd, produces output that libtool cannot recognize.
570
- *** The result is that libtool may fail to recognize shared libraries
571
- *** as such. This will affect the creation of libtool libraries that
572
- *** depend on shared libraries, but programs linked with such libtool
573
- *** libraries will work regardless of this problem. Nevertheless, you
574
- *** may want to report the problem to your system manager and/or to
575
- *** bug-libtool@gnu.org
576
-
577
- _LT_EOF
578
- fi ;;
579
- esac
580
- fi
581
- break
582
- fi
583
- done
584
- IFS=$lt_save_ifs
585
- MAGIC_CMD=$lt_save_MAGIC_CMD
586
- ;;
587
- esac])
588
- MAGIC_CMD=$lt_cv_path_MAGIC_CMD
589
- if test -n "$MAGIC_CMD"; then
590
- AC_MSG_RESULT($MAGIC_CMD)
591
- else
592
- AC_MSG_RESULT(no)
593
- fi
594
- _LT_DECL([], [MAGIC_CMD], [0],
595
- [Used to examine libraries when file_magic_cmd begins with "file"])dnl
596
- ])
597
- m4trace:/usr/share/aclocal/libtool.m4:3228: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
598
- m4trace:/usr/share/aclocal/libtool.m4:3228: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
599
- You should run autoupdate.])dnl
600
- m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
601
- m4trace:/usr/share/aclocal/libtool.m4:3251: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
602
- AC_REQUIRE([AC_CANONICAL_HOST])dnl
603
- AC_REQUIRE([AC_CANONICAL_BUILD])dnl
604
- m4_require([_LT_DECL_SED])dnl
605
- m4_require([_LT_DECL_EGREP])dnl
606
- m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
607
-
608
- AC_ARG_WITH([gnu-ld],
609
- [AS_HELP_STRING([--with-gnu-ld],
610
- [assume the C compiler uses GNU ld @<:@default=no@:>@])],
611
- [test no = "$withval" || with_gnu_ld=yes],
612
- [with_gnu_ld=no])dnl
613
-
614
- ac_prog=ld
615
- if test yes = "$GCC"; then
616
- # Check if gcc -print-prog-name=ld gives a path.
617
- AC_MSG_CHECKING([for ld used by $CC])
618
- case $host in
619
- *-*-mingw*)
620
- # gcc leaves a trailing carriage return, which upsets mingw
621
- ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
622
- *)
623
- ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
624
- esac
625
- case $ac_prog in
626
- # Accept absolute paths.
627
- [[\\/]]* | ?:[[\\/]]*)
628
- re_direlt='/[[^/]][[^/]]*/\.\./'
629
- # Canonicalize the pathname of ld
630
- ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
631
- while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
632
- ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
633
- done
634
- test -z "$LD" && LD=$ac_prog
635
- ;;
636
- "")
637
- # If it fails, then pretend we aren't using GCC.
638
- ac_prog=ld
639
- ;;
640
- *)
641
- # If it is relative, then search for the first ld in PATH.
642
- with_gnu_ld=unknown
643
- ;;
644
- esac
645
- elif test yes = "$with_gnu_ld"; then
646
- AC_MSG_CHECKING([for GNU ld])
647
- else
648
- AC_MSG_CHECKING([for non-GNU ld])
649
- fi
650
- AC_CACHE_VAL(lt_cv_path_LD,
651
- [if test -z "$LD"; then
652
- lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
653
- for ac_dir in $PATH; do
654
- IFS=$lt_save_ifs
655
- test -z "$ac_dir" && ac_dir=.
656
- if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
657
- lt_cv_path_LD=$ac_dir/$ac_prog
658
- # Check to see if the program is GNU ld. I'd rather use --version,
659
- # but apparently some variants of GNU ld only accept -v.
660
- # Break only if it was the GNU/non-GNU ld that we prefer.
661
- case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
662
- *GNU* | *'with BFD'*)
663
- test no != "$with_gnu_ld" && break
664
- ;;
665
- *)
666
- test yes != "$with_gnu_ld" && break
667
- ;;
668
- esac
669
- fi
670
- done
671
- IFS=$lt_save_ifs
672
- else
673
- lt_cv_path_LD=$LD # Let the user override the test with a path.
674
- fi])
675
- LD=$lt_cv_path_LD
676
- if test -n "$LD"; then
677
- AC_MSG_RESULT($LD)
678
- else
679
- AC_MSG_RESULT(no)
680
- fi
681
- test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
682
- _LT_PATH_LD_GNU
683
- AC_SUBST([LD])
684
-
685
- _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
686
- ])
687
- m4trace:/usr/share/aclocal/libtool.m4:3340: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
688
- m4trace:/usr/share/aclocal/libtool.m4:3340: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
689
- You should run autoupdate.])dnl
690
- m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
691
- m4trace:/usr/share/aclocal/libtool.m4:3341: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
692
- m4trace:/usr/share/aclocal/libtool.m4:3341: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
693
- You should run autoupdate.])dnl
694
- m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
695
- m4trace:/usr/share/aclocal/libtool.m4:3670: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
696
- AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
697
- [if test -n "$NM"; then
698
- # Let the user override the test.
699
- lt_cv_path_NM=$NM
700
- else
701
- lt_nm_to_check=${ac_tool_prefix}nm
702
- if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
703
- lt_nm_to_check="$lt_nm_to_check nm"
704
- fi
705
- for lt_tmp_nm in $lt_nm_to_check; do
706
- lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
707
- for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
708
- IFS=$lt_save_ifs
709
- test -z "$ac_dir" && ac_dir=.
710
- tmp_nm=$ac_dir/$lt_tmp_nm
711
- if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
712
- # Check to see if the nm accepts a BSD-compat flag.
713
- # Adding the 'sed 1q' prevents false positives on HP-UX, which says:
714
- # nm: unknown option "B" ignored
715
- # Tru64's nm complains that /dev/null is an invalid object file
716
- # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
717
- case $build_os in
718
- mingw*) lt_bad_file=conftest.nm/nofile ;;
719
- *) lt_bad_file=/dev/null ;;
720
- esac
721
- case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
722
- *$lt_bad_file* | *'Invalid file or object type'*)
723
- lt_cv_path_NM="$tmp_nm -B"
724
- break 2
725
- ;;
726
- *)
727
- case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
728
- */dev/null*)
729
- lt_cv_path_NM="$tmp_nm -p"
730
- break 2
731
- ;;
732
- *)
733
- lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
734
- continue # so that we can try to find one that supports BSD flags
735
- ;;
736
- esac
737
- ;;
738
- esac
739
- fi
740
- done
741
- IFS=$lt_save_ifs
742
- done
743
- : ${lt_cv_path_NM=no}
744
- fi])
745
- if test no != "$lt_cv_path_NM"; then
746
- NM=$lt_cv_path_NM
747
- else
748
- # Didn't find any BSD compatible name lister, look for dumpbin.
749
- if test -n "$DUMPBIN"; then :
750
- # Let the user override the test.
751
- else
752
- AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
753
- case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
754
- *COFF*)
755
- DUMPBIN="$DUMPBIN -symbols -headers"
756
- ;;
757
- *)
758
- DUMPBIN=:
759
- ;;
760
- esac
761
- fi
762
- AC_SUBST([DUMPBIN])
763
- if test : != "$DUMPBIN"; then
764
- NM=$DUMPBIN
765
- fi
766
- fi
767
- test -z "$NM" && NM=nm
768
- AC_SUBST([NM])
769
- _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
770
-
771
- AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
772
- [lt_cv_nm_interface="BSD nm"
773
- echo "int some_variable = 0;" > conftest.$ac_ext
774
- (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
775
- (eval "$ac_compile" 2>conftest.err)
776
- cat conftest.err >&AS_MESSAGE_LOG_FD
777
- (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
778
- (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
779
- cat conftest.err >&AS_MESSAGE_LOG_FD
780
- (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
781
- cat conftest.out >&AS_MESSAGE_LOG_FD
782
- if $GREP 'External.*some_variable' conftest.out > /dev/null; then
783
- lt_cv_nm_interface="MS dumpbin"
784
- fi
785
- rm -f conftest*])
786
- ])
787
- m4trace:/usr/share/aclocal/libtool.m4:3765: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
788
- m4trace:/usr/share/aclocal/libtool.m4:3765: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
789
- You should run autoupdate.])dnl
790
- m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
791
- m4trace:/usr/share/aclocal/libtool.m4:3766: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
792
- m4trace:/usr/share/aclocal/libtool.m4:3766: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
793
- You should run autoupdate.])dnl
794
- m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
795
- m4trace:/usr/share/aclocal/libtool.m4:3837: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
796
- test DEF = "`$SED -n dnl
797
- -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace
798
- -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments
799
- -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl
800
- -e q dnl Only consider the first "real" line
801
- $1`" dnl
802
- ])
803
- m4trace:/usr/share/aclocal/libtool.m4:3851: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
804
- LIBM=
805
- case $host in
806
- *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
807
- # These system don't have libm, or don't need it
808
- ;;
809
- *-ncr-sysv4.3*)
810
- AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)
811
- AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
812
- ;;
813
- *)
814
- AC_CHECK_LIB(m, cos, LIBM=-lm)
815
- ;;
816
- esac
817
- AC_SUBST([LIBM])
818
- ])
819
- m4trace:/usr/share/aclocal/libtool.m4:3870: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
820
- m4trace:/usr/share/aclocal/libtool.m4:3870: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
821
- You should run autoupdate.])dnl
822
- m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
823
- m4trace:/usr/share/aclocal/libtool.m4:8140: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
824
- [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
825
- [AC_CHECK_TOOL(GCJ, gcj,)
826
- test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2"
827
- AC_SUBST(GCJFLAGS)])])[]dnl
828
- ])
829
- m4trace:/usr/share/aclocal/libtool.m4:8149: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
830
- m4trace:/usr/share/aclocal/libtool.m4:8149: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
831
- You should run autoupdate.])dnl
832
- m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
833
- m4trace:/usr/share/aclocal/libtool.m4:8156: -1- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,)
834
- ])
835
- m4trace:/usr/share/aclocal/libtool.m4:8163: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
836
- ])
837
- m4trace:/usr/share/aclocal/libtool.m4:8168: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
838
- m4trace:/usr/share/aclocal/libtool.m4:8168: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
839
- You should run autoupdate.])dnl
840
- m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
841
- m4trace:/usr/share/aclocal/libtool.m4:8288: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
842
- m4trace:/usr/share/aclocal/libtool.m4:8288: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
843
- You should run autoupdate.])dnl
844
- m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
845
- m4trace:/usr/share/aclocal/ltargz.m4:12: -1- AC_DEFUN([LT_FUNC_ARGZ], [
846
- AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
847
-
848
- AC_CHECK_TYPES([error_t],
849
- [],
850
- [AC_DEFINE([error_t], [int],
851
- [Define to a type to use for 'error_t' if it is not otherwise available.])
852
- AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
853
- does not typedef error_t.])],
854
- [#if defined(HAVE_ARGZ_H)
855
- # include <argz.h>
856
- #endif])
857
-
858
- LT_ARGZ_H=
859
- AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
860
- argz_next argz_stringify], [], [LT_ARGZ_H=lt__argz.h; AC_LIBOBJ([lt__argz])])
861
-
862
- dnl if have system argz functions, allow forced use of
863
- dnl libltdl-supplied implementation (and default to do so
864
- dnl on "known bad" systems). Could use a runtime check, but
865
- dnl (a) detecting malloc issues is notoriously unreliable
866
- dnl (b) only known system that declares argz functions,
867
- dnl provides them, yet they are broken, is cygwin
868
- dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
869
- dnl So, it's more straightforward simply to special case
870
- dnl this for known bad systems.
871
- AS_IF([test -z "$LT_ARGZ_H"],
872
- [AC_CACHE_CHECK(
873
- [if argz actually works],
874
- [lt_cv_sys_argz_works],
875
- [[case $host_os in #(
876
- *cygwin*)
877
- lt_cv_sys_argz_works=no
878
- if test no != "$cross_compiling"; then
879
- lt_cv_sys_argz_works="guessing no"
880
- else
881
- lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
882
- save_IFS=$IFS
883
- IFS=-.
884
- set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
885
- IFS=$save_IFS
886
- lt_os_major=${2-0}
887
- lt_os_minor=${3-0}
888
- lt_os_micro=${4-0}
889
- if test 1 -lt "$lt_os_major" \
890
- || { test 1 -eq "$lt_os_major" \
891
- && { test 5 -lt "$lt_os_minor" \
892
- || { test 5 -eq "$lt_os_minor" \
893
- && test 24 -lt "$lt_os_micro"; }; }; }; then
894
- lt_cv_sys_argz_works=yes
895
- fi
896
- fi
897
- ;; #(
898
- *) lt_cv_sys_argz_works=yes ;;
899
- esac]])
900
- AS_IF([test yes = "$lt_cv_sys_argz_works"],
901
- [AC_DEFINE([HAVE_WORKING_ARGZ], 1,
902
- [This value is set to 1 to indicate that the system argz facility works])],
903
- [LT_ARGZ_H=lt__argz.h
904
- AC_LIBOBJ([lt__argz])])])
905
-
906
- AC_SUBST([LT_ARGZ_H])
907
- ])
908
- m4trace:/usr/share/aclocal/ltdl.m4:16: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
909
- _$0($*)
910
- ])
911
- m4trace:/usr/share/aclocal/ltdl.m4:68: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
912
- dnl Although the argument is deprecated and no longer documented,
913
- dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
914
- dnl here make sure it is the same as any other declaration of libltdl's
915
- dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
916
- dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
917
- m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
918
- _$0()
919
- ])
920
- m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
921
- _LTDL_CONVENIENCE])
922
- m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
923
- You should run autoupdate.])dnl
924
- _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
925
- _LTDL_CONVENIENCE])
926
- m4trace:/usr/share/aclocal/ltdl.m4:124: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
927
- dnl Although the argument is deprecated and no longer documented,
928
- dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
929
- dnl here make sure it is the same as any other declaration of libltdl's
930
- dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
931
- dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
932
- m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
933
- _$0()
934
- ])
935
- m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
936
- _LTDL_INSTALLABLE])
937
- m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
938
- You should run autoupdate.])dnl
939
- _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
940
- _LTDL_INSTALLABLE])
941
- m4trace:/usr/share/aclocal/ltdl.m4:213: -1- AC_DEFUN([_LT_LIBOBJ], [
942
- m4_pattern_allow([^_LT_LIBOBJS$])
943
- _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
944
- ])
945
- m4trace:/usr/share/aclocal/ltdl.m4:226: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
946
- _LT_SET_OPTIONS([$0], [$1])
947
-
948
- dnl We need to keep our own list of libobjs separate from our parent project,
949
- dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
950
- dnl we look for our own LIBOBJs.
951
- m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
952
- m4_pushdef([AC_LIBSOURCES])
953
-
954
- dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
955
- m4_if(_LTDL_MODE, [],
956
- [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
957
- m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
958
- [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
959
-
960
- AC_ARG_WITH([included_ltdl],
961
- [AS_HELP_STRING([--with-included-ltdl],
962
- [use the GNU ltdl sources included here])])
963
-
964
- if test yes != "$with_included_ltdl"; then
965
- # We are not being forced to use the included libltdl sources, so
966
- # decide whether there is a useful installed version we can use.
967
- AC_CHECK_HEADER([ltdl.h],
968
- [AC_CHECK_DECL([lt_dlinterface_register],
969
- [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
970
- [with_included_ltdl=no],
971
- [with_included_ltdl=yes])],
972
- [with_included_ltdl=yes],
973
- [AC_INCLUDES_DEFAULT
974
- #include <ltdl.h>])],
975
- [with_included_ltdl=yes],
976
- [AC_INCLUDES_DEFAULT]
977
- )
978
- fi
979
-
980
- dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
981
- dnl was called yet, then for old times' sake, we assume libltdl is in an
982
- dnl eponymous directory:
983
- AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
984
-
985
- AC_ARG_WITH([ltdl_include],
986
- [AS_HELP_STRING([--with-ltdl-include=DIR],
987
- [use the ltdl headers installed in DIR])])
988
-
989
- if test -n "$with_ltdl_include"; then
990
- if test -f "$with_ltdl_include/ltdl.h"; then :
991
- else
992
- AC_MSG_ERROR([invalid ltdl include directory: '$with_ltdl_include'])
993
- fi
994
- else
995
- with_ltdl_include=no
996
- fi
997
-
998
- AC_ARG_WITH([ltdl_lib],
999
- [AS_HELP_STRING([--with-ltdl-lib=DIR],
1000
- [use the libltdl.la installed in DIR])])
1001
-
1002
- if test -n "$with_ltdl_lib"; then
1003
- if test -f "$with_ltdl_lib/libltdl.la"; then :
1004
- else
1005
- AC_MSG_ERROR([invalid ltdl library directory: '$with_ltdl_lib'])
1006
- fi
1007
- else
1008
- with_ltdl_lib=no
1009
- fi
1010
-
1011
- case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
1012
- ,yes,no,no,)
1013
- m4_case(m4_default(_LTDL_TYPE, [convenience]),
1014
- [convenience], [_LTDL_CONVENIENCE],
1015
- [installable], [_LTDL_INSTALLABLE],
1016
- [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
1017
- ;;
1018
- ,no,no,no,)
1019
- # If the included ltdl is not to be used, then use the
1020
- # preinstalled libltdl we found.
1021
- AC_DEFINE([HAVE_LTDL], [1],
1022
- [Define this if a modern libltdl is already installed])
1023
- LIBLTDL=-lltdl
1024
- LTDLDEPS=
1025
- LTDLINCL=
1026
- ;;
1027
- ,no*,no,*)
1028
- AC_MSG_ERROR(['--with-ltdl-include' and '--with-ltdl-lib' options must be used together])
1029
- ;;
1030
- *) with_included_ltdl=no
1031
- LIBLTDL="-L$with_ltdl_lib -lltdl"
1032
- LTDLDEPS=
1033
- LTDLINCL=-I$with_ltdl_include
1034
- ;;
1035
- esac
1036
- INCLTDL=$LTDLINCL
1037
-
1038
- # Report our decision...
1039
- AC_MSG_CHECKING([where to find libltdl headers])
1040
- AC_MSG_RESULT([$LTDLINCL])
1041
- AC_MSG_CHECKING([where to find libltdl library])
1042
- AC_MSG_RESULT([$LIBLTDL])
1043
-
1044
- _LTDL_SETUP
1045
-
1046
- dnl restore autoconf definition.
1047
- m4_popdef([AC_LIBOBJ])
1048
- m4_popdef([AC_LIBSOURCES])
1049
-
1050
- AC_CONFIG_COMMANDS_PRE([
1051
- _ltdl_libobjs=
1052
- _ltdl_ltlibobjs=
1053
- if test -n "$_LT_LIBOBJS"; then
1054
- # Remove the extension.
1055
- _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
1056
- for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
1057
- _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
1058
- _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
1059
- done
1060
- fi
1061
- AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
1062
- AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
1063
- ])
1064
-
1065
- # Only expand once:
1066
- m4_define([LTDL_INIT])
1067
- ])
1068
- m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
1069
- m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
1070
- You should run autoupdate.])dnl
1071
- LTDL_INIT($@)])
1072
- m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
1073
- m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
1074
- You should run autoupdate.])dnl
1075
- LTDL_INIT($@)])
1076
- m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
1077
- m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
1078
- You should run autoupdate.])dnl
1079
- LTDL_INIT($@)])
1080
- m4trace:/usr/share/aclocal/ltdl.m4:367: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
1081
- AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
1082
- AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
1083
- AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
1084
- AC_REQUIRE([LT_LIB_DLLOAD])dnl
1085
- AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
1086
- AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
1087
- AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
1088
- AC_REQUIRE([LT_FUNC_ARGZ])dnl
1089
-
1090
- m4_require([_LT_CHECK_OBJDIR])dnl
1091
- m4_require([_LT_HEADER_DLFCN])dnl
1092
- m4_require([_LT_CHECK_DLPREOPEN])dnl
1093
- m4_require([_LT_DECL_SED])dnl
1094
-
1095
- dnl Don't require this, or it will be expanded earlier than the code
1096
- dnl that sets the variables it relies on:
1097
- _LT_ENABLE_INSTALL
1098
-
1099
- dnl _LTDL_MODE specific code must be called at least once:
1100
- _LTDL_MODE_DISPATCH
1101
-
1102
- # In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
1103
- # the user used. This is so that ltdl.h can pick up the parent projects
1104
- # config.h file, The first file in AC_CONFIG_HEADERS must contain the
1105
- # definitions required by ltdl.c.
1106
- # FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
1107
- AC_CONFIG_COMMANDS_PRE([dnl
1108
- m4_pattern_allow([^LT_CONFIG_H$])dnl
1109
- m4_ifset([AH_HEADER],
1110
- [LT_CONFIG_H=AH_HEADER],
1111
- [m4_ifset([AC_LIST_HEADERS],
1112
- [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's|^[[ ]]*||;s|[[ :]].*$||'`],
1113
- [])])])
1114
- AC_SUBST([LT_CONFIG_H])
1115
-
1116
- AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
1117
- [], [], [AC_INCLUDES_DEFAULT])
1118
-
1119
- AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
1120
- AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
1121
-
1122
- m4_pattern_allow([LT_LIBEXT])dnl
1123
- AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
1124
-
1125
- name=
1126
- eval "lt_libprefix=\"$libname_spec\""
1127
- m4_pattern_allow([LT_LIBPREFIX])dnl
1128
- AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
1129
-
1130
- name=ltdl
1131
- eval "LTDLOPEN=\"$libname_spec\""
1132
- AC_SUBST([LTDLOPEN])
1133
- ])
1134
- m4trace:/usr/share/aclocal/ltdl.m4:443: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1135
- AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
1136
- [lt_cv_sys_dlopen_deplibs],
1137
- [# PORTME does your system automatically load deplibs for dlopen?
1138
- # or its logical equivalent (e.g. shl_load for HP-UX < 11)
1139
- # For now, we just catch OSes we know something about -- in the
1140
- # future, we'll try test this programmatically.
1141
- lt_cv_sys_dlopen_deplibs=unknown
1142
- case $host_os in
1143
- aix3*|aix4.1.*|aix4.2.*)
1144
- # Unknown whether this is true for these versions of AIX, but
1145
- # we want this 'case' here to explicitly catch those versions.
1146
- lt_cv_sys_dlopen_deplibs=unknown
1147
- ;;
1148
- aix[[4-9]]*)
1149
- lt_cv_sys_dlopen_deplibs=yes
1150
- ;;
1151
- amigaos*)
1152
- case $host_cpu in
1153
- powerpc)
1154
- lt_cv_sys_dlopen_deplibs=no
1155
- ;;
1156
- esac
1157
- ;;
1158
- bitrig*)
1159
- lt_cv_sys_dlopen_deplibs=yes
1160
- ;;
1161
- darwin*)
1162
- # Assuming the user has installed a libdl from somewhere, this is true
1163
- # If you are looking for one http://www.opendarwin.org/projects/dlcompat
1164
- lt_cv_sys_dlopen_deplibs=yes
1165
- ;;
1166
- freebsd* | dragonfly*)
1167
- lt_cv_sys_dlopen_deplibs=yes
1168
- ;;
1169
- gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
1170
- # GNU and its variants, using gnu ld.so (Glibc)
1171
- lt_cv_sys_dlopen_deplibs=yes
1172
- ;;
1173
- hpux10*|hpux11*)
1174
- lt_cv_sys_dlopen_deplibs=yes
1175
- ;;
1176
- interix*)
1177
- lt_cv_sys_dlopen_deplibs=yes
1178
- ;;
1179
- irix[[12345]]*|irix6.[[01]]*)
1180
- # Catch all versions of IRIX before 6.2, and indicate that we don't
1181
- # know how it worked for any of those versions.
1182
- lt_cv_sys_dlopen_deplibs=unknown
1183
- ;;
1184
- irix*)
1185
- # The case above catches anything before 6.2, and it's known that
1186
- # at 6.2 and later dlopen does load deplibs.
1187
- lt_cv_sys_dlopen_deplibs=yes
1188
- ;;
1189
- netbsd* | netbsdelf*-gnu)
1190
- lt_cv_sys_dlopen_deplibs=yes
1191
- ;;
1192
- openbsd*)
1193
- lt_cv_sys_dlopen_deplibs=yes
1194
- ;;
1195
- osf[[1234]]*)
1196
- # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
1197
- # it did *not* use an RPATH in a shared library to find objects the
1198
- # library depends on, so we explicitly say 'no'.
1199
- lt_cv_sys_dlopen_deplibs=no
1200
- ;;
1201
- osf5.0|osf5.0a|osf5.1)
1202
- # dlopen *does* load deplibs and with the right loader patch applied
1203
- # it even uses RPATH in a shared library to search for shared objects
1204
- # that the library depends on, but there's no easy way to know if that
1205
- # patch is installed. Since this is the case, all we can really
1206
- # say is unknown -- it depends on the patch being installed. If
1207
- # it is, this changes to 'yes'. Without it, it would be 'no'.
1208
- lt_cv_sys_dlopen_deplibs=unknown
1209
- ;;
1210
- osf*)
1211
- # the two cases above should catch all versions of osf <= 5.1. Read
1212
- # the comments above for what we know about them.
1213
- # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
1214
- # is used to find them so we can finally say 'yes'.
1215
- lt_cv_sys_dlopen_deplibs=yes
1216
- ;;
1217
- qnx*)
1218
- lt_cv_sys_dlopen_deplibs=yes
1219
- ;;
1220
- solaris*)
1221
- lt_cv_sys_dlopen_deplibs=yes
1222
- ;;
1223
- sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
1224
- libltdl_cv_sys_dlopen_deplibs=yes
1225
- ;;
1226
- esac
1227
- ])
1228
- if test yes != "$lt_cv_sys_dlopen_deplibs"; then
1229
- AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
1230
- [Define if the OS needs help to load dependent libraries for dlopen().])
1231
- fi
1232
- ])
1233
- m4trace:/usr/share/aclocal/ltdl.m4:545: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1234
- m4trace:/usr/share/aclocal/ltdl.m4:545: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
1235
- You should run autoupdate.])dnl
1236
- m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1237
- m4trace:/usr/share/aclocal/ltdl.m4:552: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1238
- AC_CACHE_CHECK([what extension is used for runtime loadable modules],
1239
- [libltdl_cv_shlibext],
1240
- [
1241
- module=yes
1242
- eval libltdl_cv_shlibext=$shrext_cmds
1243
- module=no
1244
- eval libltdl_cv_shrext=$shrext_cmds
1245
- ])
1246
- if test -n "$libltdl_cv_shlibext"; then
1247
- m4_pattern_allow([LT_MODULE_EXT])dnl
1248
- AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
1249
- [Define to the extension used for runtime loadable modules, say, ".so".])
1250
- fi
1251
- if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then
1252
- m4_pattern_allow([LT_SHARED_EXT])dnl
1253
- AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"],
1254
- [Define to the shared library suffix, say, ".dylib".])
1255
- fi
1256
- if test -n "$shared_archive_member_spec"; then
1257
- m4_pattern_allow([LT_SHARED_LIB_MEMBER])dnl
1258
- AC_DEFINE_UNQUOTED([LT_SHARED_LIB_MEMBER], ["($shared_archive_member_spec.o)"],
1259
- [Define to the shared archive member specification, say "(shr.o)".])
1260
- fi
1261
- ])
1262
- m4trace:/usr/share/aclocal/ltdl.m4:580: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1263
- m4trace:/usr/share/aclocal/ltdl.m4:580: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
1264
- You should run autoupdate.])dnl
1265
- m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1266
- m4trace:/usr/share/aclocal/ltdl.m4:587: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1267
- AC_CACHE_CHECK([what variable specifies run-time module search path],
1268
- [lt_cv_module_path_var], [lt_cv_module_path_var=$shlibpath_var])
1269
- if test -n "$lt_cv_module_path_var"; then
1270
- m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
1271
- AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
1272
- [Define to the name of the environment variable that determines the run-time module search path.])
1273
- fi
1274
- ])
1275
- m4trace:/usr/share/aclocal/ltdl.m4:599: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1276
- m4trace:/usr/share/aclocal/ltdl.m4:599: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
1277
- You should run autoupdate.])dnl
1278
- m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1279
- m4trace:/usr/share/aclocal/ltdl.m4:606: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1280
- AC_CACHE_CHECK([for the default library search path],
1281
- [lt_cv_sys_dlsearch_path],
1282
- [lt_cv_sys_dlsearch_path=$sys_lib_dlsearch_path_spec])
1283
- if test -n "$lt_cv_sys_dlsearch_path"; then
1284
- sys_dlsearch_path=
1285
- for dir in $lt_cv_sys_dlsearch_path; do
1286
- if test -z "$sys_dlsearch_path"; then
1287
- sys_dlsearch_path=$dir
1288
- else
1289
- sys_dlsearch_path=$sys_dlsearch_path$PATH_SEPARATOR$dir
1290
- fi
1291
- done
1292
- m4_pattern_allow([LT_DLSEARCH_PATH])dnl
1293
- AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
1294
- [Define to the system default library search path.])
1295
- fi
1296
- ])
1297
- m4trace:/usr/share/aclocal/ltdl.m4:627: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1298
- m4trace:/usr/share/aclocal/ltdl.m4:627: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
1299
- You should run autoupdate.])dnl
1300
- m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1301
- m4trace:/usr/share/aclocal/ltdl.m4:653: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
1302
- LT_DLLOADERS=
1303
- AC_SUBST([LT_DLLOADERS])
1304
-
1305
- AC_LANG_PUSH([C])
1306
- lt_dlload_save_LIBS=$LIBS
1307
-
1308
- LIBADD_DLOPEN=
1309
- AC_SEARCH_LIBS([dlopen], [dl],
1310
- [AC_DEFINE([HAVE_LIBDL], [1],
1311
- [Define if you have the libdl library or equivalent.])
1312
- if test "$ac_cv_search_dlopen" != "none required"; then
1313
- LIBADD_DLOPEN=-ldl
1314
- fi
1315
- libltdl_cv_lib_dl_dlopen=yes
1316
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1317
- [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
1318
- # include <dlfcn.h>
1319
- #endif
1320
- ]], [[dlopen(0, 0);]])],
1321
- [AC_DEFINE([HAVE_LIBDL], [1],
1322
- [Define if you have the libdl library or equivalent.])
1323
- libltdl_cv_func_dlopen=yes
1324
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1325
- [AC_CHECK_LIB([svld], [dlopen],
1326
- [AC_DEFINE([HAVE_LIBDL], [1],
1327
- [Define if you have the libdl library or equivalent.])
1328
- LIBADD_DLOPEN=-lsvld libltdl_cv_func_dlopen=yes
1329
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
1330
- if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"
1331
- then
1332
- lt_save_LIBS=$LIBS
1333
- LIBS="$LIBS $LIBADD_DLOPEN"
1334
- AC_CHECK_FUNCS([dlerror])
1335
- LIBS=$lt_save_LIBS
1336
- fi
1337
- AC_SUBST([LIBADD_DLOPEN])
1338
-
1339
- LIBADD_SHL_LOAD=
1340
- AC_CHECK_FUNC([shl_load],
1341
- [AC_DEFINE([HAVE_SHL_LOAD], [1],
1342
- [Define if you have the shl_load function.])
1343
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
1344
- [AC_CHECK_LIB([dld], [shl_load],
1345
- [AC_DEFINE([HAVE_SHL_LOAD], [1],
1346
- [Define if you have the shl_load function.])
1347
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
1348
- LIBADD_SHL_LOAD=-ldld])])
1349
- AC_SUBST([LIBADD_SHL_LOAD])
1350
-
1351
- case $host_os in
1352
- darwin[[1567]].*)
1353
- # We only want this for pre-Mac OS X 10.4.
1354
- AC_CHECK_FUNC([_dyld_func_lookup],
1355
- [AC_DEFINE([HAVE_DYLD], [1],
1356
- [Define if you have the _dyld_func_lookup function.])
1357
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
1358
- ;;
1359
- beos*)
1360
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
1361
- ;;
1362
- cygwin* | mingw* | pw32*)
1363
- AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
1364
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
1365
- ;;
1366
- esac
1367
-
1368
- AC_CHECK_LIB([dld], [dld_link],
1369
- [AC_DEFINE([HAVE_DLD], [1],
1370
- [Define if you have the GNU dld library.])
1371
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
1372
- AC_SUBST([LIBADD_DLD_LINK])
1373
-
1374
- m4_pattern_allow([^LT_DLPREOPEN$])
1375
- LT_DLPREOPEN=
1376
- if test -n "$LT_DLLOADERS"
1377
- then
1378
- for lt_loader in $LT_DLLOADERS; do
1379
- LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
1380
- done
1381
- AC_DEFINE([HAVE_LIBDLLOADER], [1],
1382
- [Define if libdlloader will be built on this platform])
1383
- fi
1384
- AC_SUBST([LT_DLPREOPEN])
1385
-
1386
- dnl This isn't used anymore, but set it for backwards compatibility
1387
- LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
1388
- AC_SUBST([LIBADD_DL])
1389
-
1390
- LIBS=$lt_dlload_save_LIBS
1391
- AC_LANG_POP
1392
- ])
1393
- m4trace:/usr/share/aclocal/ltdl.m4:748: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1394
- m4trace:/usr/share/aclocal/ltdl.m4:748: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
1395
- You should run autoupdate.])dnl
1396
- m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1397
- m4trace:/usr/share/aclocal/ltdl.m4:756: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
1398
- AC_CACHE_CHECK([for _ prefix in compiled symbols],
1399
- [lt_cv_sys_symbol_underscore],
1400
- [lt_cv_sys_symbol_underscore=no
1401
- cat > conftest.$ac_ext <<_LT_EOF
1402
- void nm_test_func(){}
1403
- int main(){nm_test_func;return 0;}
1404
- _LT_EOF
1405
- if AC_TRY_EVAL(ac_compile); then
1406
- # Now try to grab the symbols.
1407
- ac_nlist=conftest.nm
1408
- if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
1409
- # See whether the symbols have a leading underscore.
1410
- if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
1411
- lt_cv_sys_symbol_underscore=yes
1412
- else
1413
- if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
1414
- :
1415
- else
1416
- echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
1417
- fi
1418
- fi
1419
- else
1420
- echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
1421
- fi
1422
- else
1423
- echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
1424
- cat conftest.c >&AS_MESSAGE_LOG_FD
1425
- fi
1426
- rm -rf conftest*
1427
- ])
1428
- sys_symbol_underscore=$lt_cv_sys_symbol_underscore
1429
- AC_SUBST([sys_symbol_underscore])
1430
- ])
1431
- m4trace:/usr/share/aclocal/ltdl.m4:793: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1432
- m4trace:/usr/share/aclocal/ltdl.m4:793: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
1433
- You should run autoupdate.])dnl
1434
- m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1435
- m4trace:/usr/share/aclocal/ltdl.m4:800: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([_LT_COMPILER_PIC])dnl for lt_prog_compiler_wl
1436
- AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl for lt_cv_sys_symbol_underscore
1437
- AC_REQUIRE([LT_SYS_MODULE_EXT])dnl for libltdl_cv_shlibext
1438
- if test yes = "$lt_cv_sys_symbol_underscore"; then
1439
- if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"; then
1440
- AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
1441
- [libltdl_cv_need_uscore],
1442
- [libltdl_cv_need_uscore=unknown
1443
- dlsym_uscore_save_LIBS=$LIBS
1444
- LIBS="$LIBS $LIBADD_DLOPEN"
1445
- libname=conftmod # stay within 8.3 filename limits!
1446
- cat >$libname.$ac_ext <<_LT_EOF
1447
- [#line $LINENO "configure"
1448
- #include "confdefs.h"
1449
- /* When -fvisibility=hidden is used, assume the code has been annotated
1450
- correspondingly for the symbols needed. */
1451
- #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
1452
- int fnord () __attribute__((visibility("default")));
1453
- #endif
1454
- int fnord () { return 42; }]
1455
- _LT_EOF
1456
-
1457
- # ltfn_module_cmds module_cmds
1458
- # Execute tilde-delimited MODULE_CMDS with environment primed for
1459
- # $module_cmds or $archive_cmds type content.
1460
- ltfn_module_cmds ()
1461
- {( # subshell avoids polluting parent global environment
1462
- module_cmds_save_ifs=$IFS; IFS='~'
1463
- for cmd in @S|@1; do
1464
- IFS=$module_cmds_save_ifs
1465
- libobjs=$libname.$ac_objext; lib=$libname$libltdl_cv_shlibext
1466
- rpath=/not-exists; soname=$libname$libltdl_cv_shlibext; output_objdir=.
1467
- major=; versuffix=; verstring=; deplibs=
1468
- ECHO=echo; wl=$lt_prog_compiler_wl; allow_undefined_flag=
1469
- eval $cmd
1470
- done
1471
- IFS=$module_cmds_save_ifs
1472
- )}
1473
-
1474
- # Compile a loadable module using libtool macro expansion results.
1475
- $CC $pic_flag -c $libname.$ac_ext
1476
- ltfn_module_cmds "${module_cmds:-$archive_cmds}"
1477
-
1478
- # Try to fetch fnord with dlsym().
1479
- libltdl_dlunknown=0; libltdl_dlnouscore=1; libltdl_dluscore=2
1480
- cat >conftest.$ac_ext <<_LT_EOF
1481
- [#line $LINENO "configure"
1482
- #include "confdefs.h"
1483
- #if HAVE_DLFCN_H
1484
- #include <dlfcn.h>
1485
- #endif
1486
- #include <stdio.h>
1487
- #ifndef RTLD_GLOBAL
1488
- # ifdef DL_GLOBAL
1489
- # define RTLD_GLOBAL DL_GLOBAL
1490
- # else
1491
- # define RTLD_GLOBAL 0
1492
- # endif
1493
- #endif
1494
- #ifndef RTLD_NOW
1495
- # ifdef DL_NOW
1496
- # define RTLD_NOW DL_NOW
1497
- # else
1498
- # define RTLD_NOW 0
1499
- # endif
1500
- #endif
1501
- int main () {
1502
- void *handle = dlopen ("`pwd`/$libname$libltdl_cv_shlibext", RTLD_GLOBAL|RTLD_NOW);
1503
- int status = $libltdl_dlunknown;
1504
- if (handle) {
1505
- if (dlsym (handle, "fnord"))
1506
- status = $libltdl_dlnouscore;
1507
- else {
1508
- if (dlsym (handle, "_fnord"))
1509
- status = $libltdl_dluscore;
1510
- else
1511
- puts (dlerror ());
1512
- }
1513
- dlclose (handle);
1514
- } else
1515
- puts (dlerror ());
1516
- return status;
1517
- }]
1518
- _LT_EOF
1519
- if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then
1520
- (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
1521
- libltdl_status=$?
1522
- case x$libltdl_status in
1523
- x$libltdl_dlnouscore) libltdl_cv_need_uscore=no ;;
1524
- x$libltdl_dluscore) libltdl_cv_need_uscore=yes ;;
1525
- x*) libltdl_cv_need_uscore=unknown ;;
1526
- esac
1527
- fi
1528
- rm -rf conftest* $libname*
1529
- LIBS=$dlsym_uscore_save_LIBS
1530
- ])
1531
- fi
1532
- fi
1533
-
1534
- if test yes = "$libltdl_cv_need_uscore"; then
1535
- AC_DEFINE([NEED_USCORE], [1],
1536
- [Define if dlsym() requires a leading underscore in symbol names.])
1537
- fi
1538
- ])
1539
- m4trace:/usr/share/aclocal/ltdl.m4:907: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1540
- m4trace:/usr/share/aclocal/ltdl.m4:907: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
1541
- You should run autoupdate.])dnl
1542
- m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1543
- m4trace:/usr/share/aclocal/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
1544
- m4trace:/usr/share/aclocal/ltoptions.m4:113: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
1545
- AC_DIAGNOSE([obsolete],
1546
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1547
- put the 'dlopen' option into LT_INIT's first parameter.])
1548
- ])
1549
- m4trace:/usr/share/aclocal/ltoptions.m4:113: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
1550
- You should run autoupdate.])dnl
1551
- _LT_SET_OPTION([LT_INIT], [dlopen])
1552
- AC_DIAGNOSE([obsolete],
1553
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1554
- put the 'dlopen' option into LT_INIT's first parameter.])
1555
- ])
1556
- m4trace:/usr/share/aclocal/ltoptions.m4:148: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1557
- _LT_SET_OPTION([LT_INIT], [win32-dll])
1558
- AC_DIAGNOSE([obsolete],
1559
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1560
- put the 'win32-dll' option into LT_INIT's first parameter.])
1561
- ])
1562
- m4trace:/usr/share/aclocal/ltoptions.m4:148: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
1563
- You should run autoupdate.])dnl
1564
- AC_REQUIRE([AC_CANONICAL_HOST])dnl
1565
- _LT_SET_OPTION([LT_INIT], [win32-dll])
1566
- AC_DIAGNOSE([obsolete],
1567
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1568
- put the 'win32-dll' option into LT_INIT's first parameter.])
1569
- ])
1570
- m4trace:/usr/share/aclocal/ltoptions.m4:197: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
1571
- ])
1572
- m4trace:/usr/share/aclocal/ltoptions.m4:201: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
1573
- ])
1574
- m4trace:/usr/share/aclocal/ltoptions.m4:205: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
1575
- m4trace:/usr/share/aclocal/ltoptions.m4:205: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
1576
- You should run autoupdate.])dnl
1577
- AC_ENABLE_SHARED($@)])
1578
- m4trace:/usr/share/aclocal/ltoptions.m4:206: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
1579
- m4trace:/usr/share/aclocal/ltoptions.m4:206: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
1580
- You should run autoupdate.])dnl
1581
- AC_DISABLE_SHARED($@)])
1582
- m4trace:/usr/share/aclocal/ltoptions.m4:251: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
1583
- ])
1584
- m4trace:/usr/share/aclocal/ltoptions.m4:255: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
1585
- ])
1586
- m4trace:/usr/share/aclocal/ltoptions.m4:259: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
1587
- m4trace:/usr/share/aclocal/ltoptions.m4:259: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
1588
- You should run autoupdate.])dnl
1589
- AC_ENABLE_STATIC($@)])
1590
- m4trace:/usr/share/aclocal/ltoptions.m4:260: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
1591
- m4trace:/usr/share/aclocal/ltoptions.m4:260: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
1592
- You should run autoupdate.])dnl
1593
- AC_DISABLE_STATIC($@)])
1594
- m4trace:/usr/share/aclocal/ltoptions.m4:305: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1595
- AC_DIAGNOSE([obsolete],
1596
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1597
- the 'fast-install' option into LT_INIT's first parameter.])
1598
- ])
1599
- m4trace:/usr/share/aclocal/ltoptions.m4:305: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
1600
- You should run autoupdate.])dnl
1601
- _LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1602
- AC_DIAGNOSE([obsolete],
1603
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1604
- the 'fast-install' option into LT_INIT's first parameter.])
1605
- ])
1606
- m4trace:/usr/share/aclocal/ltoptions.m4:312: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
1607
- AC_DIAGNOSE([obsolete],
1608
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1609
- the 'disable-fast-install' option into LT_INIT's first parameter.])
1610
- ])
1611
- m4trace:/usr/share/aclocal/ltoptions.m4:312: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
1612
- You should run autoupdate.])dnl
1613
- _LT_SET_OPTION([LT_INIT], [disable-fast-install])
1614
- AC_DIAGNOSE([obsolete],
1615
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1616
- the 'disable-fast-install' option into LT_INIT's first parameter.])
1617
- ])
1618
- m4trace:/usr/share/aclocal/ltoptions.m4:411: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
1619
- AC_DIAGNOSE([obsolete],
1620
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1621
- put the 'pic-only' option into LT_INIT's first parameter.])
1622
- ])
1623
- m4trace:/usr/share/aclocal/ltoptions.m4:411: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
1624
- You should run autoupdate.])dnl
1625
- _LT_SET_OPTION([LT_INIT], [pic-only])
1626
- AC_DIAGNOSE([obsolete],
1627
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1628
- put the 'pic-only' option into LT_INIT's first parameter.])
1629
- ])
1630
- m4trace:/usr/share/aclocal/ltsugar.m4:14: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
1631
- m4trace:/usr/share/aclocal/ltversion.m4:18: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.6'
1632
- macro_revision='2.4.6'
1633
- _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
1634
- _LT_DECL(, macro_revision, 0)
1635
- ])
1636
- m4trace:/usr/share/aclocal/lt~obsolete.m4:37: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
1637
- m4trace:/usr/share/aclocal/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
1638
- m4trace:/usr/share/aclocal/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
1639
- m4trace:/usr/share/aclocal/lt~obsolete.m4:43: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
1640
- m4trace:/usr/share/aclocal/lt~obsolete.m4:45: -1- AC_DEFUN([_LT_AC_TAGVAR])
1641
- m4trace:/usr/share/aclocal/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
1642
- m4trace:/usr/share/aclocal/lt~obsolete.m4:47: -1- AC_DEFUN([AC_LTDL_PREOPEN])
1643
- m4trace:/usr/share/aclocal/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
1644
- m4trace:/usr/share/aclocal/lt~obsolete.m4:49: -1- AC_DEFUN([_LT_AC_LOCK])
1645
- m4trace:/usr/share/aclocal/lt~obsolete.m4:50: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
1646
- m4trace:/usr/share/aclocal/lt~obsolete.m4:51: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
1647
- m4trace:/usr/share/aclocal/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
1648
- m4trace:/usr/share/aclocal/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
1649
- m4trace:/usr/share/aclocal/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
1650
- m4trace:/usr/share/aclocal/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LTDL_OBJDIR])
1651
- m4trace:/usr/share/aclocal/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
1652
- m4trace:/usr/share/aclocal/lt~obsolete.m4:57: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
1653
- m4trace:/usr/share/aclocal/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PATH_MAGIC])
1654
- m4trace:/usr/share/aclocal/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_GNU])
1655
- m4trace:/usr/share/aclocal/lt~obsolete.m4:60: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
1656
- m4trace:/usr/share/aclocal/lt~obsolete.m4:61: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
1657
- m4trace:/usr/share/aclocal/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
1658
- m4trace:/usr/share/aclocal/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
1659
- m4trace:/usr/share/aclocal/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
1660
- m4trace:/usr/share/aclocal/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
1661
- m4trace:/usr/share/aclocal/lt~obsolete.m4:66: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
1662
- m4trace:/usr/share/aclocal/lt~obsolete.m4:67: -1- AC_DEFUN([LT_AC_PROG_EGREP])
1663
- m4trace:/usr/share/aclocal/lt~obsolete.m4:72: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
1664
- m4trace:/usr/share/aclocal/lt~obsolete.m4:73: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
1665
- m4trace:/usr/share/aclocal/lt~obsolete.m4:74: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
1666
- m4trace:/usr/share/aclocal/lt~obsolete.m4:75: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
1667
- m4trace:/usr/share/aclocal/lt~obsolete.m4:76: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
1668
- m4trace:/usr/share/aclocal/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_CXX])
1669
- m4trace:/usr/share/aclocal/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_F77])
1670
- m4trace:/usr/share/aclocal/lt~obsolete.m4:80: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
1671
- m4trace:/usr/share/aclocal/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
1672
- m4trace:/usr/share/aclocal/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
1673
- m4trace:/usr/share/aclocal/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
1674
- m4trace:/usr/share/aclocal/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
1675
- m4trace:/usr/share/aclocal/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
1676
- m4trace:/usr/share/aclocal/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
1677
- m4trace:/usr/share/aclocal/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
1678
- m4trace:/usr/share/aclocal/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
1679
- m4trace:/usr/share/aclocal/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
1680
- m4trace:/usr/share/aclocal/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
1681
- m4trace:/usr/share/aclocal/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
1682
- m4trace:/usr/share/aclocal/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
1683
- m4trace:/usr/share/aclocal/lt~obsolete.m4:94: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
1684
- m4trace:/usr/share/aclocal/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_F77])
1685
- m4trace:/usr/share/aclocal/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_FC])
1686
- m4trace:/usr/share/aclocal/lt~obsolete.m4:99: -1- AC_DEFUN([_LT_PROG_CXX])
1687
- m4trace:/usr/share/aclocal-1.15/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
1688
- dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
1689
- dnl require some minimum version. Point them to the right macro.
1690
- m4_if([$1], [1.15], [],
1691
- [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
1692
- ])
1693
- m4trace:/usr/share/aclocal-1.15/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl
1694
- m4_ifndef([AC_AUTOCONF_VERSION],
1695
- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
1696
- _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
1697
- m4trace:/usr/share/aclocal-1.15/as.m4:11: -1- AC_DEFUN([AM_PROG_AS], [# By default we simply use the C compiler to build assembly code.
1698
- AC_REQUIRE([AC_PROG_CC])
1699
- test "${CCAS+set}" = set || CCAS=$CC
1700
- test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
1701
- AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)])
1702
- AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)])
1703
- _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl
1704
- ])
1705
- m4trace:/usr/share/aclocal-1.15/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
1706
- # Expand $ac_aux_dir to an absolute path.
1707
- am_aux_dir=`cd "$ac_aux_dir" && pwd`
1708
- ])
1709
- m4trace:/usr/share/aclocal-1.15/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
1710
- m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
1711
- [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
1712
- AC_SUBST([$1_TRUE])dnl
1713
- AC_SUBST([$1_FALSE])dnl
1714
- _AM_SUBST_NOTMAKE([$1_TRUE])dnl
1715
- _AM_SUBST_NOTMAKE([$1_FALSE])dnl
1716
- m4_define([_AM_COND_VALUE_$1], [$2])dnl
1717
- if $2; then
1718
- $1_TRUE=
1719
- $1_FALSE='#'
1720
- else
1721
- $1_TRUE='#'
1722
- $1_FALSE=
1723
- fi
1724
- AC_CONFIG_COMMANDS_PRE(
1725
- [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
1726
- AC_MSG_ERROR([[conditional "$1" was never defined.
1727
- Usually this means the macro was only invoked conditionally.]])
1728
- fi])])
1729
- m4trace:/usr/share/aclocal-1.15/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
1730
- AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
1731
- AC_REQUIRE([AM_MAKE_INCLUDE])dnl
1732
- AC_REQUIRE([AM_DEP_TRACK])dnl
1733
-
1734
- m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
1735
- [$1], [CXX], [depcc="$CXX" am_compiler_list=],
1736
- [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
1737
- [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
1738
- [$1], [UPC], [depcc="$UPC" am_compiler_list=],
1739
- [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
1740
- [depcc="$$1" am_compiler_list=])
1741
-
1742
- AC_CACHE_CHECK([dependency style of $depcc],
1743
- [am_cv_$1_dependencies_compiler_type],
1744
- [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
1745
- # We make a subdir and do the tests there. Otherwise we can end up
1746
- # making bogus files that we don't know about and never remove. For
1747
- # instance it was reported that on HP-UX the gcc test will end up
1748
- # making a dummy file named 'D' -- because '-MD' means "put the output
1749
- # in D".
1750
- rm -rf conftest.dir
1751
- mkdir conftest.dir
1752
- # Copy depcomp to subdir because otherwise we won't find it if we're
1753
- # using a relative directory.
1754
- cp "$am_depcomp" conftest.dir
1755
- cd conftest.dir
1756
- # We will build objects and dependencies in a subdirectory because
1757
- # it helps to detect inapplicable dependency modes. For instance
1758
- # both Tru64's cc and ICC support -MD to output dependencies as a
1759
- # side effect of compilation, but ICC will put the dependencies in
1760
- # the current directory while Tru64 will put them in the object
1761
- # directory.
1762
- mkdir sub
1763
-
1764
- am_cv_$1_dependencies_compiler_type=none
1765
- if test "$am_compiler_list" = ""; then
1766
- am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
1767
- fi
1768
- am__universal=false
1769
- m4_case([$1], [CC],
1770
- [case " $depcc " in #(
1771
- *\ -arch\ *\ -arch\ *) am__universal=true ;;
1772
- esac],
1773
- [CXX],
1774
- [case " $depcc " in #(
1775
- *\ -arch\ *\ -arch\ *) am__universal=true ;;
1776
- esac])
1777
-
1778
- for depmode in $am_compiler_list; do
1779
- # Setup a source with many dependencies, because some compilers
1780
- # like to wrap large dependency lists on column 80 (with \), and
1781
- # we should not choose a depcomp mode which is confused by this.
1782
- #
1783
- # We need to recreate these files for each test, as the compiler may
1784
- # overwrite some of them when testing with obscure command lines.
1785
- # This happens at least with the AIX C compiler.
1786
- : > sub/conftest.c
1787
- for i in 1 2 3 4 5 6; do
1788
- echo '#include "conftst'$i'.h"' >> sub/conftest.c
1789
- # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
1790
- # Solaris 10 /bin/sh.
1791
- echo '/* dummy */' > sub/conftst$i.h
1792
- done
1793
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
1794
-
1795
- # We check with '-c' and '-o' for the sake of the "dashmstdout"
1796
- # mode. It turns out that the SunPro C++ compiler does not properly
1797
- # handle '-M -o', and we need to detect this. Also, some Intel
1798
- # versions had trouble with output in subdirs.
1799
- am__obj=sub/conftest.${OBJEXT-o}
1800
- am__minus_obj="-o $am__obj"
1801
- case $depmode in
1802
- gcc)
1803
- # This depmode causes a compiler race in universal mode.
1804
- test "$am__universal" = false || continue
1805
- ;;
1806
- nosideeffect)
1807
- # After this tag, mechanisms are not by side-effect, so they'll
1808
- # only be used when explicitly requested.
1809
- if test "x$enable_dependency_tracking" = xyes; then
1810
- continue
1811
- else
1812
- break
1813
- fi
1814
- ;;
1815
- msvc7 | msvc7msys | msvisualcpp | msvcmsys)
1816
- # This compiler won't grok '-c -o', but also, the minuso test has
1817
- # not run yet. These depmodes are late enough in the game, and
1818
- # so weak that their functioning should not be impacted.
1819
- am__obj=conftest.${OBJEXT-o}
1820
- am__minus_obj=
1821
- ;;
1822
- none) break ;;
1823
- esac
1824
- if depmode=$depmode \
1825
- source=sub/conftest.c object=$am__obj \
1826
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
1827
- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
1828
- >/dev/null 2>conftest.err &&
1829
- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
1830
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
1831
- grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
1832
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
1833
- # icc doesn't choke on unknown options, it will just issue warnings
1834
- # or remarks (even with -Werror). So we grep stderr for any message
1835
- # that says an option was ignored or not supported.
1836
- # When given -MP, icc 7.0 and 7.1 complain thusly:
1837
- # icc: Command line warning: ignoring option '-M'; no argument required
1838
- # The diagnosis changed in icc 8.0:
1839
- # icc: Command line remark: option '-MP' not supported
1840
- if (grep 'ignoring option' conftest.err ||
1841
- grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
1842
- am_cv_$1_dependencies_compiler_type=$depmode
1843
- break
1844
- fi
1845
- fi
1846
- done
1847
-
1848
- cd ..
1849
- rm -rf conftest.dir
1850
- else
1851
- am_cv_$1_dependencies_compiler_type=none
1852
- fi
1853
- ])
1854
- AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
1855
- AM_CONDITIONAL([am__fastdep$1], [
1856
- test "x$enable_dependency_tracking" != xno \
1857
- && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
1858
- ])
1859
- m4trace:/usr/share/aclocal-1.15/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
1860
- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
1861
- ])
1862
- m4trace:/usr/share/aclocal-1.15/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
1863
- AS_HELP_STRING(
1864
- [--enable-dependency-tracking],
1865
- [do not reject slow dependency extractors])
1866
- AS_HELP_STRING(
1867
- [--disable-dependency-tracking],
1868
- [speeds up one-time build])])
1869
- if test "x$enable_dependency_tracking" != xno; then
1870
- am_depcomp="$ac_aux_dir/depcomp"
1871
- AMDEPBACKSLASH='\'
1872
- am__nodep='_no'
1873
- fi
1874
- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
1875
- AC_SUBST([AMDEPBACKSLASH])dnl
1876
- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
1877
- AC_SUBST([am__nodep])dnl
1878
- _AM_SUBST_NOTMAKE([am__nodep])dnl
1879
- ])
1880
- m4trace:/usr/share/aclocal-1.15/depout.m4:12: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
1881
- # Older Autoconf quotes --file arguments for eval, but not when files
1882
- # are listed without --file. Let's play safe and only enable the eval
1883
- # if we detect the quoting.
1884
- case $CONFIG_FILES in
1885
- *\'*) eval set x "$CONFIG_FILES" ;;
1886
- *) set x $CONFIG_FILES ;;
1887
- esac
1888
- shift
1889
- for mf
1890
- do
1891
- # Strip MF so we end up with the name of the file.
1892
- mf=`echo "$mf" | sed -e 's/:.*$//'`
1893
- # Check whether this is an Automake generated Makefile or not.
1894
- # We used to match only the files named 'Makefile.in', but
1895
- # some people rename them; so instead we look at the file content.
1896
- # Grep'ing the first line is not enough: some people post-process
1897
- # each Makefile.in and add a new line on top of each file to say so.
1898
- # Grep'ing the whole file is not good either: AIX grep has a line
1899
- # limit of 2048, but all sed's we know have understand at least 4000.
1900
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1901
- dirpart=`AS_DIRNAME("$mf")`
1902
- else
1903
- continue
1904
- fi
1905
- # Extract the definition of DEPDIR, am__include, and am__quote
1906
- # from the Makefile without running 'make'.
1907
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1908
- test -z "$DEPDIR" && continue
1909
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
1910
- test -z "$am__include" && continue
1911
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1912
- # Find all dependency output files, they are included files with
1913
- # $(DEPDIR) in their names. We invoke sed twice because it is the
1914
- # simplest approach to changing $(DEPDIR) to its actual value in the
1915
- # expansion.
1916
- for file in `sed -n "
1917
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1918
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
1919
- # Make sure the directory exists.
1920
- test -f "$dirpart/$file" && continue
1921
- fdir=`AS_DIRNAME(["$file"])`
1922
- AS_MKDIR_P([$dirpart/$fdir])
1923
- # echo "creating $dirpart/$file"
1924
- echo '# dummy' > "$dirpart/$file"
1925
- done
1926
- done
1927
- }
1928
- ])
1929
- m4trace:/usr/share/aclocal-1.15/depout.m4:71: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
1930
- [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
1931
- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
1932
- ])
1933
- m4trace:/usr/share/aclocal-1.15/init.m4:29: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
1934
- dnl Autoconf wants to disallow AM_ names. We explicitly allow
1935
- dnl the ones we care about.
1936
- m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
1937
- AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
1938
- AC_REQUIRE([AC_PROG_INSTALL])dnl
1939
- if test "`cd $srcdir && pwd`" != "`pwd`"; then
1940
- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
1941
- # is not polluted with repeated "-I."
1942
- AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
1943
- # test to see if srcdir already configured
1944
- if test -f $srcdir/config.status; then
1945
- AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
1946
- fi
1947
- fi
1948
-
1949
- # test whether we have cygpath
1950
- if test -z "$CYGPATH_W"; then
1951
- if (cygpath --version) >/dev/null 2>/dev/null; then
1952
- CYGPATH_W='cygpath -w'
1953
- else
1954
- CYGPATH_W=echo
1955
- fi
1956
- fi
1957
- AC_SUBST([CYGPATH_W])
1958
-
1959
- # Define the identity of the package.
1960
- dnl Distinguish between old-style and new-style calls.
1961
- m4_ifval([$2],
1962
- [AC_DIAGNOSE([obsolete],
1963
- [$0: two- and three-arguments forms are deprecated.])
1964
- m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
1965
- AC_SUBST([PACKAGE], [$1])dnl
1966
- AC_SUBST([VERSION], [$2])],
1967
- [_AM_SET_OPTIONS([$1])dnl
1968
- dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
1969
- m4_if(
1970
- m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
1971
- [ok:ok],,
1972
- [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
1973
- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
1974
- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
1975
-
1976
- _AM_IF_OPTION([no-define],,
1977
- [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
1978
- AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
1979
-
1980
- # Some tools Automake needs.
1981
- AC_REQUIRE([AM_SANITY_CHECK])dnl
1982
- AC_REQUIRE([AC_ARG_PROGRAM])dnl
1983
- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
1984
- AM_MISSING_PROG([AUTOCONF], [autoconf])
1985
- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
1986
- AM_MISSING_PROG([AUTOHEADER], [autoheader])
1987
- AM_MISSING_PROG([MAKEINFO], [makeinfo])
1988
- AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1989
- AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
1990
- AC_REQUIRE([AC_PROG_MKDIR_P])dnl
1991
- # For better backward compatibility. To be removed once Automake 1.9.x
1992
- # dies out for good. For more background, see:
1993
- # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
1994
- # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
1995
- AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
1996
- # We need awk for the "check" target (and possibly the TAP driver). The
1997
- # system "awk" is bad on some platforms.
1998
- AC_REQUIRE([AC_PROG_AWK])dnl
1999
- AC_REQUIRE([AC_PROG_MAKE_SET])dnl
2000
- AC_REQUIRE([AM_SET_LEADING_DOT])dnl
2001
- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
2002
- [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2003
- [_AM_PROG_TAR([v7])])])
2004
- _AM_IF_OPTION([no-dependencies],,
2005
- [AC_PROVIDE_IFELSE([AC_PROG_CC],
2006
- [_AM_DEPENDENCIES([CC])],
2007
- [m4_define([AC_PROG_CC],
2008
- m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
2009
- AC_PROVIDE_IFELSE([AC_PROG_CXX],
2010
- [_AM_DEPENDENCIES([CXX])],
2011
- [m4_define([AC_PROG_CXX],
2012
- m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
2013
- AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2014
- [_AM_DEPENDENCIES([OBJC])],
2015
- [m4_define([AC_PROG_OBJC],
2016
- m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
2017
- AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
2018
- [_AM_DEPENDENCIES([OBJCXX])],
2019
- [m4_define([AC_PROG_OBJCXX],
2020
- m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
2021
- ])
2022
- AC_REQUIRE([AM_SILENT_RULES])dnl
2023
- dnl The testsuite driver may need to know about EXEEXT, so add the
2024
- dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
2025
- dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
2026
- AC_CONFIG_COMMANDS_PRE(dnl
2027
- [m4_provide_if([_AM_COMPILER_EXEEXT],
2028
- [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
2029
-
2030
- # POSIX will say in a future version that running "rm -f" with no argument
2031
- # is OK; and we want to be able to make that assumption in our Makefile
2032
- # recipes. So use an aggressive probe to check that the usage we want is
2033
- # actually supported "in the wild" to an acceptable degree.
2034
- # See automake bug#10828.
2035
- # To make any issue more visible, cause the running configure to be aborted
2036
- # by default if the 'rm' program in use doesn't match our expectations; the
2037
- # user can still override this though.
2038
- if rm -f && rm -fr && rm -rf; then : OK; else
2039
- cat >&2 <<'END'
2040
- Oops!
2041
-
2042
- Your 'rm' program seems unable to run without file operands specified
2043
- on the command line, even when the '-f' option is present. This is contrary
2044
- to the behaviour of most rm programs out there, and not conforming with
2045
- the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
2046
-
2047
- Please tell bug-automake@gnu.org about your system, including the value
2048
- of your $PATH and any error possibly output before this message. This
2049
- can help us improve future automake versions.
2050
-
2051
- END
2052
- if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
2053
- echo 'Configuration will proceed anyway, since you have set the' >&2
2054
- echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
2055
- echo >&2
2056
- else
2057
- cat >&2 <<'END'
2058
- Aborting the configuration process, to ensure you take notice of the issue.
2059
-
2060
- You can download and install GNU coreutils to get an 'rm' implementation
2061
- that behaves properly: <http://www.gnu.org/software/coreutils/>.
2062
-
2063
- If you want to complete the configuration process using your problematic
2064
- 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
2065
- to "yes", and re-run configure.
2066
-
2067
- END
2068
- AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
2069
- fi
2070
- fi
2071
- dnl The trailing newline in this macro's definition is deliberate, for
2072
- dnl backward compatibility and to allow trailing 'dnl'-style comments
2073
- dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
2074
- ])
2075
- m4trace:/usr/share/aclocal-1.15/init.m4:186: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
2076
- _am_arg=$1
2077
- _am_stamp_count=1
2078
- for _am_header in $config_headers :; do
2079
- case $_am_header in
2080
- $_am_arg | $_am_arg:* )
2081
- break ;;
2082
- * )
2083
- _am_stamp_count=`expr $_am_stamp_count + 1` ;;
2084
- esac
2085
- done
2086
- echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
2087
- m4trace:/usr/share/aclocal-1.15/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2088
- if test x"${install_sh+set}" != xset; then
2089
- case $am_aux_dir in
2090
- *\ * | *\ *)
2091
- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
2092
- *)
2093
- install_sh="\${SHELL} $am_aux_dir/install-sh"
2094
- esac
2095
- fi
2096
- AC_SUBST([install_sh])])
2097
- m4trace:/usr/share/aclocal-1.15/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
2098
- mkdir .tst 2>/dev/null
2099
- if test -d .tst; then
2100
- am__leading_dot=.
2101
- else
2102
- am__leading_dot=_
2103
- fi
2104
- rmdir .tst 2>/dev/null
2105
- AC_SUBST([am__leading_dot])])
2106
- m4trace:/usr/share/aclocal-1.15/maintainer.m4:16: -1- AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]),
2107
- [enable], [m4_define([am_maintainer_other], [disable])],
2108
- [disable], [m4_define([am_maintainer_other], [enable])],
2109
- [m4_define([am_maintainer_other], [enable])
2110
- m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
2111
- AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
2112
- dnl maintainer-mode's default is 'disable' unless 'enable' is passed
2113
- AC_ARG_ENABLE([maintainer-mode],
2114
- [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
2115
- am_maintainer_other[ make rules and dependencies not useful
2116
- (and sometimes confusing) to the casual installer])],
2117
- [USE_MAINTAINER_MODE=$enableval],
2118
- [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
2119
- AC_MSG_RESULT([$USE_MAINTAINER_MODE])
2120
- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
2121
- MAINT=$MAINTAINER_MODE_TRUE
2122
- AC_SUBST([MAINT])dnl
2123
-
2124
- ])
2125
- m4trace:/usr/share/aclocal-1.15/make.m4:12: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
2126
- cat > confinc << 'END'
2127
- am__doit:
2128
- @echo this is the am__doit target
2129
- .PHONY: am__doit
2130
- END
2131
- # If we don't find an include directive, just comment out the code.
2132
- AC_MSG_CHECKING([for style of include used by $am_make])
2133
- am__include="#"
2134
- am__quote=
2135
- _am_result=none
2136
- # First try GNU make style include.
2137
- echo "include confinc" > confmf
2138
- # Ignore all kinds of additional output from 'make'.
2139
- case `$am_make -s -f confmf 2> /dev/null` in #(
2140
- *the\ am__doit\ target*)
2141
- am__include=include
2142
- am__quote=
2143
- _am_result=GNU
2144
- ;;
2145
- esac
2146
- # Now try BSD make style include.
2147
- if test "$am__include" = "#"; then
2148
- echo '.include "confinc"' > confmf
2149
- case `$am_make -s -f confmf 2> /dev/null` in #(
2150
- *the\ am__doit\ target*)
2151
- am__include=.include
2152
- am__quote="\""
2153
- _am_result=BSD
2154
- ;;
2155
- esac
2156
- fi
2157
- AC_SUBST([am__include])
2158
- AC_SUBST([am__quote])
2159
- AC_MSG_RESULT([$_am_result])
2160
- rm -f confinc confmf
2161
- ])
2162
- m4trace:/usr/share/aclocal-1.15/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
2163
- $1=${$1-"${am_missing_run}$2"}
2164
- AC_SUBST($1)])
2165
- m4trace:/usr/share/aclocal-1.15/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2166
- AC_REQUIRE_AUX_FILE([missing])dnl
2167
- if test x"${MISSING+set}" != xset; then
2168
- case $am_aux_dir in
2169
- *\ * | *\ *)
2170
- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
2171
- *)
2172
- MISSING="\${SHELL} $am_aux_dir/missing" ;;
2173
- esac
2174
- fi
2175
- # Use eval to expand $SHELL
2176
- if eval "$MISSING --is-lightweight"; then
2177
- am_missing_run="$MISSING "
2178
- else
2179
- am_missing_run=
2180
- AC_MSG_WARN(['missing' script is too old or missing])
2181
- fi
2182
- ])
2183
- m4trace:/usr/share/aclocal-1.15/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
2184
- m4trace:/usr/share/aclocal-1.15/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
2185
- m4trace:/usr/share/aclocal-1.15/options.m4:23: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
2186
- m4trace:/usr/share/aclocal-1.15/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
2187
- m4trace:/usr/share/aclocal-1.15/prog-cc-c-o.m4:12: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2188
- AC_REQUIRE_AUX_FILE([compile])dnl
2189
- AC_LANG_PUSH([C])dnl
2190
- AC_CACHE_CHECK(
2191
- [whether $CC understands -c and -o together],
2192
- [am_cv_prog_cc_c_o],
2193
- [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
2194
- # Make sure it works both with $CC and with simple cc.
2195
- # Following AC_PROG_CC_C_O, we do the test twice because some
2196
- # compilers refuse to overwrite an existing .o file with -o,
2197
- # though they will create one.
2198
- am_cv_prog_cc_c_o=yes
2199
- for am_i in 1 2; do
2200
- if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
2201
- && test -f conftest2.$ac_objext; then
2202
- : OK
2203
- else
2204
- am_cv_prog_cc_c_o=no
2205
- break
2206
- fi
2207
- done
2208
- rm -f core conftest*
2209
- unset am_i])
2210
- if test "$am_cv_prog_cc_c_o" != yes; then
2211
- # Losing compiler, so override with the script.
2212
- # FIXME: It is wrong to rewrite CC.
2213
- # But if we don't then we get into trouble of one sort or another.
2214
- # A longer-term fix would be to have automake use am__CC in this case,
2215
- # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
2216
- CC="$am_aux_dir/compile $CC"
2217
- fi
2218
- AC_LANG_POP([C])])
2219
- m4trace:/usr/share/aclocal-1.15/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
2220
- m4trace:/usr/share/aclocal-1.15/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
2221
- ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
2222
- ac_status=$?
2223
- echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
2224
- (exit $ac_status); }])
2225
- m4trace:/usr/share/aclocal-1.15/sanity.m4:11: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
2226
- # Reject unsafe characters in $srcdir or the absolute working directory
2227
- # name. Accept space and tab only in the latter.
2228
- am_lf='
2229
- '
2230
- case `pwd` in
2231
- *[[\\\"\#\$\&\'\`$am_lf]]*)
2232
- AC_MSG_ERROR([unsafe absolute working directory name]);;
2233
- esac
2234
- case $srcdir in
2235
- *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
2236
- AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
2237
- esac
2238
-
2239
- # Do 'set' in a subshell so we don't clobber the current shell's
2240
- # arguments. Must try -L first in case configure is actually a
2241
- # symlink; some systems play weird games with the mod time of symlinks
2242
- # (eg FreeBSD returns the mod time of the symlink's containing
2243
- # directory).
2244
- if (
2245
- am_has_slept=no
2246
- for am_try in 1 2; do
2247
- echo "timestamp, slept: $am_has_slept" > conftest.file
2248
- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
2249
- if test "$[*]" = "X"; then
2250
- # -L didn't work.
2251
- set X `ls -t "$srcdir/configure" conftest.file`
2252
- fi
2253
- if test "$[*]" != "X $srcdir/configure conftest.file" \
2254
- && test "$[*]" != "X conftest.file $srcdir/configure"; then
2255
-
2256
- # If neither matched, then we have a broken ls. This can happen
2257
- # if, for instance, CONFIG_SHELL is bash and it inherits a
2258
- # broken ls alias from the environment. This has actually
2259
- # happened. Such a system could not be considered "sane".
2260
- AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
2261
- alias in your environment])
2262
- fi
2263
- if test "$[2]" = conftest.file || test $am_try -eq 2; then
2264
- break
2265
- fi
2266
- # Just in case.
2267
- sleep 1
2268
- am_has_slept=yes
2269
- done
2270
- test "$[2]" = conftest.file
2271
- )
2272
- then
2273
- # Ok.
2274
- :
2275
- else
2276
- AC_MSG_ERROR([newly created file is older than distributed files!
2277
- Check your system clock])
2278
- fi
2279
- AC_MSG_RESULT([yes])
2280
- # If we didn't sleep, we still need to ensure time stamps of config.status and
2281
- # generated files are strictly newer.
2282
- am_sleep_pid=
2283
- if grep 'slept: no' conftest.file >/dev/null 2>&1; then
2284
- ( sleep 1 ) &
2285
- am_sleep_pid=$!
2286
- fi
2287
- AC_CONFIG_COMMANDS_PRE(
2288
- [AC_MSG_CHECKING([that generated files are newer than configure])
2289
- if test -n "$am_sleep_pid"; then
2290
- # Hide warnings about reused PIDs.
2291
- wait $am_sleep_pid 2>/dev/null
2292
- fi
2293
- AC_MSG_RESULT([done])])
2294
- rm -f conftest.file
2295
- ])
2296
- m4trace:/usr/share/aclocal-1.15/silent.m4:12: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
2297
- AS_HELP_STRING(
2298
- [--enable-silent-rules],
2299
- [less verbose build output (undo: "make V=1")])
2300
- AS_HELP_STRING(
2301
- [--disable-silent-rules],
2302
- [verbose build output (undo: "make V=0")])dnl
2303
- ])
2304
- case $enable_silent_rules in @%:@ (((
2305
- yes) AM_DEFAULT_VERBOSITY=0;;
2306
- no) AM_DEFAULT_VERBOSITY=1;;
2307
- *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
2308
- esac
2309
- dnl
2310
- dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
2311
- dnl do not support nested variable expansions.
2312
- dnl See automake bug#9928 and bug#10237.
2313
- am_make=${MAKE-make}
2314
- AC_CACHE_CHECK([whether $am_make supports nested variables],
2315
- [am_cv_make_support_nested_variables],
2316
- [if AS_ECHO([['TRUE=$(BAR$(V))
2317
- BAR0=false
2318
- BAR1=true
2319
- V=1
2320
- am__doit:
2321
- @$(TRUE)
2322
- .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
2323
- am_cv_make_support_nested_variables=yes
2324
- else
2325
- am_cv_make_support_nested_variables=no
2326
- fi])
2327
- if test $am_cv_make_support_nested_variables = yes; then
2328
- dnl Using '$V' instead of '$(V)' breaks IRIX make.
2329
- AM_V='$(V)'
2330
- AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
2331
- else
2332
- AM_V=$AM_DEFAULT_VERBOSITY
2333
- AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
2334
- fi
2335
- AC_SUBST([AM_V])dnl
2336
- AM_SUBST_NOTMAKE([AM_V])dnl
2337
- AC_SUBST([AM_DEFAULT_V])dnl
2338
- AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
2339
- AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
2340
- AM_BACKSLASH='\'
2341
- AC_SUBST([AM_BACKSLASH])dnl
2342
- _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
2343
- ])
2344
- m4trace:/usr/share/aclocal-1.15/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2345
- # Installed binaries are usually stripped using 'strip' when the user
2346
- # run "make install-strip". However 'strip' might not be the right
2347
- # tool to use in cross-compilation environments, therefore Automake
2348
- # will honor the 'STRIP' environment variable to overrule this program.
2349
- dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
2350
- if test "$cross_compiling" != no; then
2351
- AC_CHECK_TOOL([STRIP], [strip], :)
2352
- fi
2353
- INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2354
- AC_SUBST([INSTALL_STRIP_PROGRAM])])
2355
- m4trace:/usr/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
2356
- m4trace:/usr/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
2357
- m4trace:/usr/share/aclocal-1.15/tar.m4:23: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
2358
- # in the wild :-( We should find a proper way to deprecate it ...
2359
- AC_SUBST([AMTAR], ['$${TAR-tar}'])
2360
-
2361
- # We'll loop over all known methods to create a tar archive until one works.
2362
- _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
2363
-
2364
- m4_if([$1], [v7],
2365
- [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
2366
-
2367
- [m4_case([$1],
2368
- [ustar],
2369
- [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
2370
- # There is notably a 21 bits limit for the UID and the GID. In fact,
2371
- # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
2372
- # and bug#13588).
2373
- am_max_uid=2097151 # 2^21 - 1
2374
- am_max_gid=$am_max_uid
2375
- # The $UID and $GID variables are not portable, so we need to resort
2376
- # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
2377
- # below are definitely unexpected, so allow the users to see them
2378
- # (that is, avoid stderr redirection).
2379
- am_uid=`id -u || echo unknown`
2380
- am_gid=`id -g || echo unknown`
2381
- AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
2382
- if test $am_uid -le $am_max_uid; then
2383
- AC_MSG_RESULT([yes])
2384
- else
2385
- AC_MSG_RESULT([no])
2386
- _am_tools=none
2387
- fi
2388
- AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
2389
- if test $am_gid -le $am_max_gid; then
2390
- AC_MSG_RESULT([yes])
2391
- else
2392
- AC_MSG_RESULT([no])
2393
- _am_tools=none
2394
- fi],
2395
-
2396
- [pax],
2397
- [],
2398
-
2399
- [m4_fatal([Unknown tar format])])
2400
-
2401
- AC_MSG_CHECKING([how to create a $1 tar archive])
2402
-
2403
- # Go ahead even if we have the value already cached. We do so because we
2404
- # need to set the values for the 'am__tar' and 'am__untar' variables.
2405
- _am_tools=${am_cv_prog_tar_$1-$_am_tools}
2406
-
2407
- for _am_tool in $_am_tools; do
2408
- case $_am_tool in
2409
- gnutar)
2410
- for _am_tar in tar gnutar gtar; do
2411
- AM_RUN_LOG([$_am_tar --version]) && break
2412
- done
2413
- am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
2414
- am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
2415
- am__untar="$_am_tar -xf -"
2416
- ;;
2417
- plaintar)
2418
- # Must skip GNU tar: if it does not support --format= it doesn't create
2419
- # ustar tarball either.
2420
- (tar --version) >/dev/null 2>&1 && continue
2421
- am__tar='tar chf - "$$tardir"'
2422
- am__tar_='tar chf - "$tardir"'
2423
- am__untar='tar xf -'
2424
- ;;
2425
- pax)
2426
- am__tar='pax -L -x $1 -w "$$tardir"'
2427
- am__tar_='pax -L -x $1 -w "$tardir"'
2428
- am__untar='pax -r'
2429
- ;;
2430
- cpio)
2431
- am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
2432
- am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
2433
- am__untar='cpio -i -H $1 -d'
2434
- ;;
2435
- none)
2436
- am__tar=false
2437
- am__tar_=false
2438
- am__untar=false
2439
- ;;
2440
- esac
2441
-
2442
- # If the value was cached, stop now. We just wanted to have am__tar
2443
- # and am__untar set.
2444
- test -n "${am_cv_prog_tar_$1}" && break
2445
-
2446
- # tar/untar a dummy directory, and stop if the command works.
2447
- rm -rf conftest.dir
2448
- mkdir conftest.dir
2449
- echo GrepMe > conftest.dir/file
2450
- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
2451
- rm -rf conftest.dir
2452
- if test -s conftest.tar; then
2453
- AM_RUN_LOG([$am__untar <conftest.tar])
2454
- AM_RUN_LOG([cat conftest.dir/file])
2455
- grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
2456
- fi
2457
- done
2458
- rm -rf conftest.dir
2459
-
2460
- AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
2461
- AC_MSG_RESULT([$am_cv_prog_tar_$1])])
2462
-
2463
- AC_SUBST([am__tar])
2464
- AC_SUBST([am__untar])
2465
- ])
2466
- m4trace:m4/asmcfi.m4:1: -1- AC_DEFUN([GCC_AS_CFI_PSEUDO_OP], [AC_CACHE_CHECK([assembler .cfi pseudo-op support],
2467
- gcc_cv_as_cfi_pseudo_op, [
2468
- gcc_cv_as_cfi_pseudo_op=unknown
2469
- AC_TRY_COMPILE([asm (".cfi_startproc\n\t.cfi_endproc");],,
2470
- [gcc_cv_as_cfi_pseudo_op=yes],
2471
- [gcc_cv_as_cfi_pseudo_op=no])
2472
- ])
2473
- if test "x$gcc_cv_as_cfi_pseudo_op" = xyes; then
2474
- AC_DEFINE(HAVE_AS_CFI_PSEUDO_OP, 1,
2475
- [Define if your assembler supports .cfi_* directives.])
2476
- fi
2477
- ])
2478
- m4trace:m4/ax_append_flag.m4:54: -1- AC_DEFUN([AX_APPEND_FLAG], [AC_PREREQ(2.59)dnl for _AC_LANG_PREFIX
2479
- AS_VAR_PUSHDEF([FLAGS], [m4_default($2,_AC_LANG_PREFIX[FLAGS])])dnl
2480
- AS_VAR_SET_IF(FLAGS,
2481
- [case " AS_VAR_GET(FLAGS) " in
2482
- *" $1 "*)
2483
- AC_RUN_LOG([: FLAGS already contains $1])
2484
- ;;
2485
- *)
2486
- AC_RUN_LOG([: FLAGS="$FLAGS $1"])
2487
- AS_VAR_SET(FLAGS, ["AS_VAR_GET(FLAGS) $1"])
2488
- ;;
2489
- esac],
2490
- [AS_VAR_SET(FLAGS,["$1"])])
2491
- AS_VAR_POPDEF([FLAGS])dnl
2492
- ])
2493
- m4trace:m4/ax_cc_maxopt.m4:60: -1- AC_DEFUN([AX_CC_MAXOPT], [
2494
- AC_REQUIRE([AC_PROG_CC])
2495
- AC_REQUIRE([AX_COMPILER_VENDOR])
2496
- AC_REQUIRE([AC_CANONICAL_HOST])
2497
-
2498
- AC_ARG_ENABLE(portable-binary, [AS_HELP_STRING([--enable-portable-binary], [disable compiler optimizations that would produce unportable binaries])],
2499
- acx_maxopt_portable=$enableval, acx_maxopt_portable=no)
2500
-
2501
- # Try to determine "good" native compiler flags if none specified via CFLAGS
2502
- if test "$ac_test_CFLAGS" != "set"; then
2503
- CFLAGS=""
2504
- case $ax_cv_c_compiler_vendor in
2505
- dec) CFLAGS="-newc -w0 -O5 -ansi_alias -ansi_args -fp_reorder -tune host"
2506
- if test "x$acx_maxopt_portable" = xno; then
2507
- CFLAGS="$CFLAGS -arch host"
2508
- fi;;
2509
-
2510
- sun) CFLAGS="-native -fast -xO5 -dalign"
2511
- if test "x$acx_maxopt_portable" = xyes; then
2512
- CFLAGS="$CFLAGS -xarch=generic"
2513
- fi;;
2514
-
2515
- hp) CFLAGS="+Oall +Optrs_ansi +DSnative"
2516
- if test "x$acx_maxopt_portable" = xyes; then
2517
- CFLAGS="$CFLAGS +DAportable"
2518
- fi;;
2519
-
2520
- ibm) if test "x$acx_maxopt_portable" = xno; then
2521
- xlc_opt="-qarch=auto -qtune=auto"
2522
- else
2523
- xlc_opt="-qtune=auto"
2524
- fi
2525
- AX_CHECK_COMPILE_FLAG($xlc_opt,
2526
- CFLAGS="-O3 -qansialias -w $xlc_opt",
2527
- [CFLAGS="-O3 -qansialias -w"
2528
- echo "******************************************************"
2529
- echo "* You seem to have the IBM C compiler. It is *"
2530
- echo "* recommended for best performance that you use: *"
2531
- echo "* *"
2532
- echo "* CFLAGS=-O3 -qarch=xxx -qtune=xxx -qansialias -w *"
2533
- echo "* ^^^ ^^^ *"
2534
- echo "* where xxx is pwr2, pwr3, 604, or whatever kind of *"
2535
- echo "* CPU you have. (Set the CFLAGS environment var. *"
2536
- echo "* and re-run configure.) For more info, man cc. *"
2537
- echo "******************************************************"])
2538
- ;;
2539
-
2540
- intel) CFLAGS="-O3 -ansi_alias"
2541
- if test "x$acx_maxopt_portable" = xno; then
2542
- icc_archflag=unknown
2543
- icc_flags=""
2544
- case $host_cpu in
2545
- i686*|x86_64*)
2546
- # icc accepts gcc assembly syntax, so these should work:
2547
- AX_GCC_X86_CPUID(0)
2548
- AX_GCC_X86_CPUID(1)
2549
- case $ax_cv_gcc_x86_cpuid_0 in # see AX_GCC_ARCHFLAG
2550
- *:756e6547:*:*) # Intel
2551
- case $ax_cv_gcc_x86_cpuid_1 in
2552
- *6a?:*[[234]]:*:*|*6[[789b]]?:*:*:*) icc_flags="-xK";;
2553
- *f3[[347]]:*:*:*|*f4[1347]:*:*:*) icc_flags="-xP -xN -xW -xK";;
2554
- *f??:*:*:*) icc_flags="-xN -xW -xK";;
2555
- esac ;;
2556
- esac ;;
2557
- esac
2558
- if test "x$icc_flags" != x; then
2559
- for flag in $icc_flags; do
2560
- AX_CHECK_COMPILE_FLAG($flag, [icc_archflag=$flag; break])
2561
- done
2562
- fi
2563
- AC_MSG_CHECKING([for icc architecture flag])
2564
- AC_MSG_RESULT($icc_archflag)
2565
- if test "x$icc_archflag" != xunknown; then
2566
- CFLAGS="$CFLAGS $icc_archflag"
2567
- fi
2568
- fi
2569
- ;;
2570
-
2571
- gnu)
2572
- # default optimization flags for gcc on all systems
2573
- CFLAGS="-O3 -fomit-frame-pointer"
2574
-
2575
- # -malign-double for x86 systems
2576
- # LIBFFI -- DON'T DO THIS - CHANGES ABI
2577
- # AX_CHECK_COMPILE_FLAG(-malign-double, CFLAGS="$CFLAGS -malign-double")
2578
-
2579
- # -fstrict-aliasing for gcc-2.95+
2580
- AX_CHECK_COMPILE_FLAG(-fstrict-aliasing,
2581
- CFLAGS="$CFLAGS -fstrict-aliasing")
2582
-
2583
- # note that we enable "unsafe" fp optimization with other compilers, too
2584
- AX_CHECK_COMPILE_FLAG(-ffast-math, CFLAGS="$CFLAGS -ffast-math")
2585
-
2586
- AX_GCC_ARCHFLAG($acx_maxopt_portable)
2587
- ;;
2588
- esac
2589
-
2590
- if test -z "$CFLAGS"; then
2591
- echo ""
2592
- echo "********************************************************"
2593
- echo "* WARNING: Don't know the best CFLAGS for this system *"
2594
- echo "* Use ./configure CFLAGS=... to specify your own flags *"
2595
- echo "* (otherwise, a default of CFLAGS=-O3 will be used) *"
2596
- echo "********************************************************"
2597
- echo ""
2598
- CFLAGS="-O3"
2599
- fi
2600
-
2601
- AX_CHECK_COMPILE_FLAG($CFLAGS, [], [
2602
- echo ""
2603
- echo "********************************************************"
2604
- echo "* WARNING: The guessed CFLAGS don't seem to work with *"
2605
- echo "* your compiler. *"
2606
- echo "* Use ./configure CFLAGS=... to specify your own flags *"
2607
- echo "********************************************************"
2608
- echo ""
2609
- CFLAGS=""
2610
- ])
2611
-
2612
- fi
2613
- ])
2614
- m4trace:m4/ax_cflags_warn_all.m4:63: -1- AC_DEFUN([AX_FLAGS_WARN_ALL], [dnl
2615
- AS_VAR_PUSHDEF([FLAGS],[_AC_LANG_PREFIX[]FLAGS])dnl
2616
- AS_VAR_PUSHDEF([VAR],[ac_cv_[]_AC_LANG_ABBREV[]flags_warn_all])dnl
2617
- AC_CACHE_CHECK([m4_ifval($1,$1,FLAGS) for maximum warnings],
2618
- VAR,[VAR="no, unknown"
2619
- ac_save_[]FLAGS="$[]FLAGS"
2620
- for ac_arg dnl
2621
- in "-warn all % -warn all" dnl Intel
2622
- "-pedantic % -Wall" dnl GCC
2623
- "-xstrconst % -v" dnl Solaris C
2624
- "-std1 % -verbose -w0 -warnprotos" dnl Digital Unix
2625
- "-qlanglvl=ansi % -qsrcmsg -qinfo=all:noppt:noppc:noobs:nocnd" dnl AIX
2626
- "-ansi -ansiE % -fullwarn" dnl IRIX
2627
- "+ESlit % +w1" dnl HP-UX C
2628
- "-Xc % -pvctl[,]fullmsg" dnl NEC SX-5 (Super-UX 10)
2629
- "-h conform % -h msglevel 2" dnl Cray C (Unicos)
2630
- #
2631
- do FLAGS="$ac_save_[]FLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
2632
- AC_COMPILE_IFELSE([AC_LANG_PROGRAM],
2633
- [VAR=`echo $ac_arg | sed -e 's,.*% *,,'` ; break])
2634
- done
2635
- FLAGS="$ac_save_[]FLAGS"
2636
- ])
2637
- AS_VAR_POPDEF([FLAGS])dnl
2638
- AC_REQUIRE([AX_APPEND_FLAG])
2639
- case ".$VAR" in
2640
- .ok|.ok,*) m4_ifvaln($3,$3) ;;
2641
- .|.no|.no,*) m4_default($4,[m4_ifval($2,[AX_APPEND_FLAG([$2], [$1])])]) ;;
2642
- *) m4_default($3,[AX_APPEND_FLAG([$VAR], [$1])]) ;;
2643
- esac
2644
- AS_VAR_POPDEF([VAR])dnl
2645
- ])
2646
- m4trace:m4/ax_cflags_warn_all.m4:106: -1- AC_DEFUN([AX_CFLAGS_WARN_ALL], [dnl
2647
- AC_LANG_PUSH([C])
2648
- AX_FLAGS_WARN_ALL([$1], [$2], [$3], [$4])
2649
- AC_LANG_POP([C])
2650
- ])
2651
- m4trace:m4/ax_cflags_warn_all.m4:112: -1- AC_DEFUN([AX_CXXFLAGS_WARN_ALL], [dnl
2652
- AC_LANG_PUSH([C++])
2653
- AX_FLAGS_WARN_ALL([$1], [$2], [$3], [$4])
2654
- AC_LANG_POP([C++])
2655
- ])
2656
- m4trace:m4/ax_cflags_warn_all.m4:118: -1- AC_DEFUN([AX_FCFLAGS_WARN_ALL], [dnl
2657
- AC_LANG_PUSH([Fortran])
2658
- AX_FLAGS_WARN_ALL([$1], [$2], [$3], [$4])
2659
- AC_LANG_POP([Fortran])
2660
- ])
2661
- m4trace:m4/ax_check_compile_flag.m4:58: -1- AC_DEFUN([AX_CHECK_COMPILE_FLAG], [AC_PREREQ(2.59)dnl for _AC_LANG_PREFIX
2662
- AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl
2663
- AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [
2664
- ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
2665
- _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
2666
- AC_COMPILE_IFELSE([AC_LANG_PROGRAM()],
2667
- [AS_VAR_SET(CACHEVAR,[yes])],
2668
- [AS_VAR_SET(CACHEVAR,[no])])
2669
- _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
2670
- AS_IF([test x"AS_VAR_GET(CACHEVAR)" = xyes],
2671
- [m4_default([$2], :)],
2672
- [m4_default([$3], :)])
2673
- AS_VAR_POPDEF([CACHEVAR])dnl
2674
- ])
2675
- m4trace:m4/ax_compiler_vendor.m4:49: -1- AC_DEFUN([AX_COMPILER_VENDOR], [AC_CACHE_CHECK([for _AC_LANG compiler vendor], ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor,
2676
- [# note: don't check for gcc first since some other compilers define __GNUC__
2677
- vendors="intel: __ICC,__ECC,__INTEL_COMPILER
2678
- ibm: __xlc__,__xlC__,__IBMC__,__IBMCPP__
2679
- pathscale: __PATHCC__,__PATHSCALE__
2680
- clang: __clang__
2681
- gnu: __GNUC__
2682
- sun: __SUNPRO_C,__SUNPRO_CC
2683
- hp: __HP_cc,__HP_aCC
2684
- dec: __DECC,__DECCXX,__DECC_VER,__DECCXX_VER
2685
- borland: __BORLANDC__,__TURBOC__
2686
- comeau: __COMO__
2687
- cray: _CRAYC
2688
- kai: __KCC
2689
- lcc: __LCC__
2690
- sgi: __sgi,sgi
2691
- microsoft: _MSC_VER
2692
- metrowerks: __MWERKS__
2693
- watcom: __WATCOMC__
2694
- portland: __PGI
2695
- unknown: UNKNOWN"
2696
- for ventest in $vendors; do
2697
- case $ventest in
2698
- *:) vendor=$ventest; continue ;;
2699
- *) vencpp="defined("`echo $ventest | sed 's/,/) || defined(/g'`")" ;;
2700
- esac
2701
- AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[
2702
- #if !($vencpp)
2703
- thisisanerror;
2704
- #endif
2705
- ])], [break])
2706
- done
2707
- ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor=`echo $vendor | cut -d: -f1`
2708
- ])
2709
- ])
2710
- m4trace:m4/ax_configure_args.m4:62: -1- AC_DEFUN([AX_CONFIGURE_ARGS], [
2711
- # [$]@ is unsable in 2.60+ but earlier autoconf had no ac_configure_args
2712
- if test "${ac_configure_args+set}" != "set" ; then
2713
- ac_configure_args=
2714
- for ac_arg in ${1+"[$]@"}; do
2715
- ac_configure_args="$ac_configure_args '$ac_arg'"
2716
- done
2717
- fi
2718
- ])
2719
- m4trace:m4/ax_enable_builddir.m4:84: -1- AC_DEFUN([AX_ENABLE_BUILDDIR], [
2720
- AC_REQUIRE([AC_CANONICAL_HOST])[]dnl
2721
- AC_REQUIRE([AX_CONFIGURE_ARGS])[]dnl
2722
- AC_REQUIRE([AM_AUX_DIR_EXPAND])[]dnl
2723
- AC_BEFORE([$0],[AM_INIT_AUTOMAKE])dnl
2724
- AS_VAR_PUSHDEF([SUB],[ax_enable_builddir])dnl
2725
- AS_VAR_PUSHDEF([AUX],[ax_enable_builddir_auxdir])dnl
2726
- AS_VAR_PUSHDEF([SED],[ax_enable_builddir_sed])dnl
2727
- SUB="."
2728
- AC_ARG_ENABLE([builddir], AS_HELP_STRING(
2729
- [--disable-builddir],[disable automatic build in subdir of sources])
2730
- ,[SUB="$enableval"], [SUB="auto"])
2731
- if test ".$ac_srcdir_defaulted" != ".no" ; then
2732
- if test ".$srcdir" = ".." ; then
2733
- if test -f config.status ; then
2734
- AC_MSG_NOTICE(toplevel srcdir already configured... skipping subdir build)
2735
- else
2736
- test ".$SUB" = "." && SUB="."
2737
- test ".$SUB" = ".no" && SUB="."
2738
- test ".$TARGET" = "." && TARGET="$target"
2739
- test ".$SUB" = ".auto" && SUB="m4_ifval([$1], [$1],[$TARGET])"
2740
- if test ".$SUB" != ".." ; then # we know where to go and
2741
- AS_MKDIR_P([$SUB])
2742
- echo __.$SUB.__ > $SUB/conftest.tmp
2743
- cd $SUB
2744
- if grep __.$SUB.__ conftest.tmp >/dev/null 2>/dev/null ; then
2745
- rm conftest.tmp
2746
- AC_MSG_RESULT([continue configure in default builddir "./$SUB"])
2747
- else
2748
- AC_MSG_ERROR([could not change to default builddir "./$SUB"])
2749
- fi
2750
- srcdir=`echo "$SUB" |
2751
- sed -e 's,^\./,,;s,[[^/]]$,&/,;s,[[^/]]*/,../,g;s,[[/]]$,,;'`
2752
- # going to restart from subdirectory location
2753
- test -f $srcdir/config.log && mv $srcdir/config.log .
2754
- test -f $srcdir/confdefs.h && mv $srcdir/confdefs.h .
2755
- test -f $srcdir/conftest.log && mv $srcdir/conftest.log .
2756
- test -f $srcdir/$cache_file && mv $srcdir/$cache_file .
2757
- AC_MSG_RESULT(....exec $SHELL $srcdir/[$]0 "--srcdir=$srcdir" "--enable-builddir=$SUB" ${1+"[$]@"})
2758
- case "[$]0" in # restart
2759
- [[\\/]]* | ?:[[\\/]]*) # Asbolute name
2760
- eval $SHELL "'[$]0'" "'--srcdir=$srcdir'" "'--enable-builddir=$SUB'" $ac_configure_args ;;
2761
- *) eval $SHELL "'$srcdir/[$]0'" "'--srcdir=$srcdir'" "'--enable-builddir=$SUB'" $ac_configure_args ;;
2762
- esac ; exit $?
2763
- fi
2764
- fi
2765
- fi fi
2766
- test ".$SUB" = ".auto" && SUB="."
2767
- dnl ac_path_prog uses "set dummy" to override $@ which would defeat the "exec"
2768
- AC_PATH_PROG(SED,gsed sed, sed)
2769
- AUX="$am_aux_dir"
2770
- AS_VAR_POPDEF([SED])dnl
2771
- AS_VAR_POPDEF([AUX])dnl
2772
- AS_VAR_POPDEF([SUB])dnl
2773
- AC_CONFIG_COMMANDS([buildir],[dnl .............. config.status ..............
2774
- AS_VAR_PUSHDEF([SUB],[ax_enable_builddir])dnl
2775
- AS_VAR_PUSHDEF([TOP],[top_srcdir])dnl
2776
- AS_VAR_PUSHDEF([SRC],[ac_top_srcdir])dnl
2777
- AS_VAR_PUSHDEF([AUX],[ax_enable_builddir_auxdir])dnl
2778
- AS_VAR_PUSHDEF([SED],[ax_enable_builddir_sed])dnl
2779
- pushdef([END],[Makefile.mk])dnl
2780
- pushdef([_ALL],[ifelse([$3],,[-all],[$3])])dnl
2781
- SRC="$ax_enable_builddir_srcdir"
2782
- if test ".$SUB" = ".." ; then
2783
- if test -f "$TOP/Makefile" ; then
2784
- AC_MSG_NOTICE([skipping TOP/Makefile - left untouched])
2785
- else
2786
- AC_MSG_NOTICE([skipping TOP/Makefile - not created])
2787
- fi
2788
- else
2789
- if test -f "$SRC/Makefile" ; then
2790
- a=`grep "^VERSION " "$SRC/Makefile"` ; b=`grep "^VERSION " Makefile`
2791
- test "$a" != "$b" && rm "$SRC/Makefile"
2792
- fi
2793
- if test -f "$SRC/Makefile" ; then
2794
- echo "$SRC/Makefile : $SRC/Makefile.in" > $tmp/conftemp.mk
2795
- echo " []@ echo 'REMOVED,,,' >\$[]@" >> $tmp/conftemp.mk
2796
- eval "${MAKE-make} -f $tmp/conftemp.mk 2>/dev/null >/dev/null"
2797
- if grep '^REMOVED,,,' "$SRC/Makefile" >/dev/null
2798
- then rm $SRC/Makefile ; fi
2799
- cp $tmp/conftemp.mk $SRC/makefiles.mk~ ## DEBUGGING
2800
- fi
2801
- if test ! -f "$SRC/Makefile" ; then
2802
- AC_MSG_NOTICE([create TOP/Makefile guessed from local Makefile])
2803
- x='`' ; cat >$tmp/conftemp.sed <<_EOF
2804
- /^\$/n
2805
- x
2806
- /^\$/bS
2807
- x
2808
- /\\\\\$/{H;d;}
2809
- {H;s/.*//;x;}
2810
- bM
2811
- :S
2812
- x
2813
- /\\\\\$/{h;d;}
2814
- {h;s/.*//;x;}
2815
- :M
2816
- s/\\(\\n\\) /\\1 /g
2817
- /^ /d
2818
- /^[[ ]]*[[\\#]]/d
2819
- /^VPATH *=/d
2820
- s/^srcdir *=.*/srcdir = ./
2821
- s/^top_srcdir *=.*/top_srcdir = ./
2822
- /[[:=]]/!d
2823
- /^\\./d
2824
- dnl Now handle rules (i.e. lines containing ":" but not " = ").
2825
- / = /b
2826
- / .= /b
2827
- /:/!b
2828
- s/:.*/:/
2829
- s/ / /g
2830
- s/ \\([[a-z]][[a-z-]]*[[a-zA-Z0-9]]\\)\\([[ :]]\\)/ \\1 \\1[]_ALL\\2/g
2831
- s/^\\([[a-z]][[a-z-]]*[[a-zA-Z0-9]]\\)\\([[ :]]\\)/\\1 \\1[]_ALL\\2/
2832
- s/ / /g
2833
- /^all all[]_ALL[[ :]]/i\\
2834
- all-configured : all[]_ALL
2835
- dnl dist-all exists... and would make for dist-all-all
2836
- s/ [[a-zA-Z0-9-]]*[]_ALL [[a-zA-Z0-9-]]*[]_ALL[]_ALL//g
2837
- /[]_ALL[]_ALL/d
2838
- a\\
2839
- @ HOST="\$(HOST)\" \\\\\\
2840
- ; test ".\$\$HOST" = "." && HOST=$x sh $AUX/config.guess $x \\\\\\
2841
- ; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\
2842
- ; use=$x basename "\$\@" _ALL $x; n=$x echo \$\$BUILD | wc -w $x \\\\\\
2843
- ; echo "MAKE \$\$HOST : \$\$n * \$\@"; if test "\$\$n" -eq "0" ; then : \\\\\\
2844
- ; BUILD=$x grep "^####.*|" Makefile |tail -1| sed -e 's/.*|//' $x ; fi \\\\\\
2845
- ; test ".\$\$BUILD" = "." && BUILD="." \\\\\\
2846
- ; test "\$\$use" = "\$\@" && BUILD=$x echo "\$\$BUILD" | tail -1 $x \\\\\\
2847
- ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\
2848
- ; (cd "\$\$i" && test ! -f configure && \$(MAKE) \$\$use) || exit; done
2849
- dnl special rule add-on: "dist" copies the tarball to $(PUB). (source tree)
2850
- /dist[]_ALL *:/a\\
2851
- @ HOST="\$(HOST)\" \\\\\\
2852
- ; test ".\$\$HOST" = "." && HOST=$x sh $AUX/config.guess $x \\\\\\
2853
- ; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\
2854
- ; found=$x echo \$\$BUILD | wc -w $x \\\\\\
2855
- ; echo "MAKE \$\$HOST : \$\$found \$(PACKAGE)-\$(VERSION).tar.*" \\\\\\
2856
- ; if test "\$\$found" -eq "0" ; then : \\\\\\
2857
- ; BUILD=$x grep "^#### .*|" Makefile |tail -1| sed -e 's/.*|//' $x \\\\\\
2858
- ; fi ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\
2859
- ; for f in \$\$i/\$(PACKAGE)-\$(VERSION).tar.* \\\\\\
2860
- ; do test -f "\$\$f" && mv "\$\$f" \$(PUB). ; done ; break ; done
2861
- dnl special rule add-on: "dist-foo" copies all the archives to $(PUB). (source tree)
2862
- /dist-[[a-zA-Z0-9]]*[]_ALL *:/a\\
2863
- @ HOST="\$(HOST)\" \\\\\\
2864
- ; test ".\$\$HOST" = "." && HOST=$x sh ./config.guess $x \\\\\\
2865
- ; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\
2866
- ; found=$x echo \$\$BUILD | wc -w $x \\\\\\
2867
- ; echo "MAKE \$\$HOST : \$\$found \$(PACKAGE)-\$(VERSION).*" \\\\\\
2868
- ; if test "\$\$found" -eq "0" ; then : \\\\\\
2869
- ; BUILD=$x grep "^#### .*|" Makefile |tail -1| sed -e 's/.*|//' $x \\\\\\
2870
- ; fi ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\
2871
- ; for f in \$\$i/\$(PACKAGE)-\$(VERSION).* \\\\\\
2872
- ; do test -f "\$\$f" && mv "\$\$f" \$(PUB). ; done ; break ; done
2873
- dnl special rule add-on: "distclean" removes all local builddirs completely
2874
- /distclean[]_ALL *:/a\\
2875
- @ HOST="\$(HOST)\" \\\\\\
2876
- ; test ".\$\$HOST" = "." && HOST=$x sh $AUX/config.guess $x \\\\\\
2877
- ; BUILD=$x grep "^#### .*|" Makefile | sed -e 's/.*|//' $x \\\\\\
2878
- ; use=$x basename "\$\@" _ALL $x; n=$x echo \$\$BUILD | wc -w $x \\\\\\
2879
- ; echo "MAKE \$\$HOST : \$\$n * \$\@ (all local builds)" \\\\\\
2880
- ; test ".\$\$BUILD" = "." && BUILD="." \\\\\\
2881
- ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\
2882
- ; echo "# rm -r \$\$i"; done ; echo "# (sleep 3)" ; sleep 3 \\\\\\
2883
- ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\
2884
- ; echo "\$\$i" | grep "^/" > /dev/null && continue \\\\\\
2885
- ; echo "\$\$i" | grep "^../" > /dev/null && continue \\\\\\
2886
- ; echo "rm -r \$\$i"; (rm -r "\$\$i") ; done ; rm Makefile
2887
- _EOF
2888
- cp "$tmp/conftemp.sed" "$SRC/makefile.sed~" ## DEBUGGING
2889
- $SED -f $tmp/conftemp.sed Makefile >$SRC/Makefile
2890
- if test -f "$SRC/m4_ifval([$2],[$2],[END])" ; then
2891
- AC_MSG_NOTICE([extend TOP/Makefile with TOP/m4_ifval([$2],[$2],[END])])
2892
- cat $SRC/END >>$SRC/Makefile
2893
- fi ; xxxx="####"
2894
- echo "$xxxx CONFIGURATIONS FOR TOPLEVEL MAKEFILE: " >>$SRC/Makefile
2895
- # sanity check
2896
- if grep '^; echo "MAKE ' $SRC/Makefile >/dev/null ; then
2897
- AC_MSG_NOTICE([buggy sed found - it deletes tab in "a" text parts])
2898
- $SED -e '/^@ HOST=/s/^/ /' -e '/^; /s/^/ /' $SRC/Makefile \
2899
- >$SRC/Makefile~
2900
- (test -s $SRC/Makefile~ && mv $SRC/Makefile~ $SRC/Makefile) 2>/dev/null
2901
- fi
2902
- else
2903
- xxxx="\\#\\#\\#\\#"
2904
- # echo "/^$xxxx *$ax_enable_builddir_host /d" >$tmp/conftemp.sed
2905
- echo "s!^$xxxx [[^|]]* | *$SUB *\$!$xxxx ...... $SUB!" >$tmp/conftemp.sed
2906
- $SED -f "$tmp/conftemp.sed" "$SRC/Makefile" >$tmp/mkfile.tmp
2907
- cp "$tmp/conftemp.sed" "$SRC/makefiles.sed~" ## DEBUGGING
2908
- cp "$tmp/mkfile.tmp" "$SRC/makefiles.out~" ## DEBUGGING
2909
- if cmp -s "$SRC/Makefile" "$tmp/mkfile.tmp" 2>/dev/null ; then
2910
- AC_MSG_NOTICE([keeping TOP/Makefile from earlier configure])
2911
- rm "$tmp/mkfile.tmp"
2912
- else
2913
- AC_MSG_NOTICE([reusing TOP/Makefile from earlier configure])
2914
- mv "$tmp/mkfile.tmp" "$SRC/Makefile"
2915
- fi
2916
- fi
2917
- AC_MSG_NOTICE([build in $SUB (HOST=$ax_enable_builddir_host)])
2918
- xxxx="####"
2919
- echo "$xxxx" "$ax_enable_builddir_host" "|$SUB" >>$SRC/Makefile
2920
- fi
2921
- popdef([END])dnl
2922
- AS_VAR_POPDEF([SED])dnl
2923
- AS_VAR_POPDEF([AUX])dnl
2924
- AS_VAR_POPDEF([SRC])dnl
2925
- AS_VAR_POPDEF([TOP])dnl
2926
- AS_VAR_POPDEF([SUB])dnl
2927
- ],[dnl
2928
- ax_enable_builddir_srcdir="$srcdir" # $srcdir
2929
- ax_enable_builddir_host="$HOST" # $HOST / $host
2930
- ax_enable_builddir_version="$VERSION" # $VERSION
2931
- ax_enable_builddir_package="$PACKAGE" # $PACKAGE
2932
- ax_enable_builddir_auxdir="$ax_enable_builddir_auxdir" # $AUX
2933
- ax_enable_builddir_sed="$ax_enable_builddir_sed" # $SED
2934
- ax_enable_builddir="$ax_enable_builddir" # $SUB
2935
- ])dnl
2936
- ])
2937
- m4trace:m4/ax_gcc_archflag.m4:69: -1- AC_DEFUN([AX_GCC_ARCHFLAG], [AC_REQUIRE([AC_PROG_CC])
2938
- AC_REQUIRE([AC_CANONICAL_HOST])
2939
-
2940
- AC_ARG_WITH(gcc-arch, [AS_HELP_STRING([--with-gcc-arch=<arch>], [use architecture <arch> for gcc -march/-mtune, instead of guessing])],
2941
- ax_gcc_arch=$withval, ax_gcc_arch=yes)
2942
-
2943
- AC_MSG_CHECKING([for gcc architecture flag])
2944
- AC_MSG_RESULT([])
2945
- AC_CACHE_VAL(ax_cv_gcc_archflag,
2946
- [
2947
- ax_cv_gcc_archflag="unknown"
2948
-
2949
- if test "$GCC" = yes; then
2950
-
2951
- if test "x$ax_gcc_arch" = xyes; then
2952
- ax_gcc_arch=""
2953
- if test "$cross_compiling" = no; then
2954
- case $host_cpu in
2955
- i[[3456]]86*|x86_64*) # use cpuid codes
2956
- AX_GCC_X86_CPUID(0)
2957
- AX_GCC_X86_CPUID(1)
2958
- case $ax_cv_gcc_x86_cpuid_0 in
2959
- *:756e6547:*:*) # Intel
2960
- case $ax_cv_gcc_x86_cpuid_1 in
2961
- *5[[48]]?:*:*:*) ax_gcc_arch="pentium-mmx pentium" ;;
2962
- *5??:*:*:*) ax_gcc_arch=pentium ;;
2963
- *0?6[[3456]]?:*:*:*) ax_gcc_arch="pentium2 pentiumpro" ;;
2964
- *0?6a?:*[[01]]:*:*) ax_gcc_arch="pentium2 pentiumpro" ;;
2965
- *0?6a?:*[[234]]:*:*) ax_gcc_arch="pentium3 pentiumpro" ;;
2966
- *0?6[[9de]]?:*:*:*) ax_gcc_arch="pentium-m pentium3 pentiumpro" ;;
2967
- *0?6[[78b]]?:*:*:*) ax_gcc_arch="pentium3 pentiumpro" ;;
2968
- *0?6f?:*:*:*|*1?66?:*:*:*) ax_gcc_arch="core2 pentium-m pentium3 pentiumpro" ;;
2969
- *1?6[[7d]]?:*:*:*) ax_gcc_arch="penryn core2 pentium-m pentium3 pentiumpro" ;;
2970
- *1?6[[aef]]?:*:*:*|*2?6[[5cef]]?:*:*:*) ax_gcc_arch="corei7 core2 pentium-m pentium3 pentiumpro" ;;
2971
- *1?6c?:*:*:*|*[[23]]?66?:*:*:*) ax_gcc_arch="atom core2 pentium-m pentium3 pentiumpro" ;;
2972
- *2?6[[ad]]?:*:*:*) ax_gcc_arch="corei7-avx corei7 core2 pentium-m pentium3 pentiumpro" ;;
2973
- *0?6??:*:*:*) ax_gcc_arch=pentiumpro ;;
2974
- *6??:*:*:*) ax_gcc_arch="core2 pentiumpro" ;;
2975
- ?000?f3[[347]]:*:*:*|?000?f4[1347]:*:*:*|?000?f6?:*:*:*)
2976
- case $host_cpu in
2977
- x86_64*) ax_gcc_arch="nocona pentium4 pentiumpro" ;;
2978
- *) ax_gcc_arch="prescott pentium4 pentiumpro" ;;
2979
- esac ;;
2980
- ?000?f??:*:*:*) ax_gcc_arch="pentium4 pentiumpro";;
2981
- esac ;;
2982
- *:68747541:*:*) # AMD
2983
- case $ax_cv_gcc_x86_cpuid_1 in
2984
- *5[[67]]?:*:*:*) ax_gcc_arch=k6 ;;
2985
- *5[[8d]]?:*:*:*) ax_gcc_arch="k6-2 k6" ;;
2986
- *5[[9]]?:*:*:*) ax_gcc_arch="k6-3 k6" ;;
2987
- *60?:*:*:*) ax_gcc_arch=k7 ;;
2988
- *6[[12]]?:*:*:*) ax_gcc_arch="athlon k7" ;;
2989
- *6[[34]]?:*:*:*) ax_gcc_arch="athlon-tbird k7" ;;
2990
- *67?:*:*:*) ax_gcc_arch="athlon-4 athlon k7" ;;
2991
- *6[[68a]]?:*:*:*)
2992
- AX_GCC_X86_CPUID(0x80000006) # L2 cache size
2993
- case $ax_cv_gcc_x86_cpuid_0x80000006 in
2994
- *:*:*[[1-9a-f]]??????:*) # (L2 = ecx >> 16) >= 256
2995
- ax_gcc_arch="athlon-xp athlon-4 athlon k7" ;;
2996
- *) ax_gcc_arch="athlon-4 athlon k7" ;;
2997
- esac ;;
2998
- ?00??f[[4cef8b]]?:*:*:*) ax_gcc_arch="athlon64 k8" ;;
2999
- ?00??f5?:*:*:*) ax_gcc_arch="opteron k8" ;;
3000
- ?00??f7?:*:*:*) ax_gcc_arch="athlon-fx opteron k8" ;;
3001
- ?00??f??:*:*:*) ax_gcc_arch="k8" ;;
3002
- ?05??f??:*:*:*) ax_gcc_arch="btver1 amdfam10 k8" ;;
3003
- ?06??f??:*:*:*) ax_gcc_arch="bdver1 amdfam10 k8" ;;
3004
- *f??:*:*:*) ax_gcc_arch="amdfam10 k8" ;;
3005
- esac ;;
3006
- *:746e6543:*:*) # IDT
3007
- case $ax_cv_gcc_x86_cpuid_1 in
3008
- *54?:*:*:*) ax_gcc_arch=winchip-c6 ;;
3009
- *58?:*:*:*) ax_gcc_arch=winchip2 ;;
3010
- *6[[78]]?:*:*:*) ax_gcc_arch=c3 ;;
3011
- *69?:*:*:*) ax_gcc_arch="c3-2 c3" ;;
3012
- esac ;;
3013
- esac
3014
- if test x"$ax_gcc_arch" = x; then # fallback
3015
- case $host_cpu in
3016
- i586*) ax_gcc_arch=pentium ;;
3017
- i686*) ax_gcc_arch=pentiumpro ;;
3018
- esac
3019
- fi
3020
- ;;
3021
-
3022
- sparc*)
3023
- AC_PATH_PROG([PRTDIAG], [prtdiag], [prtdiag], [$PATH:/usr/platform/`uname -i`/sbin/:/usr/platform/`uname -m`/sbin/])
3024
- cputype=`(((grep cpu /proc/cpuinfo | cut -d: -f2) ; ($PRTDIAG -v |grep -i sparc) ; grep -i cpu /var/run/dmesg.boot ) | head -n 1) 2> /dev/null`
3025
- cputype=`echo "$cputype" | tr -d ' -' | sed 's/SPARCIIi/SPARCII/' | tr $as_cr_LETTERS $as_cr_letters`
3026
- case $cputype in
3027
- *ultrasparciv*) ax_gcc_arch="ultrasparc4 ultrasparc3 ultrasparc v9" ;;
3028
- *ultrasparciii*) ax_gcc_arch="ultrasparc3 ultrasparc v9" ;;
3029
- *ultrasparc*) ax_gcc_arch="ultrasparc v9" ;;
3030
- *supersparc*|*tms390z5[[05]]*) ax_gcc_arch="supersparc v8" ;;
3031
- *hypersparc*|*rt62[[056]]*) ax_gcc_arch="hypersparc v8" ;;
3032
- *cypress*) ax_gcc_arch=cypress ;;
3033
- esac ;;
3034
-
3035
- alphaev5) ax_gcc_arch=ev5 ;;
3036
- alphaev56) ax_gcc_arch=ev56 ;;
3037
- alphapca56) ax_gcc_arch="pca56 ev56" ;;
3038
- alphapca57) ax_gcc_arch="pca57 pca56 ev56" ;;
3039
- alphaev6) ax_gcc_arch=ev6 ;;
3040
- alphaev67) ax_gcc_arch=ev67 ;;
3041
- alphaev68) ax_gcc_arch="ev68 ev67" ;;
3042
- alphaev69) ax_gcc_arch="ev69 ev68 ev67" ;;
3043
- alphaev7) ax_gcc_arch="ev7 ev69 ev68 ev67" ;;
3044
- alphaev79) ax_gcc_arch="ev79 ev7 ev69 ev68 ev67" ;;
3045
-
3046
- powerpc*)
3047
- cputype=`((grep cpu /proc/cpuinfo | head -n 1 | cut -d: -f2 | cut -d, -f1 | sed 's/ //g') ; /usr/bin/machine ; /bin/machine; grep CPU /var/run/dmesg.boot | head -n 1 | cut -d" " -f2) 2> /dev/null`
3048
- cputype=`echo $cputype | sed -e 's/ppc//g;s/ *//g'`
3049
- case $cputype in
3050
- *750*) ax_gcc_arch="750 G3" ;;
3051
- *740[[0-9]]*) ax_gcc_arch="$cputype 7400 G4" ;;
3052
- *74[[4-5]][[0-9]]*) ax_gcc_arch="$cputype 7450 G4" ;;
3053
- *74[[0-9]][[0-9]]*) ax_gcc_arch="$cputype G4" ;;
3054
- *970*) ax_gcc_arch="970 G5 power4";;
3055
- *POWER4*|*power4*|*gq*) ax_gcc_arch="power4 970";;
3056
- *POWER5*|*power5*|*gr*|*gs*) ax_gcc_arch="power5 power4 970";;
3057
- 603ev|8240) ax_gcc_arch="$cputype 603e 603";;
3058
- *) ax_gcc_arch=$cputype ;;
3059
- esac
3060
- ax_gcc_arch="$ax_gcc_arch powerpc"
3061
- ;;
3062
- esac
3063
- fi # not cross-compiling
3064
- fi # guess arch
3065
-
3066
- if test "x$ax_gcc_arch" != x -a "x$ax_gcc_arch" != xno; then
3067
- for arch in $ax_gcc_arch; do
3068
- if test "x[]m4_default([$1],yes)" = xyes; then # if we require portable code
3069
- flags="-mtune=$arch"
3070
- # -mcpu=$arch and m$arch generate nonportable code on every arch except
3071
- # x86. And some other arches (e.g. Alpha) don't accept -mtune. Grrr.
3072
- case $host_cpu in i*86|x86_64*) flags="$flags -mcpu=$arch -m$arch";; esac
3073
- else
3074
- flags="-march=$arch -mcpu=$arch -m$arch"
3075
- fi
3076
- for flag in $flags; do
3077
- AX_CHECK_COMPILE_FLAG($flag, [ax_cv_gcc_archflag=$flag; break])
3078
- done
3079
- test "x$ax_cv_gcc_archflag" = xunknown || break
3080
- done
3081
- fi
3082
-
3083
- fi # $GCC=yes
3084
- ])
3085
- AC_MSG_CHECKING([for gcc architecture flag])
3086
- AC_MSG_RESULT($ax_cv_gcc_archflag)
3087
- if test "x$ax_cv_gcc_archflag" = xunknown; then
3088
- m4_default([$3],:)
3089
- else
3090
- m4_default([$2], [CFLAGS="$CFLAGS $ax_cv_gcc_archflag"])
3091
- fi
3092
- ])
3093
- m4trace:m4/ax_gcc_x86_cpuid.m4:60: -1- AC_DEFUN([AX_GCC_X86_CPUID], [AC_REQUIRE([AC_PROG_CC])
3094
- AC_LANG_PUSH([C])
3095
- AC_CACHE_CHECK(for x86 cpuid $1 output, ax_cv_gcc_x86_cpuid_$1,
3096
- [AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdio.h>], [
3097
- int op = $1, eax, ebx, ecx, edx;
3098
- FILE *f;
3099
- __asm__("cpuid"
3100
- : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx)
3101
- : "a" (op));
3102
- f = fopen("conftest_cpuid", "w"); if (!f) return 1;
3103
- fprintf(f, "%x:%x:%x:%x\n", eax, ebx, ecx, edx);
3104
- fclose(f);
3105
- return 0;
3106
- ])],
3107
- [ax_cv_gcc_x86_cpuid_$1=`cat conftest_cpuid`; rm -f conftest_cpuid],
3108
- [ax_cv_gcc_x86_cpuid_$1=unknown; rm -f conftest_cpuid],
3109
- [ax_cv_gcc_x86_cpuid_$1=unknown])])
3110
- AC_LANG_POP([C])
3111
- ])
3112
- m4trace:acinclude.m4:3: -1- AC_DEFUN([AC_FUNC_MMAP_BLACKLIST], [
3113
- AC_CHECK_HEADER([sys/mman.h],
3114
- [libffi_header_sys_mman_h=yes], [libffi_header_sys_mman_h=no])
3115
- AC_CHECK_FUNC([mmap], [libffi_func_mmap=yes], [libffi_func_mmap=no])
3116
- if test "$libffi_header_sys_mman_h" != yes \
3117
- || test "$libffi_func_mmap" != yes; then
3118
- ac_cv_func_mmap_file=no
3119
- ac_cv_func_mmap_dev_zero=no
3120
- ac_cv_func_mmap_anon=no
3121
- else
3122
- AC_CACHE_CHECK([whether read-only mmap of a plain file works],
3123
- ac_cv_func_mmap_file,
3124
- [# Add a system to this blacklist if
3125
- # mmap(0, stat_size, PROT_READ, MAP_PRIVATE, fd, 0) doesn't return a
3126
- # memory area containing the same data that you'd get if you applied
3127
- # read() to the same fd. The only system known to have a problem here
3128
- # is VMS, where text files have record structure.
3129
- case "$host_os" in
3130
- vms* | ultrix*)
3131
- ac_cv_func_mmap_file=no ;;
3132
- *)
3133
- ac_cv_func_mmap_file=yes;;
3134
- esac])
3135
- AC_CACHE_CHECK([whether mmap from /dev/zero works],
3136
- ac_cv_func_mmap_dev_zero,
3137
- [# Add a system to this blacklist if it has mmap() but /dev/zero
3138
- # does not exist, or if mmapping /dev/zero does not give anonymous
3139
- # zeroed pages with both the following properties:
3140
- # 1. If you map N consecutive pages in with one call, and then
3141
- # unmap any subset of those pages, the pages that were not
3142
- # explicitly unmapped remain accessible.
3143
- # 2. If you map two adjacent blocks of memory and then unmap them
3144
- # both at once, they must both go away.
3145
- # Systems known to be in this category are Windows (all variants),
3146
- # VMS, and Darwin.
3147
- case "$host_os" in
3148
- vms* | cygwin* | pe | mingw* | darwin* | ultrix* | hpux10* | hpux11.00)
3149
- ac_cv_func_mmap_dev_zero=no ;;
3150
- *)
3151
- ac_cv_func_mmap_dev_zero=yes;;
3152
- esac])
3153
-
3154
- # Unlike /dev/zero, the MAP_ANON(YMOUS) defines can be probed for.
3155
- AC_CACHE_CHECK([for MAP_ANON(YMOUS)], ac_cv_decl_map_anon,
3156
- [AC_TRY_COMPILE(
3157
- [#include <sys/types.h>
3158
- #include <sys/mman.h>
3159
- #include <unistd.h>
3160
-
3161
- #ifndef MAP_ANONYMOUS
3162
- #define MAP_ANONYMOUS MAP_ANON
3163
- #endif
3164
- ],
3165
- [int n = MAP_ANONYMOUS;],
3166
- ac_cv_decl_map_anon=yes,
3167
- ac_cv_decl_map_anon=no)])
3168
-
3169
- if test $ac_cv_decl_map_anon = no; then
3170
- ac_cv_func_mmap_anon=no
3171
- else
3172
- AC_CACHE_CHECK([whether mmap with MAP_ANON(YMOUS) works],
3173
- ac_cv_func_mmap_anon,
3174
- [# Add a system to this blacklist if it has mmap() and MAP_ANON or
3175
- # MAP_ANONYMOUS, but using mmap(..., MAP_PRIVATE|MAP_ANONYMOUS, -1, 0)
3176
- # doesn't give anonymous zeroed pages with the same properties listed
3177
- # above for use of /dev/zero.
3178
- # Systems known to be in this category are Windows, VMS, and SCO Unix.
3179
- case "$host_os" in
3180
- vms* | cygwin* | pe | mingw* | sco* | udk* )
3181
- ac_cv_func_mmap_anon=no ;;
3182
- *)
3183
- ac_cv_func_mmap_anon=yes;;
3184
- esac])
3185
- fi
3186
- fi
3187
-
3188
- if test $ac_cv_func_mmap_file = yes; then
3189
- AC_DEFINE(HAVE_MMAP_FILE, 1,
3190
- [Define if read-only mmap of a plain file works.])
3191
- fi
3192
- if test $ac_cv_func_mmap_dev_zero = yes; then
3193
- AC_DEFINE(HAVE_MMAP_DEV_ZERO, 1,
3194
- [Define if mmap of /dev/zero works.])
3195
- fi
3196
- if test $ac_cv_func_mmap_anon = yes; then
3197
- AC_DEFINE(HAVE_MMAP_ANON, 1,
3198
- [Define if mmap with MAP_ANON(YMOUS) works.])
3199
- fi
3200
- ])
3201
- m4trace:acinclude.m4:149: -1- AC_DEFUN([LIBFFI_CHECK_LINKER_FEATURES], [
3202
- # If we're not using GNU ld, then there's no point in even trying these
3203
- # tests. Check for that first. We should have already tested for gld
3204
- # by now (in libtool), but require it now just to be safe...
3205
- test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS=''
3206
- test -z "$OPT_LDFLAGS" && OPT_LDFLAGS=''
3207
- AC_REQUIRE([AC_PROG_LD])
3208
- AC_REQUIRE([AC_PROG_AWK])
3209
-
3210
- # The name set by libtool depends on the version of libtool. Shame on us
3211
- # for depending on an impl detail, but c'est la vie. Older versions used
3212
- # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on
3213
- # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually
3214
- # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't
3215
- # set (hence we're using an older libtool), then set it.
3216
- if test x${with_gnu_ld+set} != xset; then
3217
- if test x${ac_cv_prog_gnu_ld+set} != xset; then
3218
- # We got through "ac_require(ac_prog_ld)" and still not set? Huh?
3219
- with_gnu_ld=no
3220
- else
3221
- with_gnu_ld=$ac_cv_prog_gnu_ld
3222
- fi
3223
- fi
3224
-
3225
- # Start by getting the version number. I think the libtool test already
3226
- # does some of this, but throws away the result.
3227
- libat_ld_is_gold=no
3228
- if $LD --version 2>/dev/null | grep 'GNU gold'> /dev/null 2>&1; then
3229
- libat_ld_is_gold=yes
3230
- fi
3231
- changequote(,)
3232
- ldver=`$LD --version 2>/dev/null |
3233
- sed -e 's/GNU gold /GNU ld /;s/GNU ld version /GNU ld /;s/GNU ld ([^)]*) /GNU ld /;s/GNU ld \([0-9.][0-9.]*\).*/\1/; q'`
3234
- changequote([,])
3235
- libat_gnu_ld_version=`echo $ldver | \
3236
- $AWK -F. '{ if (NF<3) [$]3=0; print ([$]1*100+[$]2)*100+[$]3 }'`
3237
-
3238
- # Set --gc-sections.
3239
- if test "$with_gnu_ld" = "notbroken"; then
3240
- # GNU ld it is! Joy and bunny rabbits!
3241
-
3242
- # All these tests are for C++; save the language and the compiler flags.
3243
- # Need to do this so that g++ won't try to link in libstdc++
3244
- ac_test_CFLAGS="${CFLAGS+set}"
3245
- ac_save_CFLAGS="$CFLAGS"
3246
- CFLAGS='-x c++ -Wl,--gc-sections'
3247
-
3248
- # Check for -Wl,--gc-sections
3249
- # XXX This test is broken at the moment, as symbols required for linking
3250
- # are now in libsupc++ (not built yet). In addition, this test has
3251
- # cored on solaris in the past. In addition, --gc-sections doesn't
3252
- # really work at the moment (keeps on discarding used sections, first
3253
- # .eh_frame and now some of the glibc sections for iconv).
3254
- # Bzzzzt. Thanks for playing, maybe next time.
3255
- AC_MSG_CHECKING([for ld that supports -Wl,--gc-sections])
3256
- AC_TRY_RUN([
3257
- int main(void)
3258
- {
3259
- try { throw 1; }
3260
- catch (...) { };
3261
- return 0;
3262
- }
3263
- ], [ac_sectionLDflags=yes],[ac_sectionLDflags=no], [ac_sectionLDflags=yes])
3264
- if test "$ac_test_CFLAGS" = set; then
3265
- CFLAGS="$ac_save_CFLAGS"
3266
- else
3267
- # this is the suspicious part
3268
- CFLAGS=''
3269
- fi
3270
- if test "$ac_sectionLDflags" = "yes"; then
3271
- SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS"
3272
- fi
3273
- AC_MSG_RESULT($ac_sectionLDflags)
3274
- fi
3275
-
3276
- # Set linker optimization flags.
3277
- if test x"$with_gnu_ld" = x"yes"; then
3278
- OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS"
3279
- fi
3280
-
3281
- AC_SUBST(SECTION_LDFLAGS)
3282
- AC_SUBST(OPT_LDFLAGS)
3283
- ])
3284
- m4trace:acinclude.m4:251: -1- AC_DEFUN([LIBFFI_CHECK_LINKER_FEATURES], [
3285
- # If we're not using GNU ld, then there's no point in even trying these
3286
- # tests. Check for that first. We should have already tested for gld
3287
- # by now (in libtool), but require it now just to be safe...
3288
- test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS=''
3289
- test -z "$OPT_LDFLAGS" && OPT_LDFLAGS=''
3290
- AC_REQUIRE([AC_PROG_LD])
3291
- AC_REQUIRE([AC_PROG_AWK])
3292
-
3293
- # The name set by libtool depends on the version of libtool. Shame on us
3294
- # for depending on an impl detail, but c'est la vie. Older versions used
3295
- # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on
3296
- # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually
3297
- # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't
3298
- # set (hence we're using an older libtool), then set it.
3299
- if test x${with_gnu_ld+set} != xset; then
3300
- if test x${ac_cv_prog_gnu_ld+set} != xset; then
3301
- # We got through "ac_require(ac_prog_ld)" and still not set? Huh?
3302
- with_gnu_ld=no
3303
- else
3304
- with_gnu_ld=$ac_cv_prog_gnu_ld
3305
- fi
3306
- fi
3307
-
3308
- # Start by getting the version number. I think the libtool test already
3309
- # does some of this, but throws away the result.
3310
- libat_ld_is_gold=no
3311
- if $LD --version 2>/dev/null | grep 'GNU gold'> /dev/null 2>&1; then
3312
- libat_ld_is_gold=yes
3313
- fi
3314
- changequote(,)
3315
- ldver=`$LD --version 2>/dev/null |
3316
- sed -e 's/GNU gold /GNU ld /;s/GNU ld version /GNU ld /;s/GNU ld ([^)]*) /GNU ld /;s/GNU ld \([0-9.][0-9.]*\).*/\1/; q'`
3317
- changequote([,])
3318
- libat_gnu_ld_version=`echo $ldver | \
3319
- $AWK -F. '{ if (NF<3) [$]3=0; print ([$]1*100+[$]2)*100+[$]3 }'`
3320
-
3321
- # Set --gc-sections.
3322
- if test "$with_gnu_ld" = "notbroken"; then
3323
- # GNU ld it is! Joy and bunny rabbits!
3324
-
3325
- # All these tests are for C++; save the language and the compiler flags.
3326
- # Need to do this so that g++ won't try to link in libstdc++
3327
- ac_test_CFLAGS="${CFLAGS+set}"
3328
- ac_save_CFLAGS="$CFLAGS"
3329
- CFLAGS='-x c++ -Wl,--gc-sections'
3330
-
3331
- # Check for -Wl,--gc-sections
3332
- # XXX This test is broken at the moment, as symbols required for linking
3333
- # are now in libsupc++ (not built yet). In addition, this test has
3334
- # cored on solaris in the past. In addition, --gc-sections doesn't
3335
- # really work at the moment (keeps on discarding used sections, first
3336
- # .eh_frame and now some of the glibc sections for iconv).
3337
- # Bzzzzt. Thanks for playing, maybe next time.
3338
- AC_MSG_CHECKING([for ld that supports -Wl,--gc-sections])
3339
- AC_TRY_RUN([
3340
- int main(void)
3341
- {
3342
- try { throw 1; }
3343
- catch (...) { };
3344
- return 0;
3345
- }
3346
- ], [ac_sectionLDflags=yes],[ac_sectionLDflags=no], [ac_sectionLDflags=yes])
3347
- if test "$ac_test_CFLAGS" = set; then
3348
- CFLAGS="$ac_save_CFLAGS"
3349
- else
3350
- # this is the suspicious part
3351
- CFLAGS=''
3352
- fi
3353
- if test "$ac_sectionLDflags" = "yes"; then
3354
- SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS"
3355
- fi
3356
- AC_MSG_RESULT($ac_sectionLDflags)
3357
- fi
3358
-
3359
- # Set linker optimization flags.
3360
- if test x"$with_gnu_ld" = x"yes"; then
3361
- OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS"
3362
- fi
3363
-
3364
- AC_SUBST(SECTION_LDFLAGS)
3365
- AC_SUBST(OPT_LDFLAGS)
3366
- ])
3367
- m4trace:acinclude.m4:349: -1- AC_DEFUN([LIBFFI_ENABLE_SYMVERS], [
3368
-
3369
- LIBFFI_ENABLE(symvers,yes,[=STYLE],
3370
- [enables symbol versioning of the shared library],
3371
- [permit yes|no|gnu*|sun])
3372
-
3373
- # If we never went through the LIBFFI_CHECK_LINKER_FEATURES macro, then we
3374
- # don't know enough about $LD to do tricks...
3375
- AC_REQUIRE([LIBFFI_CHECK_LINKER_FEATURES])
3376
-
3377
- # Turn a 'yes' into a suitable default.
3378
- if test x$enable_symvers = xyes ; then
3379
- # FIXME The following test is too strict, in theory.
3380
- if test $enable_shared = no || test "x$LD" = x; then
3381
- enable_symvers=no
3382
- else
3383
- if test $with_gnu_ld = yes ; then
3384
- enable_symvers=gnu
3385
- else
3386
- case ${target_os} in
3387
- # Sun symbol versioning exists since Solaris 2.5.
3388
- solaris2.[[5-9]]* | solaris2.1[[0-9]]*)
3389
- enable_symvers=sun ;;
3390
- *)
3391
- enable_symvers=no ;;
3392
- esac
3393
- fi
3394
- fi
3395
- fi
3396
-
3397
- # Check if 'sun' was requested on non-Solaris 2 platforms.
3398
- if test x$enable_symvers = xsun ; then
3399
- case ${target_os} in
3400
- solaris2*)
3401
- # All fine.
3402
- ;;
3403
- *)
3404
- # Unlikely to work.
3405
- AC_MSG_WARN([=== You have requested Sun symbol versioning, but])
3406
- AC_MSG_WARN([=== you are not targetting Solaris 2.])
3407
- AC_MSG_WARN([=== Symbol versioning will be disabled.])
3408
- enable_symvers=no
3409
- ;;
3410
- esac
3411
- fi
3412
-
3413
- # Check to see if libgcc_s exists, indicating that shared libgcc is possible.
3414
- if test $enable_symvers != no; then
3415
- AC_MSG_CHECKING([for shared libgcc])
3416
- ac_save_CFLAGS="$CFLAGS"
3417
- CFLAGS=' -lgcc_s'
3418
- AC_TRY_LINK(, [return 0;], libat_shared_libgcc=yes, libat_shared_libgcc=no)
3419
- CFLAGS="$ac_save_CFLAGS"
3420
- if test $libat_shared_libgcc = no; then
3421
- cat > conftest.c <<EOF
3422
- int main (void) { return 0; }
3423
- EOF
3424
- changequote(,)dnl
3425
- libat_libgcc_s_suffix=`${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS \
3426
- -shared -shared-libgcc -o conftest.so \
3427
- conftest.c -v 2>&1 >/dev/null \
3428
- | sed -n 's/^.* -lgcc_s\([^ ]*\) .*$/\1/p'`
3429
- changequote([,])dnl
3430
- rm -f conftest.c conftest.so
3431
- if test x${libat_libgcc_s_suffix+set} = xset; then
3432
- CFLAGS=" -lgcc_s$libat_libgcc_s_suffix"
3433
- AC_TRY_LINK(, [return 0;], libat_shared_libgcc=yes)
3434
- CFLAGS="$ac_save_CFLAGS"
3435
- fi
3436
- fi
3437
- AC_MSG_RESULT($libat_shared_libgcc)
3438
- fi
3439
-
3440
- # For GNU ld, we need at least this version. The format is described in
3441
- # LIBFFI_CHECK_LINKER_FEATURES above.
3442
- libat_min_gnu_ld_version=21400
3443
- # XXXXXXXXXXX libat_gnu_ld_version=21390
3444
-
3445
- # Check to see if unspecified "yes" value can win, given results above.
3446
- # Change "yes" into either "no" or a style name.
3447
- if test $enable_symvers != no && test $libat_shared_libgcc = yes; then
3448
- if test $with_gnu_ld = yes; then
3449
- if test $libat_gnu_ld_version -ge $libat_min_gnu_ld_version ; then
3450
- enable_symvers=gnu
3451
- elif test $libat_ld_is_gold = yes ; then
3452
- enable_symvers=gnu
3453
- else
3454
- # The right tools, the right setup, but too old. Fallbacks?
3455
- AC_MSG_WARN(=== Linker version $libat_gnu_ld_version is too old for)
3456
- AC_MSG_WARN(=== full symbol versioning support in this release of GCC.)
3457
- AC_MSG_WARN(=== You would need to upgrade your binutils to version)
3458
- AC_MSG_WARN(=== $libat_min_gnu_ld_version or later and rebuild GCC.)
3459
- if test $libat_gnu_ld_version -ge 21200 ; then
3460
- # Globbing fix is present, proper block support is not.
3461
- dnl AC_MSG_WARN([=== Dude, you are soooo close. Maybe we can fake it.])
3462
- dnl enable_symvers=???
3463
- AC_MSG_WARN([=== Symbol versioning will be disabled.])
3464
- enable_symvers=no
3465
- else
3466
- # 2.11 or older.
3467
- AC_MSG_WARN([=== Symbol versioning will be disabled.])
3468
- enable_symvers=no
3469
- fi
3470
- fi
3471
- elif test $enable_symvers = sun; then
3472
- : All interesting versions of Sun ld support sun style symbol versioning.
3473
- else
3474
- # just fail for now
3475
- AC_MSG_WARN([=== You have requested some kind of symbol versioning, but])
3476
- AC_MSG_WARN([=== either you are not using a supported linker, or you are])
3477
- AC_MSG_WARN([=== not building a shared libgcc_s (which is required).])
3478
- AC_MSG_WARN([=== Symbol versioning will be disabled.])
3479
- enable_symvers=no
3480
- fi
3481
- fi
3482
- if test $enable_symvers = gnu; then
3483
- AC_DEFINE(LIBFFI_GNU_SYMBOL_VERSIONING, 1,
3484
- [Define to 1 if GNU symbol versioning is used for libatomic.])
3485
- fi
3486
-
3487
- AM_CONDITIONAL(LIBFFI_BUILD_VERSIONED_SHLIB, test $enable_symvers != no)
3488
- AM_CONDITIONAL(LIBFFI_BUILD_VERSIONED_SHLIB_GNU, test $enable_symvers = gnu)
3489
- AM_CONDITIONAL(LIBFFI_BUILD_VERSIONED_SHLIB_SUN, test $enable_symvers = sun)
3490
- AC_MSG_NOTICE(versioning on shared library symbols is $enable_symvers)
3491
- ])
3492
- m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?A[CHUM]_])
3493
- m4trace:configure.ac:5: -1- m4_pattern_forbid([_AC_])
3494
- m4trace:configure.ac:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
3495
- m4trace:configure.ac:5: -1- m4_pattern_allow([^AS_FLAGS$])
3496
- m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?m4_])
3497
- m4trace:configure.ac:5: -1- m4_pattern_forbid([^dnl$])
3498
- m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?AS_])
3499
- m4trace:configure.ac:5: -1- m4_pattern_allow([^SHELL$])
3500
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PATH_SEPARATOR$])
3501
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
3502
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
3503
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
3504
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
3505
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
3506
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
3507
- m4trace:configure.ac:5: -1- m4_pattern_allow([^exec_prefix$])
3508
- m4trace:configure.ac:5: -1- m4_pattern_allow([^prefix$])
3509
- m4trace:configure.ac:5: -1- m4_pattern_allow([^program_transform_name$])
3510
- m4trace:configure.ac:5: -1- m4_pattern_allow([^bindir$])
3511
- m4trace:configure.ac:5: -1- m4_pattern_allow([^sbindir$])
3512
- m4trace:configure.ac:5: -1- m4_pattern_allow([^libexecdir$])
3513
- m4trace:configure.ac:5: -1- m4_pattern_allow([^datarootdir$])
3514
- m4trace:configure.ac:5: -1- m4_pattern_allow([^datadir$])
3515
- m4trace:configure.ac:5: -1- m4_pattern_allow([^sysconfdir$])
3516
- m4trace:configure.ac:5: -1- m4_pattern_allow([^sharedstatedir$])
3517
- m4trace:configure.ac:5: -1- m4_pattern_allow([^localstatedir$])
3518
- m4trace:configure.ac:5: -1- m4_pattern_allow([^runstatedir$])
3519
- m4trace:configure.ac:5: -1- m4_pattern_allow([^includedir$])
3520
- m4trace:configure.ac:5: -1- m4_pattern_allow([^oldincludedir$])
3521
- m4trace:configure.ac:5: -1- m4_pattern_allow([^docdir$])
3522
- m4trace:configure.ac:5: -1- m4_pattern_allow([^infodir$])
3523
- m4trace:configure.ac:5: -1- m4_pattern_allow([^htmldir$])
3524
- m4trace:configure.ac:5: -1- m4_pattern_allow([^dvidir$])
3525
- m4trace:configure.ac:5: -1- m4_pattern_allow([^pdfdir$])
3526
- m4trace:configure.ac:5: -1- m4_pattern_allow([^psdir$])
3527
- m4trace:configure.ac:5: -1- m4_pattern_allow([^libdir$])
3528
- m4trace:configure.ac:5: -1- m4_pattern_allow([^localedir$])
3529
- m4trace:configure.ac:5: -1- m4_pattern_allow([^mandir$])
3530
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
3531
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
3532
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
3533
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
3534
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
3535
- m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
3536
- m4trace:configure.ac:5: -1- m4_pattern_allow([^DEFS$])
3537
- m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_C$])
3538
- m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_N$])
3539
- m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_T$])
3540
- m4trace:configure.ac:5: -1- m4_pattern_allow([^LIBS$])
3541
- m4trace:configure.ac:5: -1- m4_pattern_allow([^build_alias$])
3542
- m4trace:configure.ac:5: -1- m4_pattern_allow([^host_alias$])
3543
- m4trace:configure.ac:5: -1- m4_pattern_allow([^target_alias$])
3544
- m4trace:configure.ac:8: -1- _m4_warn([obsolete], [The macro `AC_CANONICAL_SYSTEM' is obsolete.
3545
- You should run autoupdate.], [../../lib/autoconf/general.m4:1868: AC_CANONICAL_SYSTEM is expanded from...
3546
- configure.ac:8: the top level])
3547
- m4trace:configure.ac:8: -1- m4_pattern_allow([^build$])
3548
- m4trace:configure.ac:8: -1- m4_pattern_allow([^build_cpu$])
3549
- m4trace:configure.ac:8: -1- m4_pattern_allow([^build_vendor$])
3550
- m4trace:configure.ac:8: -1- m4_pattern_allow([^build_os$])
3551
- m4trace:configure.ac:8: -1- m4_pattern_allow([^host$])
3552
- m4trace:configure.ac:8: -1- m4_pattern_allow([^host_cpu$])
3553
- m4trace:configure.ac:8: -1- m4_pattern_allow([^host_vendor$])
3554
- m4trace:configure.ac:8: -1- m4_pattern_allow([^host_os$])
3555
- m4trace:configure.ac:8: -1- m4_pattern_allow([^target$])
3556
- m4trace:configure.ac:8: -1- m4_pattern_allow([^target_cpu$])
3557
- m4trace:configure.ac:8: -1- m4_pattern_allow([^target_vendor$])
3558
- m4trace:configure.ac:8: -1- m4_pattern_allow([^target_os$])
3559
- m4trace:configure.ac:17: -1- AX_ENABLE_BUILDDIR
3560
- m4trace:configure.ac:17: -1- AX_CONFIGURE_ARGS
3561
- m4trace:configure.ac:17: -1- AM_AUX_DIR_EXPAND
3562
- m4trace:configure.ac:17: -1- m4_pattern_allow([^ax_enable_builddir_sed$])
3563
- m4trace:configure.ac:19: -1- AM_INIT_AUTOMAKE
3564
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
3565
- m4trace:configure.ac:19: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
3566
- m4trace:configure.ac:19: -1- AM_AUTOMAKE_VERSION([1.15])
3567
- m4trace:configure.ac:19: -1- _AM_AUTOCONF_VERSION([2.69])
3568
- m4trace:configure.ac:19: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
3569
- m4trace:configure.ac:19: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
3570
- m4trace:configure.ac:19: -1- m4_pattern_allow([^INSTALL_DATA$])
3571
- m4trace:configure.ac:19: -1- m4_pattern_allow([^am__isrc$])
3572
- m4trace:configure.ac:19: -1- _AM_SUBST_NOTMAKE([am__isrc])
3573
- m4trace:configure.ac:19: -1- m4_pattern_allow([^CYGPATH_W$])
3574
- m4trace:configure.ac:19: -1- _AM_SET_OPTIONS([])
3575
- m4trace:configure.ac:19: -1- m4_pattern_allow([^PACKAGE$])
3576
- m4trace:configure.ac:19: -1- m4_pattern_allow([^VERSION$])
3577
- m4trace:configure.ac:19: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
3578
- AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
3579
- m4trace:configure.ac:19: -2- _AM_MANGLE_OPTION([no-define])
3580
- m4trace:configure.ac:19: -1- m4_pattern_allow([^PACKAGE$])
3581
- m4trace:configure.ac:19: -1- m4_pattern_allow([^VERSION$])
3582
- m4trace:configure.ac:19: -1- AM_SANITY_CHECK
3583
- m4trace:configure.ac:19: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
3584
- m4trace:configure.ac:19: -1- AM_MISSING_HAS_RUN
3585
- m4trace:configure.ac:19: -1- m4_pattern_allow([^ACLOCAL$])
3586
- m4trace:configure.ac:19: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
3587
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AUTOCONF$])
3588
- m4trace:configure.ac:19: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
3589
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AUTOMAKE$])
3590
- m4trace:configure.ac:19: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
3591
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AUTOHEADER$])
3592
- m4trace:configure.ac:19: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
3593
- m4trace:configure.ac:19: -1- m4_pattern_allow([^MAKEINFO$])
3594
- m4trace:configure.ac:19: -1- AM_PROG_INSTALL_SH
3595
- m4trace:configure.ac:19: -1- m4_pattern_allow([^install_sh$])
3596
- m4trace:configure.ac:19: -1- AM_PROG_INSTALL_STRIP
3597
- m4trace:configure.ac:19: -1- m4_pattern_allow([^STRIP$])
3598
- m4trace:configure.ac:19: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
3599
- m4trace:configure.ac:19: -1- m4_pattern_allow([^MKDIR_P$])
3600
- m4trace:configure.ac:19: -1- m4_pattern_allow([^mkdir_p$])
3601
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AWK$])
3602
- m4trace:configure.ac:19: -1- m4_pattern_allow([^SET_MAKE$])
3603
- m4trace:configure.ac:19: -1- AM_SET_LEADING_DOT
3604
- m4trace:configure.ac:19: -1- m4_pattern_allow([^am__leading_dot$])
3605
- m4trace:configure.ac:19: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
3606
- [_AM_PROG_TAR([v7])])])
3607
- m4trace:configure.ac:19: -2- _AM_MANGLE_OPTION([tar-ustar])
3608
- m4trace:configure.ac:19: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
3609
- m4trace:configure.ac:19: -2- _AM_MANGLE_OPTION([tar-pax])
3610
- m4trace:configure.ac:19: -1- _AM_PROG_TAR([v7])
3611
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AMTAR$])
3612
- m4trace:configure.ac:19: -1- m4_pattern_allow([^am__tar$])
3613
- m4trace:configure.ac:19: -1- m4_pattern_allow([^am__untar$])
3614
- m4trace:configure.ac:19: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
3615
- [_AM_DEPENDENCIES([CC])],
3616
- [m4_define([AC_PROG_CC],
3617
- m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
3618
- AC_PROVIDE_IFELSE([AC_PROG_CXX],
3619
- [_AM_DEPENDENCIES([CXX])],
3620
- [m4_define([AC_PROG_CXX],
3621
- m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
3622
- AC_PROVIDE_IFELSE([AC_PROG_OBJC],
3623
- [_AM_DEPENDENCIES([OBJC])],
3624
- [m4_define([AC_PROG_OBJC],
3625
- m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
3626
- AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
3627
- [_AM_DEPENDENCIES([OBJCXX])],
3628
- [m4_define([AC_PROG_OBJCXX],
3629
- m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
3630
- ])
3631
- m4trace:configure.ac:19: -2- _AM_MANGLE_OPTION([no-dependencies])
3632
- m4trace:configure.ac:19: -1- AM_SILENT_RULES
3633
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AM_V$])
3634
- m4trace:configure.ac:19: -1- AM_SUBST_NOTMAKE([AM_V])
3635
- m4trace:configure.ac:19: -1- _AM_SUBST_NOTMAKE([AM_V])
3636
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AM_DEFAULT_V$])
3637
- m4trace:configure.ac:19: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
3638
- m4trace:configure.ac:19: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
3639
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
3640
- m4trace:configure.ac:19: -1- m4_pattern_allow([^AM_BACKSLASH$])
3641
- m4trace:configure.ac:19: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
3642
- m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$])
3643
- m4trace:configure.ac:31: -1- m4_pattern_allow([^CFLAGS$])
3644
- m4trace:configure.ac:31: -1- m4_pattern_allow([^LDFLAGS$])
3645
- m4trace:configure.ac:31: -1- m4_pattern_allow([^LIBS$])
3646
- m4trace:configure.ac:31: -1- m4_pattern_allow([^CPPFLAGS$])
3647
- m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$])
3648
- m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$])
3649
- m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$])
3650
- m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$])
3651
- m4trace:configure.ac:31: -1- m4_pattern_allow([^ac_ct_CC$])
3652
- m4trace:configure.ac:31: -1- m4_pattern_allow([^EXEEXT$])
3653
- m4trace:configure.ac:31: -1- m4_pattern_allow([^OBJEXT$])
3654
- m4trace:configure.ac:31: -1- _AM_PROG_CC_C_O
3655
- m4trace:configure.ac:31: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
3656
- m4trace:configure.ac:31: -1- _AM_DEPENDENCIES([CC])
3657
- m4trace:configure.ac:31: -1- AM_SET_DEPDIR
3658
- m4trace:configure.ac:31: -1- m4_pattern_allow([^DEPDIR$])
3659
- m4trace:configure.ac:31: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
3660
- m4trace:configure.ac:31: -1- AM_MAKE_INCLUDE
3661
- m4trace:configure.ac:31: -1- m4_pattern_allow([^am__include$])
3662
- m4trace:configure.ac:31: -1- m4_pattern_allow([^am__quote$])
3663
- m4trace:configure.ac:31: -1- AM_DEP_TRACK
3664
- m4trace:configure.ac:31: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
3665
- m4trace:configure.ac:31: -1- m4_pattern_allow([^AMDEP_TRUE$])
3666
- m4trace:configure.ac:31: -1- m4_pattern_allow([^AMDEP_FALSE$])
3667
- m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
3668
- m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
3669
- m4trace:configure.ac:31: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
3670
- m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
3671
- m4trace:configure.ac:31: -1- m4_pattern_allow([^am__nodep$])
3672
- m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([am__nodep])
3673
- m4trace:configure.ac:31: -1- m4_pattern_allow([^CCDEPMODE$])
3674
- m4trace:configure.ac:31: -1- AM_CONDITIONAL([am__fastdepCC], [
3675
- test "x$enable_dependency_tracking" != xno \
3676
- && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
3677
- m4trace:configure.ac:31: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
3678
- m4trace:configure.ac:31: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
3679
- m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
3680
- m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
3681
- m4trace:configure.ac:32: -1- m4_pattern_allow([^CXX$])
3682
- m4trace:configure.ac:32: -1- m4_pattern_allow([^CXXFLAGS$])
3683
- m4trace:configure.ac:32: -1- m4_pattern_allow([^LDFLAGS$])
3684
- m4trace:configure.ac:32: -1- m4_pattern_allow([^LIBS$])
3685
- m4trace:configure.ac:32: -1- m4_pattern_allow([^CPPFLAGS$])
3686
- m4trace:configure.ac:32: -1- m4_pattern_allow([^CXX$])
3687
- m4trace:configure.ac:32: -1- m4_pattern_allow([^ac_ct_CXX$])
3688
- m4trace:configure.ac:32: -1- _AM_DEPENDENCIES([CXX])
3689
- m4trace:configure.ac:32: -1- m4_pattern_allow([^CXXDEPMODE$])
3690
- m4trace:configure.ac:32: -1- AM_CONDITIONAL([am__fastdepCXX], [
3691
- test "x$enable_dependency_tracking" != xno \
3692
- && test "$am_cv_CXX_dependencies_compiler_type" = gcc3])
3693
- m4trace:configure.ac:32: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$])
3694
- m4trace:configure.ac:32: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$])
3695
- m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE])
3696
- m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE])
3697
- m4trace:configure.ac:37: -1- m4_pattern_allow([^CFLAGS$])
3698
- m4trace:configure.ac:39: -1- AM_PROG_AS
3699
- m4trace:configure.ac:39: -1- m4_pattern_allow([^CCAS$])
3700
- m4trace:configure.ac:39: -1- m4_pattern_allow([^CCASFLAGS$])
3701
- m4trace:configure.ac:39: -1- _AM_IF_OPTION([no-dependencies], [], [_AM_DEPENDENCIES([CCAS])])
3702
- m4trace:configure.ac:39: -2- _AM_MANGLE_OPTION([no-dependencies])
3703
- m4trace:configure.ac:39: -1- _AM_DEPENDENCIES([CCAS])
3704
- m4trace:configure.ac:39: -1- m4_pattern_allow([^CCASDEPMODE$])
3705
- m4trace:configure.ac:39: -1- AM_CONDITIONAL([am__fastdepCCAS], [
3706
- test "x$enable_dependency_tracking" != xno \
3707
- && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3])
3708
- m4trace:configure.ac:39: -1- m4_pattern_allow([^am__fastdepCCAS_TRUE$])
3709
- m4trace:configure.ac:39: -1- m4_pattern_allow([^am__fastdepCCAS_FALSE$])
3710
- m4trace:configure.ac:39: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_TRUE])
3711
- m4trace:configure.ac:39: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_FALSE])
3712
- m4trace:configure.ac:40: -1- AM_PROG_CC_C_O
3713
- m4trace:configure.ac:41: -1- AC_PROG_LIBTOOL
3714
- m4trace:configure.ac:41: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
3715
- You should run autoupdate.], [/usr/share/aclocal/libtool.m4:99: AC_PROG_LIBTOOL is expanded from...
3716
- configure.ac:41: the top level])
3717
- m4trace:configure.ac:41: -1- LT_INIT
3718
- m4trace:configure.ac:41: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
3719
- m4trace:configure.ac:41: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
3720
- m4trace:configure.ac:41: -1- LTOPTIONS_VERSION
3721
- m4trace:configure.ac:41: -1- LTSUGAR_VERSION
3722
- m4trace:configure.ac:41: -1- LTVERSION_VERSION
3723
- m4trace:configure.ac:41: -1- LTOBSOLETE_VERSION
3724
- m4trace:configure.ac:41: -1- _LT_PROG_LTMAIN
3725
- m4trace:configure.ac:41: -1- m4_pattern_allow([^LIBTOOL$])
3726
- m4trace:configure.ac:41: -1- _LT_PREPARE_SED_QUOTE_VARS
3727
- m4trace:configure.ac:41: -1- _LT_PROG_ECHO_BACKSLASH
3728
- m4trace:configure.ac:41: -1- LT_PATH_LD
3729
- m4trace:configure.ac:41: -1- m4_pattern_allow([^SED$])
3730
- m4trace:configure.ac:41: -1- AC_PROG_EGREP
3731
- m4trace:configure.ac:41: -1- m4_pattern_allow([^GREP$])
3732
- m4trace:configure.ac:41: -1- m4_pattern_allow([^EGREP$])
3733
- m4trace:configure.ac:41: -1- m4_pattern_allow([^FGREP$])
3734
- m4trace:configure.ac:41: -1- m4_pattern_allow([^GREP$])
3735
- m4trace:configure.ac:41: -1- m4_pattern_allow([^LD$])
3736
- m4trace:configure.ac:41: -1- LT_PATH_NM
3737
- m4trace:configure.ac:41: -1- m4_pattern_allow([^DUMPBIN$])
3738
- m4trace:configure.ac:41: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
3739
- m4trace:configure.ac:41: -1- m4_pattern_allow([^DUMPBIN$])
3740
- m4trace:configure.ac:41: -1- m4_pattern_allow([^NM$])
3741
- m4trace:configure.ac:41: -1- m4_pattern_allow([^LN_S$])
3742
- m4trace:configure.ac:41: -1- LT_CMD_MAX_LEN
3743
- m4trace:configure.ac:41: -1- m4_pattern_allow([^OBJDUMP$])
3744
- m4trace:configure.ac:41: -1- m4_pattern_allow([^OBJDUMP$])
3745
- m4trace:configure.ac:41: -1- m4_pattern_allow([^DLLTOOL$])
3746
- m4trace:configure.ac:41: -1- m4_pattern_allow([^DLLTOOL$])
3747
- m4trace:configure.ac:41: -1- m4_pattern_allow([^AR$])
3748
- m4trace:configure.ac:41: -1- m4_pattern_allow([^ac_ct_AR$])
3749
- m4trace:configure.ac:41: -1- m4_pattern_allow([^STRIP$])
3750
- m4trace:configure.ac:41: -1- m4_pattern_allow([^RANLIB$])
3751
- m4trace:configure.ac:41: -1- _LT_WITH_SYSROOT
3752
- m4trace:configure.ac:41: -1- m4_pattern_allow([LT_OBJDIR])
3753
- m4trace:configure.ac:41: -1- m4_pattern_allow([^LT_OBJDIR$])
3754
- m4trace:configure.ac:41: -1- _LT_CC_BASENAME([$compiler])
3755
- m4trace:configure.ac:41: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
3756
- m4trace:configure.ac:41: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
3757
- m4trace:configure.ac:41: -1- LT_SUPPORTED_TAG([CC])
3758
- m4trace:configure.ac:41: -1- _LT_COMPILER_BOILERPLATE
3759
- m4trace:configure.ac:41: -1- _LT_LINKER_BOILERPLATE
3760
- m4trace:configure.ac:41: -1- _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"])
3761
- m4trace:configure.ac:41: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, ) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, )], [$_LT_TAGVAR(lt_prog_compiler_pic, )@&t@m4_if([],[],[ -DPIC],[m4_if([],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, ) in
3762
- "" | " "*) ;;
3763
- *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
3764
- esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
3765
- _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
3766
- m4trace:configure.ac:41: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, )=])
3767
- m4trace:configure.ac:41: -1- m4_pattern_allow([^MANIFEST_TOOL$])
3768
- m4trace:configure.ac:41: -1- _LT_DLL_DEF_P([$export_symbols])
3769
- m4trace:configure.ac:41: -1- _LT_DLL_DEF_P([$export_symbols])
3770
- m4trace:configure.ac:41: -1- _LT_REQUIRED_DARWIN_CHECKS
3771
- m4trace:configure.ac:41: -1- m4_pattern_allow([^DSYMUTIL$])
3772
- m4trace:configure.ac:41: -1- m4_pattern_allow([^NMEDIT$])
3773
- m4trace:configure.ac:41: -1- m4_pattern_allow([^LIPO$])
3774
- m4trace:configure.ac:41: -1- m4_pattern_allow([^OTOOL$])
3775
- m4trace:configure.ac:41: -1- m4_pattern_allow([^OTOOL64$])
3776
- m4trace:configure.ac:41: -1- _LT_LINKER_OPTION([if $CC understands -b], [lt_cv_prog_compiler__b], [-b], [_LT_TAGVAR(archive_cmds, )='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, )='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])
3777
- m4trace:configure.ac:41: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
3778
- m4trace:configure.ac:41: -1- LT_SYS_DLOPEN_SELF
3779
- m4trace:configure.ac:41: -1- m4_pattern_allow([^CPP$])
3780
- m4trace:configure.ac:41: -1- m4_pattern_allow([^CPPFLAGS$])
3781
- m4trace:configure.ac:41: -1- m4_pattern_allow([^CPP$])
3782
- m4trace:configure.ac:41: -1- m4_pattern_allow([^STDC_HEADERS$])
3783
- m4trace:configure.ac:41: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
3784
- m4trace:configure.ac:41: -1- LT_LANG([CXX])
3785
- m4trace:configure.ac:41: -1- LT_SUPPORTED_TAG([CXX])
3786
- m4trace:configure.ac:41: -1- m4_pattern_allow([^CXXCPP$])
3787
- m4trace:configure.ac:41: -1- m4_pattern_allow([^CPPFLAGS$])
3788
- m4trace:configure.ac:41: -1- m4_pattern_allow([^CXXCPP$])
3789
- m4trace:configure.ac:41: -1- _LT_COMPILER_BOILERPLATE
3790
- m4trace:configure.ac:41: -1- _LT_LINKER_BOILERPLATE
3791
- m4trace:configure.ac:41: -1- _LT_CC_BASENAME([$compiler])
3792
- m4trace:configure.ac:41: -1- LT_PATH_LD
3793
- m4trace:configure.ac:41: -1- m4_pattern_allow([^LD$])
3794
- m4trace:configure.ac:41: -1- _LT_DLL_DEF_P([$export_symbols])
3795
- m4trace:configure.ac:41: -1- _LT_DLL_DEF_P([$export_symbols])
3796
- m4trace:configure.ac:41: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, CXX) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, CXX)], [$_LT_TAGVAR(lt_prog_compiler_pic, CXX)@&t@m4_if([CXX],[],[ -DPIC],[m4_if([CXX],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, CXX) in
3797
- "" | " "*) ;;
3798
- *) _LT_TAGVAR(lt_prog_compiler_pic, CXX)=" $_LT_TAGVAR(lt_prog_compiler_pic, CXX)" ;;
3799
- esac], [_LT_TAGVAR(lt_prog_compiler_pic, CXX)=
3800
- _LT_TAGVAR(lt_prog_compiler_can_build_shared, CXX)=no])
3801
- m4trace:configure.ac:41: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works_CXX], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, CXX)=])
3802
- m4trace:configure.ac:41: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
3803
- m4trace:configure.ac:42: -1- AC_CONFIG_MACRO_DIR([m4])
3804
- m4trace:configure.ac:45: -1- m4_pattern_allow([^SIZEOF_SIZE_T$])
3805
- m4trace:configure.ac:47: -1- AX_COMPILER_VENDOR
3806
- m4trace:configure.ac:48: -1- AX_CC_MAXOPT
3807
- m4trace:configure.ac:48: -1- AX_CHECK_COMPILE_FLAG([$xlc_opt], [CFLAGS="-O3 -qansialias -w $xlc_opt"], [CFLAGS="-O3 -qansialias -w"
3808
- echo "******************************************************"
3809
- echo "* You seem to have the IBM C compiler. It is *"
3810
- echo "* recommended for best performance that you use: *"
3811
- echo "* *"
3812
- echo "* CFLAGS=-O3 -qarch=xxx -qtune=xxx -qansialias -w *"
3813
- echo "* ^^^ ^^^ *"
3814
- echo "* where xxx is pwr2, pwr3, 604, or whatever kind of *"
3815
- echo "* CPU you have. (Set the CFLAGS environment var. *"
3816
- echo "* and re-run configure.) For more info, man cc. *"
3817
- echo "******************************************************"])
3818
- m4trace:configure.ac:48: -1- AX_GCC_X86_CPUID([0])
3819
- m4trace:configure.ac:48: -1- AX_GCC_X86_CPUID([1])
3820
- m4trace:configure.ac:48: -1- AX_CHECK_COMPILE_FLAG([$flag], [icc_archflag=$flag; break])
3821
- m4trace:configure.ac:48: -1- AX_CHECK_COMPILE_FLAG([-fstrict-aliasing], [CFLAGS="$CFLAGS -fstrict-aliasing"])
3822
- m4trace:configure.ac:48: -1- AX_CHECK_COMPILE_FLAG([-ffast-math], [CFLAGS="$CFLAGS -ffast-math"])
3823
- m4trace:configure.ac:48: -1- AX_GCC_ARCHFLAG([$acx_maxopt_portable])
3824
- m4trace:configure.ac:48: -1- AX_GCC_X86_CPUID([0])
3825
- m4trace:configure.ac:48: -1- AX_GCC_X86_CPUID([1])
3826
- m4trace:configure.ac:48: -1- AX_GCC_X86_CPUID([0x80000006])
3827
- m4trace:configure.ac:48: -1- m4_pattern_allow([^PRTDIAG$])
3828
- m4trace:configure.ac:48: -1- AX_CHECK_COMPILE_FLAG([$flag], [ax_cv_gcc_archflag=$flag; break])
3829
- m4trace:configure.ac:48: -1- AX_CHECK_COMPILE_FLAG([$CFLAGS], [], [
3830
- echo ""
3831
- echo "********************************************************"
3832
- echo "* WARNING: The guessed CFLAGS don't seem to work with *"
3833
- echo "* your compiler. *"
3834
- echo "* Use ./configure CFLAGS=... to specify your own flags *"
3835
- echo "********************************************************"
3836
- echo ""
3837
- CFLAGS=""
3838
- ])
3839
- m4trace:configure.ac:52: -1- AX_CFLAGS_WARN_ALL
3840
- m4trace:configure.ac:52: -1- AX_FLAGS_WARN_ALL([], [], [], [])
3841
- m4trace:configure.ac:52: -1- AX_APPEND_FLAG
3842
- m4trace:configure.ac:52: -1- AX_APPEND_FLAG([$VAR], [])
3843
- m4trace:configure.ac:64: -1- AM_MAINTAINER_MODE
3844
- m4trace:configure.ac:64: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
3845
- m4trace:configure.ac:64: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$])
3846
- m4trace:configure.ac:64: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$])
3847
- m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE])
3848
- m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE])
3849
- m4trace:configure.ac:64: -1- m4_pattern_allow([^MAINT$])
3850
- m4trace:configure.ac:66: -1- m4_pattern_allow([^HAVE_SYS_MMAN_H$])
3851
- m4trace:configure.ac:68: -1- AC_FUNC_MMAP_BLACKLIST
3852
- m4trace:configure.ac:68: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
3853
- You should run autoupdate.], [../../lib/autoconf/general.m4:2625: AC_TRY_COMPILE is expanded from...
3854
- ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
3855
- ../../lib/autoconf/general.m4:2042: AC_CACHE_VAL is expanded from...
3856
- ../../lib/autoconf/general.m4:2063: AC_CACHE_CHECK is expanded from...
3857
- acinclude.m4:3: AC_FUNC_MMAP_BLACKLIST is expanded from...
3858
- configure.ac:68: the top level])
3859
- m4trace:configure.ac:68: -1- m4_pattern_allow([^HAVE_MMAP_FILE$])
3860
- m4trace:configure.ac:68: -1- m4_pattern_allow([^HAVE_MMAP_DEV_ZERO$])
3861
- m4trace:configure.ac:68: -1- m4_pattern_allow([^HAVE_MMAP_ANON$])
3862
- m4trace:configure.ac:71: -1- AM_CONDITIONAL([TESTSUBDIR], [test -d $srcdir/testsuite])
3863
- m4trace:configure.ac:71: -1- m4_pattern_allow([^TESTSUBDIR_TRUE$])
3864
- m4trace:configure.ac:71: -1- m4_pattern_allow([^TESTSUBDIR_FALSE$])
3865
- m4trace:configure.ac:71: -1- _AM_SUBST_NOTMAKE([TESTSUBDIR_TRUE])
3866
- m4trace:configure.ac:71: -1- _AM_SUBST_NOTMAKE([TESTSUBDIR_FALSE])
3867
- m4trace:configure.ac:82: -1- m4_pattern_allow([^AM_RUNTESTFLAGS$])
3868
- m4trace:configure.ac:83: -1- m4_pattern_allow([^AM_LTLDFLAGS$])
3869
- m4trace:configure.ac:85: -1- m4_pattern_allow([^STDC_HEADERS$])
3870
- m4trace:configure.ac:86: -1- m4_pattern_allow([^HAVE_MEMCPY$])
3871
- m4trace:configure.ac:87: -1- m4_pattern_allow([^size_t$])
3872
- m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_ALLOCA_H$])
3873
- m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_ALLOCA$])
3874
- m4trace:configure.ac:87: -1- m4_pattern_allow([^ALLOCA$])
3875
- m4trace:configure.ac:87: -1- m4_pattern_allow([^C_ALLOCA$])
3876
- m4trace:configure.ac:87: -1- m4_pattern_allow([^CRAY_STACKSEG_END$])
3877
- m4trace:configure.ac:87: -1- m4_pattern_allow([^STACK_DIRECTION$])
3878
- m4trace:configure.ac:89: -1- m4_pattern_allow([^SIZEOF_DOUBLE$])
3879
- m4trace:configure.ac:90: -1- m4_pattern_allow([^SIZEOF_LONG_DOUBLE$])
3880
- m4trace:configure.ac:97: -1- m4_pattern_allow([^HAVE_LONG_DOUBLE_VARIANT$])
3881
- m4trace:configure.ac:102: -1- m4_pattern_allow([^HAVE_LONG_DOUBLE$])
3882
- m4trace:configure.ac:107: -1- m4_pattern_allow([^HAVE_LONG_DOUBLE$])
3883
- m4trace:configure.ac:108: -1- m4_pattern_allow([^HAVE_LONG_DOUBLE_VARIANT$])
3884
- m4trace:configure.ac:110: -1- m4_pattern_allow([^WORDS_BIGENDIAN$])
3885
- m4trace:configure.ac:110: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$])
3886
- m4trace:configure.ac:112: -1- GCC_AS_CFI_PSEUDO_OP
3887
- m4trace:configure.ac:112: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
3888
- You should run autoupdate.], [../../lib/autoconf/general.m4:2625: AC_TRY_COMPILE is expanded from...
3889
- ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
3890
- ../../lib/autoconf/general.m4:2042: AC_CACHE_VAL is expanded from...
3891
- ../../lib/autoconf/general.m4:2063: AC_CACHE_CHECK is expanded from...
3892
- m4/asmcfi.m4:1: GCC_AS_CFI_PSEUDO_OP is expanded from...
3893
- configure.ac:112: the top level])
3894
- m4trace:configure.ac:112: -1- m4_pattern_allow([^HAVE_AS_CFI_PSEUDO_OP$])
3895
- m4trace:configure.ac:116: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
3896
- You should run autoupdate.], [../../lib/autoconf/general.m4:2698: AC_TRY_LINK is expanded from...
3897
- ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
3898
- ../../lib/autoconf/general.m4:2042: AC_CACHE_VAL is expanded from...
3899
- ../../lib/autoconf/general.m4:2063: AC_CACHE_CHECK is expanded from...
3900
- configure.ac:116: the top level])
3901
- m4trace:configure.ac:128: -1- m4_pattern_allow([^HAVE_AS_SPARC_UA_PCREL$])
3902
- m4trace:configure.ac:132: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
3903
- You should run autoupdate.], [../../lib/autoconf/general.m4:2625: AC_TRY_COMPILE is expanded from...
3904
- ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
3905
- ../../lib/autoconf/general.m4:2042: AC_CACHE_VAL is expanded from...
3906
- ../../lib/autoconf/general.m4:2063: AC_CACHE_CHECK is expanded from...
3907
- configure.ac:132: the top level])
3908
- m4trace:configure.ac:141: -1- m4_pattern_allow([^HAVE_AS_REGISTER_PSEUDO_OP$])
3909
- m4trace:configure.ac:156: -1- m4_pattern_allow([^HAVE_AS_X86_PCREL$])
3910
- m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_AS_S390_ZARCH$])
3911
- m4trace:configure.ac:183: -2- m4_pattern_allow([^FFI_MMAP_EXEC_EMUTRAMP_PAX$])
3912
- m4trace:configure.ac:187: -1- LT_SYS_SYMBOL_USCORE
3913
- m4trace:configure.ac:187: -1- m4_pattern_allow([^sys_symbol_underscore$])
3914
- m4trace:configure.ac:189: -1- m4_pattern_allow([^SYMBOL_UNDERSCORE$])
3915
- m4trace:configure.ac:196: -1- m4_pattern_allow([^FFI_EXEC_TRAMPOLINE_TABLE$])
3916
- m4trace:configure.ac:201: -1- m4_pattern_allow([^FFI_MMAP_EXEC_WRIT$])
3917
- m4trace:configure.ac:206: -1- AM_CONDITIONAL([FFI_EXEC_TRAMPOLINE_TABLE], [test x$FFI_EXEC_TRAMPOLINE_TABLE = x1])
3918
- m4trace:configure.ac:206: -1- m4_pattern_allow([^FFI_EXEC_TRAMPOLINE_TABLE_TRUE$])
3919
- m4trace:configure.ac:206: -1- m4_pattern_allow([^FFI_EXEC_TRAMPOLINE_TABLE_FALSE$])
3920
- m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([FFI_EXEC_TRAMPOLINE_TABLE_TRUE])
3921
- m4trace:configure.ac:206: -1- _AM_SUBST_NOTMAKE([FFI_EXEC_TRAMPOLINE_TABLE_FALSE])
3922
- m4trace:configure.ac:207: -1- m4_pattern_allow([^FFI_EXEC_TRAMPOLINE_TABLE$])
3923
- m4trace:configure.ac:235: -1- m4_pattern_allow([^HAVE_AS_X86_64_UNWIND_SECTION_TYPE$])
3924
- m4trace:configure.ac:259: -1- m4_pattern_allow([^HAVE_RO_EH_FRAME$])
3925
- m4trace:configure.ac:261: -1- m4_pattern_allow([^EH_FRAME_FLAGS$])
3926
- m4trace:configure.ac:264: -1- m4_pattern_allow([^EH_FRAME_FLAGS$])
3927
- m4trace:configure.ac:280: -1- m4_pattern_allow([^HAVE_HIDDEN_VISIBILITY_ATTRIBUTE$])
3928
- m4trace:configure.ac:286: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
3929
- You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from...
3930
- configure.ac:286: the top level])
3931
- m4trace:configure.ac:290: -1- AM_CONDITIONAL([BUILD_DOCS], [test x$enable_docs = xyes])
3932
- m4trace:configure.ac:290: -1- m4_pattern_allow([^BUILD_DOCS_TRUE$])
3933
- m4trace:configure.ac:290: -1- m4_pattern_allow([^BUILD_DOCS_FALSE$])
3934
- m4trace:configure.ac:290: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_TRUE])
3935
- m4trace:configure.ac:290: -1- _AM_SUBST_NOTMAKE([BUILD_DOCS_FALSE])
3936
- m4trace:configure.ac:308: -1- m4_pattern_allow([^TARGET$])
3937
- m4trace:configure.ac:309: -1- m4_pattern_allow([^TARGETDIR$])
3938
- m4trace:configure.ac:317: -1- m4_pattern_allow([^TARGET_OBJ$])
3939
- m4trace:configure.ac:319: -1- m4_pattern_allow([^SHELL$])
3940
- m4trace:configure.ac:324: -2- m4_pattern_allow([^FFI_DEBUG$])
3941
- m4trace:configure.ac:326: -1- AM_CONDITIONAL([FFI_DEBUG], [test "$enable_debug" = "yes"])
3942
- m4trace:configure.ac:326: -1- m4_pattern_allow([^FFI_DEBUG_TRUE$])
3943
- m4trace:configure.ac:326: -1- m4_pattern_allow([^FFI_DEBUG_FALSE$])
3944
- m4trace:configure.ac:326: -1- _AM_SUBST_NOTMAKE([FFI_DEBUG_TRUE])
3945
- m4trace:configure.ac:326: -1- _AM_SUBST_NOTMAKE([FFI_DEBUG_FALSE])
3946
- m4trace:configure.ac:331: -2- m4_pattern_allow([^FFI_NO_STRUCTS$])
3947
- m4trace:configure.ac:333: -1- AM_CONDITIONAL([FFI_DEBUG], [test "$enable_debug" = "yes"])
3948
- m4trace:configure.ac:333: -1- m4_pattern_allow([^FFI_DEBUG_TRUE$])
3949
- m4trace:configure.ac:333: -1- m4_pattern_allow([^FFI_DEBUG_FALSE$])
3950
- m4trace:configure.ac:333: -1- _AM_SUBST_NOTMAKE([FFI_DEBUG_TRUE])
3951
- m4trace:configure.ac:333: -1- _AM_SUBST_NOTMAKE([FFI_DEBUG_FALSE])
3952
- m4trace:configure.ac:338: -2- m4_pattern_allow([^FFI_NO_RAW_API$])
3953
- m4trace:configure.ac:344: -2- m4_pattern_allow([^USING_PURIFY$])
3954
- m4trace:configure.ac:369: -1- m4_pattern_allow([^toolexecdir$])
3955
- m4trace:configure.ac:373: -1- m4_pattern_allow([^toolexeclibdir$])
3956
- m4trace:configure.ac:376: -1- LIBFFI_ENABLE_SYMVERS
3957
- m4trace:configure.ac:376: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
3958
- You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from...
3959
- acinclude.m4:349: LIBFFI_ENABLE_SYMVERS is expanded from...
3960
- configure.ac:376: the top level])
3961
- m4trace:configure.ac:376: -1- LIBFFI_CHECK_LINKER_FEATURES
3962
- m4trace:configure.ac:376: -1- AC_PROG_LD
3963
- m4trace:configure.ac:376: -1- _m4_warn([obsolete], [The macro `AC_PROG_LD' is obsolete.
3964
- You should run autoupdate.], [/usr/share/aclocal/libtool.m4:3341: AC_PROG_LD is expanded from...
3965
- acinclude.m4:251: LIBFFI_CHECK_LINKER_FEATURES is expanded from...
3966
- acinclude.m4:349: LIBFFI_ENABLE_SYMVERS is expanded from...
3967
- configure.ac:376: the top level])
3968
- m4trace:configure.ac:376: -1- LT_PATH_LD
3969
- m4trace:configure.ac:376: -1- m4_pattern_allow([^LD$])
3970
- m4trace:configure.ac:376: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
3971
- You should run autoupdate.], [../../lib/autoconf/general.m4:2775: AC_TRY_RUN is expanded from...
3972
- acinclude.m4:251: LIBFFI_CHECK_LINKER_FEATURES is expanded from...
3973
- acinclude.m4:349: LIBFFI_ENABLE_SYMVERS is expanded from...
3974
- configure.ac:376: the top level])
3975
- m4trace:configure.ac:376: -1- m4_pattern_allow([^SECTION_LDFLAGS$])
3976
- m4trace:configure.ac:376: -1- m4_pattern_allow([^OPT_LDFLAGS$])
3977
- m4trace:configure.ac:376: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
3978
- You should run autoupdate.], [../../lib/autoconf/general.m4:2698: AC_TRY_LINK is expanded from...
3979
- acinclude.m4:349: LIBFFI_ENABLE_SYMVERS is expanded from...
3980
- configure.ac:376: the top level])
3981
- m4trace:configure.ac:376: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
3982
- You should run autoupdate.], [../../lib/autoconf/general.m4:2698: AC_TRY_LINK is expanded from...
3983
- acinclude.m4:349: LIBFFI_ENABLE_SYMVERS is expanded from...
3984
- configure.ac:376: the top level])
3985
- m4trace:configure.ac:376: -1- m4_pattern_allow([^LIBFFI_GNU_SYMBOL_VERSIONING$])
3986
- m4trace:configure.ac:376: -1- AM_CONDITIONAL([LIBFFI_BUILD_VERSIONED_SHLIB], [test $enable_symvers != no])
3987
- m4trace:configure.ac:376: -1- m4_pattern_allow([^LIBFFI_BUILD_VERSIONED_SHLIB_TRUE$])
3988
- m4trace:configure.ac:376: -1- m4_pattern_allow([^LIBFFI_BUILD_VERSIONED_SHLIB_FALSE$])
3989
- m4trace:configure.ac:376: -1- _AM_SUBST_NOTMAKE([LIBFFI_BUILD_VERSIONED_SHLIB_TRUE])
3990
- m4trace:configure.ac:376: -1- _AM_SUBST_NOTMAKE([LIBFFI_BUILD_VERSIONED_SHLIB_FALSE])
3991
- m4trace:configure.ac:376: -1- AM_CONDITIONAL([LIBFFI_BUILD_VERSIONED_SHLIB_GNU], [test $enable_symvers = gnu])
3992
- m4trace:configure.ac:376: -1- m4_pattern_allow([^LIBFFI_BUILD_VERSIONED_SHLIB_GNU_TRUE$])
3993
- m4trace:configure.ac:376: -1- m4_pattern_allow([^LIBFFI_BUILD_VERSIONED_SHLIB_GNU_FALSE$])
3994
- m4trace:configure.ac:376: -1- _AM_SUBST_NOTMAKE([LIBFFI_BUILD_VERSIONED_SHLIB_GNU_TRUE])
3995
- m4trace:configure.ac:376: -1- _AM_SUBST_NOTMAKE([LIBFFI_BUILD_VERSIONED_SHLIB_GNU_FALSE])
3996
- m4trace:configure.ac:376: -1- AM_CONDITIONAL([LIBFFI_BUILD_VERSIONED_SHLIB_SUN], [test $enable_symvers = sun])
3997
- m4trace:configure.ac:376: -1- m4_pattern_allow([^LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE$])
3998
- m4trace:configure.ac:376: -1- m4_pattern_allow([^LIBFFI_BUILD_VERSIONED_SHLIB_SUN_FALSE$])
3999
- m4trace:configure.ac:376: -1- _AM_SUBST_NOTMAKE([LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE])
4000
- m4trace:configure.ac:376: -1- _AM_SUBST_NOTMAKE([LIBFFI_BUILD_VERSIONED_SHLIB_SUN_FALSE])
4001
- m4trace:configure.ac:388: -1- m4_pattern_allow([^LIB@&t@OBJS$])
4002
- m4trace:configure.ac:388: -1- m4_pattern_allow([^LTLIBOBJS$])
4003
- m4trace:configure.ac:388: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
4004
- m4trace:configure.ac:388: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
4005
- m4trace:configure.ac:388: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
4006
- m4trace:configure.ac:388: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
4007
- m4trace:configure.ac:388: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
4008
- m4trace:configure.ac:388: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
4009
- m4trace:configure.ac:388: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
4010
- m4trace:configure.ac:388: -1- _LT_PROG_LTMAIN