xcrypt 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (199) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +106 -0
  3. data/ext/libxcrypt/AUTHORS +38 -0
  4. data/ext/libxcrypt/COPYING.LIB +502 -0
  5. data/ext/libxcrypt/ChangeLog +239 -0
  6. data/ext/libxcrypt/INSTALL +380 -0
  7. data/ext/libxcrypt/LICENSING +152 -0
  8. data/ext/libxcrypt/Makefile.am +704 -0
  9. data/ext/libxcrypt/Makefile.in +4110 -0
  10. data/ext/libxcrypt/NEWS +630 -0
  11. data/ext/libxcrypt/README +1 -0
  12. data/ext/libxcrypt/README.md +179 -0
  13. data/ext/libxcrypt/THANKS +13 -0
  14. data/ext/libxcrypt/TODO +1 -0
  15. data/ext/libxcrypt/TODO.md +100 -0
  16. data/ext/libxcrypt/aclocal.m4 +2617 -0
  17. data/ext/libxcrypt/autogen.sh +33 -0
  18. data/ext/libxcrypt/autom4te.cache/output.0 +19884 -0
  19. data/ext/libxcrypt/autom4te.cache/output.1 +19884 -0
  20. data/ext/libxcrypt/autom4te.cache/output.2 +19884 -0
  21. data/ext/libxcrypt/autom4te.cache/output.3 +19885 -0
  22. data/ext/libxcrypt/autom4te.cache/requests +714 -0
  23. data/ext/libxcrypt/autom4te.cache/traces.0 +4088 -0
  24. data/ext/libxcrypt/autom4te.cache/traces.1 +1060 -0
  25. data/ext/libxcrypt/autom4te.cache/traces.2 +4088 -0
  26. data/ext/libxcrypt/autom4te.cache/traces.3 +1060 -0
  27. data/ext/libxcrypt/build-aux/ci/ci-log-dependency-versions +79 -0
  28. data/ext/libxcrypt/build-aux/ci/ci-log-logfiles +22 -0
  29. data/ext/libxcrypt/build-aux/ci/clang-gcov-wrapper +2 -0
  30. data/ext/libxcrypt/build-aux/ci/configure-wrapper +10 -0
  31. data/ext/libxcrypt/build-aux/ci/summarize-coverage +24 -0
  32. data/ext/libxcrypt/build-aux/m4/ax_append_compile_flags.m4 +46 -0
  33. data/ext/libxcrypt/build-aux/m4/ax_append_flag.m4 +50 -0
  34. data/ext/libxcrypt/build-aux/m4/ax_check_compile_flag.m4 +53 -0
  35. data/ext/libxcrypt/build-aux/m4/ax_check_vscript.m4 +142 -0
  36. data/ext/libxcrypt/build-aux/m4/ax_gcc_func_attribute.m4 +246 -0
  37. data/ext/libxcrypt/build-aux/m4/ax_require_defined.m4 +37 -0
  38. data/ext/libxcrypt/build-aux/m4/ax_valgrind_check.m4 +239 -0
  39. data/ext/libxcrypt/build-aux/m4/libtool.m4 +8488 -0
  40. data/ext/libxcrypt/build-aux/m4/ltoptions.m4 +467 -0
  41. data/ext/libxcrypt/build-aux/m4/ltsugar.m4 +124 -0
  42. data/ext/libxcrypt/build-aux/m4/ltversion.m4 +24 -0
  43. data/ext/libxcrypt/build-aux/m4/lt~obsolete.m4 +99 -0
  44. data/ext/libxcrypt/build-aux/m4/pkg_compat.m4 +88 -0
  45. data/ext/libxcrypt/build-aux/m4/zw_alignment.m4 +90 -0
  46. data/ext/libxcrypt/build-aux/m4/zw_automodern.m4 +307 -0
  47. data/ext/libxcrypt/build-aux/m4/zw_detect_asan.m4 +24 -0
  48. data/ext/libxcrypt/build-aux/m4/zw_endianness.m4 +152 -0
  49. data/ext/libxcrypt/build-aux/m4/zw_ld_wrap.m4 +47 -0
  50. data/ext/libxcrypt/build-aux/m4/zw_prog_perl.m4 +40 -0
  51. data/ext/libxcrypt/build-aux/m4/zw_simple_warnings.m4 +150 -0
  52. data/ext/libxcrypt/build-aux/m4/zw_static_assert.m4 +68 -0
  53. data/ext/libxcrypt/build-aux/m4-autogen/compile +364 -0
  54. data/ext/libxcrypt/build-aux/m4-autogen/config.guess +1815 -0
  55. data/ext/libxcrypt/build-aux/m4-autogen/config.sub +2354 -0
  56. data/ext/libxcrypt/build-aux/m4-autogen/depcomp +792 -0
  57. data/ext/libxcrypt/build-aux/m4-autogen/install-sh +541 -0
  58. data/ext/libxcrypt/build-aux/m4-autogen/ltmain.sh +11524 -0
  59. data/ext/libxcrypt/build-aux/m4-autogen/missing +236 -0
  60. data/ext/libxcrypt/build-aux/m4-autogen/test-driver +160 -0
  61. data/ext/libxcrypt/build-aux/scripts/BuildCommon.pm +712 -0
  62. data/ext/libxcrypt/build-aux/scripts/check-perlcritic-config +76 -0
  63. data/ext/libxcrypt/build-aux/scripts/compute-symver-floor +116 -0
  64. data/ext/libxcrypt/build-aux/scripts/expand-selected-hashes +80 -0
  65. data/ext/libxcrypt/build-aux/scripts/gen-crypt-h +131 -0
  66. data/ext/libxcrypt/build-aux/scripts/gen-crypt-hashes-h +141 -0
  67. data/ext/libxcrypt/build-aux/scripts/gen-crypt-symbol-vers-h +150 -0
  68. data/ext/libxcrypt/build-aux/scripts/gen-libcrypt-map +67 -0
  69. data/ext/libxcrypt/build-aux/scripts/move-if-change +84 -0
  70. data/ext/libxcrypt/build-aux/scripts/skip-if-exec-format-error +78 -0
  71. data/ext/libxcrypt/codecov.yml +4 -0
  72. data/ext/libxcrypt/config.h.in +303 -0
  73. data/ext/libxcrypt/configure +19885 -0
  74. data/ext/libxcrypt/configure.ac +549 -0
  75. data/ext/libxcrypt/doc/crypt.3 +512 -0
  76. data/ext/libxcrypt/doc/crypt.5 +343 -0
  77. data/ext/libxcrypt/doc/crypt_checksalt.3 +106 -0
  78. data/ext/libxcrypt/doc/crypt_gensalt.3 +285 -0
  79. data/ext/libxcrypt/doc/crypt_gensalt_ra.3 +1 -0
  80. data/ext/libxcrypt/doc/crypt_gensalt_rn.3 +1 -0
  81. data/ext/libxcrypt/doc/crypt_preferred_method.3 +68 -0
  82. data/ext/libxcrypt/doc/crypt_r.3 +1 -0
  83. data/ext/libxcrypt/doc/crypt_ra.3 +1 -0
  84. data/ext/libxcrypt/doc/crypt_rn.3 +1 -0
  85. data/ext/libxcrypt/lib/alg-des-tables.c +3858 -0
  86. data/ext/libxcrypt/lib/alg-des.c +269 -0
  87. data/ext/libxcrypt/lib/alg-des.h +74 -0
  88. data/ext/libxcrypt/lib/alg-gost3411-2012-const.h +313 -0
  89. data/ext/libxcrypt/lib/alg-gost3411-2012-core.c +238 -0
  90. data/ext/libxcrypt/lib/alg-gost3411-2012-core.h +51 -0
  91. data/ext/libxcrypt/lib/alg-gost3411-2012-hmac.c +78 -0
  92. data/ext/libxcrypt/lib/alg-gost3411-2012-hmac.h +46 -0
  93. data/ext/libxcrypt/lib/alg-gost3411-2012-precalc.h +1426 -0
  94. data/ext/libxcrypt/lib/alg-gost3411-2012-ref.h +67 -0
  95. data/ext/libxcrypt/lib/alg-hmac-sha1.c +140 -0
  96. data/ext/libxcrypt/lib/alg-hmac-sha1.h +35 -0
  97. data/ext/libxcrypt/lib/alg-md4.c +270 -0
  98. data/ext/libxcrypt/lib/alg-md4.h +43 -0
  99. data/ext/libxcrypt/lib/alg-md5.c +291 -0
  100. data/ext/libxcrypt/lib/alg-md5.h +43 -0
  101. data/ext/libxcrypt/lib/alg-sha1.c +288 -0
  102. data/ext/libxcrypt/lib/alg-sha1.h +34 -0
  103. data/ext/libxcrypt/lib/alg-sha256.c +630 -0
  104. data/ext/libxcrypt/lib/alg-sha256.h +123 -0
  105. data/ext/libxcrypt/lib/alg-sha512.c +311 -0
  106. data/ext/libxcrypt/lib/alg-sha512.h +81 -0
  107. data/ext/libxcrypt/lib/alg-sm3-hmac.c +113 -0
  108. data/ext/libxcrypt/lib/alg-sm3-hmac.h +42 -0
  109. data/ext/libxcrypt/lib/alg-sm3.c +449 -0
  110. data/ext/libxcrypt/lib/alg-sm3.h +63 -0
  111. data/ext/libxcrypt/lib/alg-yescrypt-common.c +713 -0
  112. data/ext/libxcrypt/lib/alg-yescrypt-opt.c +1568 -0
  113. data/ext/libxcrypt/lib/alg-yescrypt-platform.c +106 -0
  114. data/ext/libxcrypt/lib/alg-yescrypt.h +360 -0
  115. data/ext/libxcrypt/lib/byteorder.h +164 -0
  116. data/ext/libxcrypt/lib/crypt-bcrypt.c +1061 -0
  117. data/ext/libxcrypt/lib/crypt-des-obsolete.c +215 -0
  118. data/ext/libxcrypt/lib/crypt-des.c +491 -0
  119. data/ext/libxcrypt/lib/crypt-gensalt-static.c +40 -0
  120. data/ext/libxcrypt/lib/crypt-gost-yescrypt.c +182 -0
  121. data/ext/libxcrypt/lib/crypt-md5.c +232 -0
  122. data/ext/libxcrypt/lib/crypt-nthash.c +134 -0
  123. data/ext/libxcrypt/lib/crypt-obsolete.h +40 -0
  124. data/ext/libxcrypt/lib/crypt-pbkdf1-sha1.c +260 -0
  125. data/ext/libxcrypt/lib/crypt-port.h +514 -0
  126. data/ext/libxcrypt/lib/crypt-scrypt.c +247 -0
  127. data/ext/libxcrypt/lib/crypt-sha256.c +308 -0
  128. data/ext/libxcrypt/lib/crypt-sha512.c +323 -0
  129. data/ext/libxcrypt/lib/crypt-sm3-yescrypt.c +189 -0
  130. data/ext/libxcrypt/lib/crypt-sm3.c +308 -0
  131. data/ext/libxcrypt/lib/crypt-static.c +44 -0
  132. data/ext/libxcrypt/lib/crypt-sunmd5.c +314 -0
  133. data/ext/libxcrypt/lib/crypt-yescrypt.c +177 -0
  134. data/ext/libxcrypt/lib/crypt.c +421 -0
  135. data/ext/libxcrypt/lib/crypt.h.in +249 -0
  136. data/ext/libxcrypt/lib/gen-des-tables.c +363 -0
  137. data/ext/libxcrypt/lib/hashes.conf +59 -0
  138. data/ext/libxcrypt/lib/libcrypt.map.in +48 -0
  139. data/ext/libxcrypt/lib/libcrypt.minver +97 -0
  140. data/ext/libxcrypt/lib/libxcrypt.pc.in +15 -0
  141. data/ext/libxcrypt/lib/util-base64.c +26 -0
  142. data/ext/libxcrypt/lib/util-gensalt-sha.c +88 -0
  143. data/ext/libxcrypt/lib/util-get-random-bytes.c +154 -0
  144. data/ext/libxcrypt/lib/util-make-failure-token.c +48 -0
  145. data/ext/libxcrypt/lib/util-xbzero.c +43 -0
  146. data/ext/libxcrypt/lib/util-xstrcpy.c +42 -0
  147. data/ext/libxcrypt/lib/xcrypt.h.in +58 -0
  148. data/ext/libxcrypt/libxcrypt.spec.rpkg +481 -0
  149. data/ext/libxcrypt/rpkg.conf +2 -0
  150. data/ext/libxcrypt/rpkg.macros +86 -0
  151. data/ext/libxcrypt/test/TestCommon.pm +326 -0
  152. data/ext/libxcrypt/test/alg-des.c +80 -0
  153. data/ext/libxcrypt/test/alg-gost3411-2012-hmac.c +90 -0
  154. data/ext/libxcrypt/test/alg-gost3411-2012.c +191 -0
  155. data/ext/libxcrypt/test/alg-hmac-sha1.c +187 -0
  156. data/ext/libxcrypt/test/alg-md4.c +111 -0
  157. data/ext/libxcrypt/test/alg-md5.c +134 -0
  158. data/ext/libxcrypt/test/alg-pbkdf-hmac-sha256.c +269 -0
  159. data/ext/libxcrypt/test/alg-sha1.c +111 -0
  160. data/ext/libxcrypt/test/alg-sha256.c +141 -0
  161. data/ext/libxcrypt/test/alg-sha512.c +170 -0
  162. data/ext/libxcrypt/test/alg-sm3-hmac.c +149 -0
  163. data/ext/libxcrypt/test/alg-sm3.c +168 -0
  164. data/ext/libxcrypt/test/alg-yescrypt.c +466 -0
  165. data/ext/libxcrypt/test/badsalt.c +726 -0
  166. data/ext/libxcrypt/test/badsetting.c +350 -0
  167. data/ext/libxcrypt/test/byteorder.c +254 -0
  168. data/ext/libxcrypt/test/checksalt.c +265 -0
  169. data/ext/libxcrypt/test/compile-strong-alias.c +43 -0
  170. data/ext/libxcrypt/test/crypt-badargs.c +392 -0
  171. data/ext/libxcrypt/test/crypt-gost-yescrypt.c +149 -0
  172. data/ext/libxcrypt/test/crypt-nested-call.c +180 -0
  173. data/ext/libxcrypt/test/crypt-sm3-yescrypt.c +149 -0
  174. data/ext/libxcrypt/test/crypt-too-long-phrase.c +157 -0
  175. data/ext/libxcrypt/test/des-cases.h +196 -0
  176. data/ext/libxcrypt/test/des-obsolete.c +206 -0
  177. data/ext/libxcrypt/test/des-obsolete_r.c +207 -0
  178. data/ext/libxcrypt/test/explicit-bzero.c +334 -0
  179. data/ext/libxcrypt/test/gensalt-bcrypt_x.c +54 -0
  180. data/ext/libxcrypt/test/gensalt-extradata.c +246 -0
  181. data/ext/libxcrypt/test/gensalt-nested-call.c +126 -0
  182. data/ext/libxcrypt/test/gensalt-nthash.c +65 -0
  183. data/ext/libxcrypt/test/gensalt.c +599 -0
  184. data/ext/libxcrypt/test/getrandom-fallbacks.c +295 -0
  185. data/ext/libxcrypt/test/getrandom-interface.c +211 -0
  186. data/ext/libxcrypt/test/ka-table-gen.py +945 -0
  187. data/ext/libxcrypt/test/ka-table.inc +5849 -0
  188. data/ext/libxcrypt/test/ka-tester.c +240 -0
  189. data/ext/libxcrypt/test/preferred-method.c +133 -0
  190. data/ext/libxcrypt/test/short-outbuf.c +119 -0
  191. data/ext/libxcrypt/test/special-char-salt.c +1160 -0
  192. data/ext/libxcrypt/test/symbols-compat.pl +137 -0
  193. data/ext/libxcrypt/test/symbols-renames.pl +107 -0
  194. data/ext/libxcrypt/test/symbols-static.pl +87 -0
  195. data/ext/xcrypt/xcrypt.c +9 -0
  196. data/lib/xcrypt/ffi.rb +76 -0
  197. data/lib/xcrypt/version.rb +5 -0
  198. data/lib/xcrypt.rb +89 -0
  199. metadata +267 -0
@@ -0,0 +1,4088 @@
1
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:62: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.64])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:/opt/homebrew/share/aclocal/libtool.m4:100: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])], [], [])
37
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:100: -1- AC_DEFUN([AC_PROG_LIBTOOL], [m4_warn([obsolete], [The macro 'AC_PROG_LIBTOOL' is obsolete.
38
+ You should run autoupdate.])dnl
39
+ m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
40
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:101: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])], [], [])
41
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:101: -1- AC_DEFUN([AM_PROG_LIBTOOL], [m4_warn([obsolete], [The macro 'AM_PROG_LIBTOOL' is obsolete.
42
+ You should run autoupdate.])dnl
43
+ m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
44
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:621: -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) 2024 Free Software Foundation, Inc.
77
+ This config.lt script is free software; the Free Software Foundation
78
+ gives unlimited permission 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:/opt/homebrew/share/aclocal/libtool.m4:813: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
130
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:824: -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:/opt/homebrew/share/aclocal/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
144
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_CXX], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_CXX' is obsolete.
145
+ You should run autoupdate.])dnl
146
+ LT_LANG(C++)])
147
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
148
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_F77], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_F77' is obsolete.
149
+ You should run autoupdate.])dnl
150
+ LT_LANG(Fortran 77)])
151
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
152
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_FC], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_FC' is obsolete.
153
+ You should run autoupdate.])dnl
154
+ LT_LANG(Fortran)])
155
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:919: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
156
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:919: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_GCJ' is obsolete.
157
+ You should run autoupdate.])dnl
158
+ LT_LANG(Java)])
159
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:920: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
160
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:920: -1- AC_DEFUN([AC_LIBTOOL_RC], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_RC' is obsolete.
161
+ You should run autoupdate.])dnl
162
+ LT_LANG(Windows Resource)])
163
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1278: -1- AC_DEFUN([_LT_WITH_SYSROOT], [m4_require([_LT_DECL_SED])dnl
164
+ AC_MSG_CHECKING([for sysroot])
165
+ AC_ARG_WITH([sysroot],
166
+ [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
167
+ [Search for dependent libraries within DIR (or the compiler's sysroot
168
+ if not specified).])],
169
+ [], [with_sysroot=no])
170
+
171
+ dnl lt_sysroot will always be passed unquoted. We quote it here
172
+ dnl in case the user passed a directory name.
173
+ lt_sysroot=
174
+ case $with_sysroot in #(
175
+ yes)
176
+ if test yes = "$GCC"; then
177
+ # Trim trailing / since we'll always append absolute paths and we want
178
+ # to avoid //, if only for less confusing output for the user.
179
+ lt_sysroot=`$CC --print-sysroot 2>/dev/null | $SED 's:/\+$::'`
180
+ fi
181
+ ;; #(
182
+ /*)
183
+ lt_sysroot=`echo "$with_sysroot" | $SED -e "$sed_quote_subst"`
184
+ ;; #(
185
+ no|'')
186
+ ;; #(
187
+ *)
188
+ AC_MSG_RESULT([$with_sysroot])
189
+ AC_MSG_ERROR([The sysroot must be an absolute path.])
190
+ ;;
191
+ esac
192
+
193
+ AC_MSG_RESULT([${lt_sysroot:-no}])
194
+ _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
195
+ [dependent libraries, and where our libraries should be installed.])])
196
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1618: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
197
+ m4_require([_LT_DECL_SED])dnl
198
+ AC_CACHE_CHECK([$1], [$2],
199
+ [$2=no
200
+ m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
201
+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext
202
+ lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment
203
+ # Insert the option either (1) after the last *FLAGS variable, or
204
+ # (2) before a word containing "conftest.", or (3) at the end.
205
+ # Note that $ac_compile itself does not contain backslashes and begins
206
+ # with a dollar sign (not a hyphen), so the echo should work correctly.
207
+ # The option is referenced via a variable to avoid confusing sed.
208
+ lt_compile=`echo "$ac_compile" | $SED \
209
+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
210
+ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
211
+ -e 's:$: $lt_compiler_flag:'`
212
+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
213
+ (eval "$lt_compile" 2>conftest.err)
214
+ ac_status=$?
215
+ cat conftest.err >&AS_MESSAGE_LOG_FD
216
+ echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
217
+ if (exit $ac_status) && test -s "$ac_outfile"; then
218
+ # The compiler can only warn and ignore the option if not recognized
219
+ # So say no if there are warnings other than the usual output.
220
+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
221
+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
222
+ if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
223
+ $2=yes
224
+ fi
225
+ fi
226
+ $RM conftest*
227
+ ])
228
+
229
+ if test yes = "[$]$2"; then
230
+ m4_if([$5], , :, [$5])
231
+ else
232
+ m4_if([$6], , :, [$6])
233
+ fi
234
+ ])
235
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1660: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])], [], [])
236
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1660: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_COMPILER_OPTION' is obsolete.
237
+ You should run autoupdate.])dnl
238
+ m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
239
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1669: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
240
+ m4_require([_LT_DECL_SED])dnl
241
+ AC_CACHE_CHECK([$1], [$2],
242
+ [$2=no
243
+ save_LDFLAGS=$LDFLAGS
244
+ LDFLAGS="$LDFLAGS $3"
245
+ echo "$lt_simple_link_test_code" > conftest.$ac_ext
246
+ if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
247
+ # The linker can only warn and ignore the option if not recognized
248
+ # So say no if there are warnings
249
+ if test -s conftest.err; then
250
+ # Append any errors to the config.log.
251
+ cat conftest.err 1>&AS_MESSAGE_LOG_FD
252
+ $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
253
+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
254
+ if diff conftest.exp conftest.er2 >/dev/null; then
255
+ $2=yes
256
+ fi
257
+ else
258
+ $2=yes
259
+ fi
260
+ fi
261
+ $RM -r conftest*
262
+ LDFLAGS=$save_LDFLAGS
263
+ ])
264
+
265
+ if test yes = "[$]$2"; then
266
+ m4_if([$4], , :, [$4])
267
+ else
268
+ m4_if([$5], , :, [$5])
269
+ fi
270
+ ])
271
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1704: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])], [], [])
272
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1704: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_LINKER_OPTION' is obsolete.
273
+ You should run autoupdate.])dnl
274
+ m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
275
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1711: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
276
+ # find the maximum length of command line arguments
277
+ AC_MSG_CHECKING([the maximum length of command line arguments])
278
+ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
279
+ i=0
280
+ teststring=ABCD
281
+
282
+ case $build_os in
283
+ msdosdjgpp*)
284
+ # On DJGPP, this test can blow up pretty badly due to problems in libc
285
+ # (any single argument exceeding 2000 bytes causes a buffer overrun
286
+ # during glob expansion). Even if it were fixed, the result of this
287
+ # check would be larger than it should be.
288
+ lt_cv_sys_max_cmd_len=12288; # 12K is about right
289
+ ;;
290
+
291
+ gnu* | ironclad*)
292
+ # Under GNU Hurd and Ironclad, this test is not required because there
293
+ # is no limit to the length of command line arguments.
294
+ # Libtool will interpret -1 as no limit whatsoever
295
+ lt_cv_sys_max_cmd_len=-1;
296
+ ;;
297
+
298
+ cygwin* | mingw* | windows* | cegcc*)
299
+ # On Win9x/ME, this test blows up -- it succeeds, but takes
300
+ # about 5 minutes as the teststring grows exponentially.
301
+ # Worse, since 9x/ME are not pre-emptively multitasking,
302
+ # you end up with a "frozen" computer, even though with patience
303
+ # the test eventually succeeds (with a max line length of 256k).
304
+ # Instead, let's just punt: use the minimum linelength reported by
305
+ # all of the supported platforms: 8192 (on NT/2K/XP).
306
+ lt_cv_sys_max_cmd_len=8192;
307
+ ;;
308
+
309
+ mint*)
310
+ # On MiNT this can take a long time and run out of memory.
311
+ lt_cv_sys_max_cmd_len=8192;
312
+ ;;
313
+
314
+ amigaos*)
315
+ # On AmigaOS with pdksh, this test takes hours, literally.
316
+ # So we just punt and use a minimum line length of 8192.
317
+ lt_cv_sys_max_cmd_len=8192;
318
+ ;;
319
+
320
+ darwin* | dragonfly* | freebsd* | midnightbsd* | netbsd* | openbsd*)
321
+ # This has been around since 386BSD, at least. Likely further.
322
+ if test -x /sbin/sysctl; then
323
+ lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
324
+ elif test -x /usr/sbin/sysctl; then
325
+ lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
326
+ else
327
+ lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
328
+ fi
329
+ # And add a safety zone
330
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
331
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
332
+ ;;
333
+
334
+ interix*)
335
+ # We know the value 262144 and hardcode it with a safety zone (like BSD)
336
+ lt_cv_sys_max_cmd_len=196608
337
+ ;;
338
+
339
+ os2*)
340
+ # The test takes a long time on OS/2.
341
+ lt_cv_sys_max_cmd_len=8192
342
+ ;;
343
+
344
+ osf*)
345
+ # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
346
+ # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
347
+ # nice to cause kernel panics so lets avoid the loop below.
348
+ # First set a reasonable default.
349
+ lt_cv_sys_max_cmd_len=16384
350
+ #
351
+ if test -x /sbin/sysconfig; then
352
+ case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
353
+ *1*) lt_cv_sys_max_cmd_len=-1 ;;
354
+ esac
355
+ fi
356
+ ;;
357
+ sco3.2v5*)
358
+ lt_cv_sys_max_cmd_len=102400
359
+ ;;
360
+ sysv5* | sco5v6* | sysv4.2uw2*)
361
+ kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
362
+ if test -n "$kargmax"; then
363
+ lt_cv_sys_max_cmd_len=`echo $kargmax | $SED 's/.*[[ ]]//'`
364
+ else
365
+ lt_cv_sys_max_cmd_len=32768
366
+ fi
367
+ ;;
368
+ *)
369
+ lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
370
+ if test -n "$lt_cv_sys_max_cmd_len" && \
371
+ test undefined != "$lt_cv_sys_max_cmd_len"; then
372
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
373
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
374
+ else
375
+ # Make teststring a little bigger before we do anything with it.
376
+ # a 1K string should be a reasonable start.
377
+ for i in 1 2 3 4 5 6 7 8; do
378
+ teststring=$teststring$teststring
379
+ done
380
+ SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
381
+ # If test is not a shell built-in, we'll probably end up computing a
382
+ # maximum length that is only half of the actual maximum length, but
383
+ # we can't tell.
384
+ while { test X`env echo "$teststring$teststring" 2>/dev/null` \
385
+ = "X$teststring$teststring"; } >/dev/null 2>&1 &&
386
+ test 17 != "$i" # 1/2 MB should be enough
387
+ do
388
+ i=`expr $i + 1`
389
+ teststring=$teststring$teststring
390
+ done
391
+ # Only check the string length outside the loop.
392
+ lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
393
+ teststring=
394
+ # Add a significant safety factor because C++ compilers can tack on
395
+ # massive amounts of additional arguments before passing them to the
396
+ # linker. It appears as though 1/2 is a usable value.
397
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
398
+ fi
399
+ ;;
400
+ esac
401
+ ])
402
+ if test -n "$lt_cv_sys_max_cmd_len"; then
403
+ AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
404
+ else
405
+ AC_MSG_RESULT(none)
406
+ fi
407
+ max_cmd_len=$lt_cv_sys_max_cmd_len
408
+ _LT_DECL([], [max_cmd_len], [0],
409
+ [What is the maximum length of a command?])
410
+ ])
411
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1850: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])], [], [])
412
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1850: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
413
+ You should run autoupdate.])dnl
414
+ m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
415
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:1961: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
416
+ if test yes != "$enable_dlopen"; then
417
+ enable_dlopen=unknown
418
+ enable_dlopen_self=unknown
419
+ enable_dlopen_self_static=unknown
420
+ else
421
+ lt_cv_dlopen=no
422
+ lt_cv_dlopen_libs=
423
+
424
+ case $host_os in
425
+ beos*)
426
+ lt_cv_dlopen=load_add_on
427
+ lt_cv_dlopen_libs=
428
+ lt_cv_dlopen_self=yes
429
+ ;;
430
+
431
+ mingw* | windows* | pw32* | cegcc*)
432
+ lt_cv_dlopen=LoadLibrary
433
+ lt_cv_dlopen_libs=
434
+ ;;
435
+
436
+ cygwin*)
437
+ lt_cv_dlopen=dlopen
438
+ lt_cv_dlopen_libs=
439
+ ;;
440
+
441
+ darwin*)
442
+ # if libdl is installed we need to link against it
443
+ AC_CHECK_LIB([dl], [dlopen],
444
+ [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[
445
+ lt_cv_dlopen=dyld
446
+ lt_cv_dlopen_libs=
447
+ lt_cv_dlopen_self=yes
448
+ ])
449
+ ;;
450
+
451
+ tpf*)
452
+ # Don't try to run any link tests for TPF. We know it's impossible
453
+ # because TPF is a cross-compiler, and we know how we open DSOs.
454
+ lt_cv_dlopen=dlopen
455
+ lt_cv_dlopen_libs=
456
+ lt_cv_dlopen_self=no
457
+ ;;
458
+
459
+ *)
460
+ AC_CHECK_FUNC([shl_load],
461
+ [lt_cv_dlopen=shl_load],
462
+ [AC_CHECK_LIB([dld], [shl_load],
463
+ [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],
464
+ [AC_CHECK_FUNC([dlopen],
465
+ [lt_cv_dlopen=dlopen],
466
+ [AC_CHECK_LIB([dl], [dlopen],
467
+ [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],
468
+ [AC_CHECK_LIB([svld], [dlopen],
469
+ [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],
470
+ [AC_CHECK_LIB([dld], [dld_link],
471
+ [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])
472
+ ])
473
+ ])
474
+ ])
475
+ ])
476
+ ])
477
+ ;;
478
+ esac
479
+
480
+ if test no = "$lt_cv_dlopen"; then
481
+ enable_dlopen=no
482
+ else
483
+ enable_dlopen=yes
484
+ fi
485
+
486
+ case $lt_cv_dlopen in
487
+ dlopen)
488
+ save_CPPFLAGS=$CPPFLAGS
489
+ test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
490
+
491
+ save_LDFLAGS=$LDFLAGS
492
+ wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
493
+
494
+ save_LIBS=$LIBS
495
+ LIBS="$lt_cv_dlopen_libs $LIBS"
496
+
497
+ AC_CACHE_CHECK([whether a program can dlopen itself],
498
+ lt_cv_dlopen_self, [dnl
499
+ _LT_TRY_DLOPEN_SELF(
500
+ lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
501
+ lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
502
+ ])
503
+
504
+ if test yes = "$lt_cv_dlopen_self"; then
505
+ wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
506
+ AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
507
+ lt_cv_dlopen_self_static, [dnl
508
+ _LT_TRY_DLOPEN_SELF(
509
+ lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
510
+ lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
511
+ ])
512
+ fi
513
+
514
+ CPPFLAGS=$save_CPPFLAGS
515
+ LDFLAGS=$save_LDFLAGS
516
+ LIBS=$save_LIBS
517
+ ;;
518
+ esac
519
+
520
+ case $lt_cv_dlopen_self in
521
+ yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
522
+ *) enable_dlopen_self=unknown ;;
523
+ esac
524
+
525
+ case $lt_cv_dlopen_self_static in
526
+ yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
527
+ *) enable_dlopen_self_static=unknown ;;
528
+ esac
529
+ fi
530
+ _LT_DECL([dlopen_support], [enable_dlopen], [0],
531
+ [Whether dlopen is supported])
532
+ _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
533
+ [Whether dlopen of programs is supported])
534
+ _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
535
+ [Whether dlopen of statically linked programs is supported])
536
+ ])
537
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:2086: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])], [], [])
538
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:2086: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_DLOPEN_SELF' is obsolete.
539
+ You should run autoupdate.])dnl
540
+ m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
541
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3284: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
542
+ AC_MSG_CHECKING([for $1])
543
+ AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
544
+ [case $MAGIC_CMD in
545
+ [[\\/*] | ?:[\\/]*])
546
+ lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
547
+ ;;
548
+ *)
549
+ lt_save_MAGIC_CMD=$MAGIC_CMD
550
+ lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
551
+ dnl $ac_dummy forces splitting on constant user-supplied paths.
552
+ dnl POSIX.2 word splitting is done only on the output of word expansions,
553
+ dnl not every word. This closes a longstanding sh security hole.
554
+ ac_dummy="m4_if([$2], , $PATH, [$2])"
555
+ for ac_dir in $ac_dummy; do
556
+ IFS=$lt_save_ifs
557
+ test -z "$ac_dir" && ac_dir=.
558
+ if test -f "$ac_dir/$1"; then
559
+ lt_cv_path_MAGIC_CMD=$ac_dir/"$1"
560
+ if test -n "$file_magic_test_file"; then
561
+ case $deplibs_check_method in
562
+ "file_magic "*)
563
+ file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
564
+ MAGIC_CMD=$lt_cv_path_MAGIC_CMD
565
+ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
566
+ $EGREP "$file_magic_regex" > /dev/null; then
567
+ :
568
+ else
569
+ cat <<_LT_EOF 1>&2
570
+
571
+ *** Warning: the command libtool uses to detect shared libraries,
572
+ *** $file_magic_cmd, produces output that libtool cannot recognize.
573
+ *** The result is that libtool may fail to recognize shared libraries
574
+ *** as such. This will affect the creation of libtool libraries that
575
+ *** depend on shared libraries, but programs linked with such libtool
576
+ *** libraries will work regardless of this problem. Nevertheless, you
577
+ *** may want to report the problem to your system manager and/or to
578
+ *** bug-libtool@gnu.org
579
+
580
+ _LT_EOF
581
+ fi ;;
582
+ esac
583
+ fi
584
+ break
585
+ fi
586
+ done
587
+ IFS=$lt_save_ifs
588
+ MAGIC_CMD=$lt_save_MAGIC_CMD
589
+ ;;
590
+ esac])
591
+ MAGIC_CMD=$lt_cv_path_MAGIC_CMD
592
+ if test -n "$MAGIC_CMD"; then
593
+ AC_MSG_RESULT($MAGIC_CMD)
594
+ else
595
+ AC_MSG_RESULT(no)
596
+ fi
597
+ _LT_DECL([], [MAGIC_CMD], [0],
598
+ [Used to examine libraries when file_magic_cmd begins with "file"])dnl
599
+ ])
600
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3346: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])], [], [])
601
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3346: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [m4_warn([obsolete], [The macro 'AC_PATH_TOOL_PREFIX' is obsolete.
602
+ You should run autoupdate.])dnl
603
+ m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
604
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3369: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
605
+ AC_REQUIRE([AC_CANONICAL_HOST])dnl
606
+ AC_REQUIRE([AC_CANONICAL_BUILD])dnl
607
+ m4_require([_LT_DECL_SED])dnl
608
+ m4_require([_LT_DECL_EGREP])dnl
609
+ m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
610
+
611
+ AC_ARG_WITH([gnu-ld],
612
+ [AS_HELP_STRING([--with-gnu-ld],
613
+ [assume the C compiler uses GNU ld @<:@default=no@:>@])],
614
+ [test no = "$withval" || with_gnu_ld=yes],
615
+ [with_gnu_ld=no])dnl
616
+
617
+ ac_prog=ld
618
+ if test yes = "$GCC"; then
619
+ # Check if gcc -print-prog-name=ld gives a path.
620
+ AC_MSG_CHECKING([for ld used by $CC])
621
+ case $host in
622
+ *-*-mingw* | *-*-windows*)
623
+ # gcc leaves a trailing carriage return, which upsets mingw
624
+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
625
+ *)
626
+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
627
+ esac
628
+ case $ac_prog in
629
+ # Accept absolute paths.
630
+ [[\\/]]* | ?:[[\\/]]*)
631
+ re_direlt='/[[^/]][[^/]]*/\.\./'
632
+ # Canonicalize the pathname of ld
633
+ ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
634
+ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
635
+ ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
636
+ done
637
+ test -z "$LD" && LD=$ac_prog
638
+ ;;
639
+ "")
640
+ # If it fails, then pretend we aren't using GCC.
641
+ ac_prog=ld
642
+ ;;
643
+ *)
644
+ # If it is relative, then search for the first ld in PATH.
645
+ with_gnu_ld=unknown
646
+ ;;
647
+ esac
648
+ elif test yes = "$with_gnu_ld"; then
649
+ AC_MSG_CHECKING([for GNU ld])
650
+ else
651
+ AC_MSG_CHECKING([for non-GNU ld])
652
+ fi
653
+ AC_CACHE_VAL(lt_cv_path_LD,
654
+ [if test -z "$LD"; then
655
+ lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
656
+ for ac_dir in $PATH; do
657
+ IFS=$lt_save_ifs
658
+ test -z "$ac_dir" && ac_dir=.
659
+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
660
+ lt_cv_path_LD=$ac_dir/$ac_prog
661
+ # Check to see if the program is GNU ld. I'd rather use --version,
662
+ # but apparently some variants of GNU ld only accept -v.
663
+ # Break only if it was the GNU/non-GNU ld that we prefer.
664
+ case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
665
+ *GNU* | *'with BFD'*)
666
+ test no != "$with_gnu_ld" && break
667
+ ;;
668
+ *)
669
+ test yes != "$with_gnu_ld" && break
670
+ ;;
671
+ esac
672
+ fi
673
+ done
674
+ IFS=$lt_save_ifs
675
+ else
676
+ lt_cv_path_LD=$LD # Let the user override the test with a path.
677
+ fi])
678
+ LD=$lt_cv_path_LD
679
+ if test -n "$LD"; then
680
+ AC_MSG_RESULT($LD)
681
+ else
682
+ AC_MSG_RESULT(no)
683
+ fi
684
+ test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
685
+ _LT_PATH_LD_GNU
686
+ AC_SUBST([LD])
687
+
688
+ _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
689
+ ])
690
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3458: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])], [], [])
691
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3458: -1- AC_DEFUN([AM_PROG_LD], [m4_warn([obsolete], [The macro 'AM_PROG_LD' is obsolete.
692
+ You should run autoupdate.])dnl
693
+ m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
694
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3459: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])], [], [])
695
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3459: -1- AC_DEFUN([AC_PROG_LD], [m4_warn([obsolete], [The macro 'AC_PROG_LD' is obsolete.
696
+ You should run autoupdate.])dnl
697
+ m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
698
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3795: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
699
+ AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
700
+ [if test -n "$NM"; then
701
+ # Let the user override the test.
702
+ lt_cv_path_NM=$NM
703
+ else
704
+ lt_nm_to_check=${ac_tool_prefix}nm
705
+ if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
706
+ lt_nm_to_check="$lt_nm_to_check nm"
707
+ fi
708
+ for lt_tmp_nm in $lt_nm_to_check; do
709
+ lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
710
+ for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
711
+ IFS=$lt_save_ifs
712
+ test -z "$ac_dir" && ac_dir=.
713
+ tmp_nm=$ac_dir/$lt_tmp_nm
714
+ if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
715
+ # Check to see if the nm accepts a BSD-compat flag.
716
+ # Adding the 'sed 1q' prevents false positives on HP-UX, which says:
717
+ # nm: unknown option "B" ignored
718
+ # Tru64's nm complains that /dev/null is an invalid object file
719
+ # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
720
+ case $build_os in
721
+ mingw* | windows*) lt_bad_file=conftest.nm/nofile ;;
722
+ *) lt_bad_file=/dev/null ;;
723
+ esac
724
+ case `"$tmp_nm" -B $lt_bad_file 2>&1 | $SED '1q'` in
725
+ *$lt_bad_file* | *'Invalid file or object type'*)
726
+ lt_cv_path_NM="$tmp_nm -B"
727
+ break 2
728
+ ;;
729
+ *)
730
+ case `"$tmp_nm" -p /dev/null 2>&1 | $SED '1q'` in
731
+ */dev/null*)
732
+ lt_cv_path_NM="$tmp_nm -p"
733
+ break 2
734
+ ;;
735
+ *)
736
+ lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
737
+ continue # so that we can try to find one that supports BSD flags
738
+ ;;
739
+ esac
740
+ ;;
741
+ esac
742
+ fi
743
+ done
744
+ IFS=$lt_save_ifs
745
+ done
746
+ : ${lt_cv_path_NM=no}
747
+ fi])
748
+ if test no != "$lt_cv_path_NM"; then
749
+ NM=$lt_cv_path_NM
750
+ else
751
+ # Didn't find any BSD compatible name lister, look for dumpbin.
752
+ if test -n "$DUMPBIN"; then :
753
+ # Let the user override the test.
754
+ else
755
+ AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
756
+ case `$DUMPBIN -symbols -headers /dev/null 2>&1 | $SED '1q'` in
757
+ *COFF*)
758
+ DUMPBIN="$DUMPBIN -symbols -headers"
759
+ ;;
760
+ *)
761
+ DUMPBIN=:
762
+ ;;
763
+ esac
764
+ fi
765
+ AC_SUBST([DUMPBIN])
766
+ if test : != "$DUMPBIN"; then
767
+ NM=$DUMPBIN
768
+ fi
769
+ fi
770
+ test -z "$NM" && NM=nm
771
+ AC_SUBST([NM])
772
+ _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
773
+
774
+ AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
775
+ [lt_cv_nm_interface="BSD nm"
776
+ echo "int some_variable = 0;" > conftest.$ac_ext
777
+ (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
778
+ (eval "$ac_compile" 2>conftest.err)
779
+ cat conftest.err >&AS_MESSAGE_LOG_FD
780
+ (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
781
+ (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
782
+ cat conftest.err >&AS_MESSAGE_LOG_FD
783
+ (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
784
+ cat conftest.out >&AS_MESSAGE_LOG_FD
785
+ if $GREP 'External.*some_variable' conftest.out > /dev/null; then
786
+ lt_cv_nm_interface="MS dumpbin"
787
+ fi
788
+ rm -f conftest*])
789
+ ])
790
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3890: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])], [], [])
791
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3890: -1- AC_DEFUN([AM_PROG_NM], [m4_warn([obsolete], [The macro 'AM_PROG_NM' is obsolete.
792
+ You should run autoupdate.])dnl
793
+ m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
794
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3891: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])], [], [])
795
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3891: -1- AC_DEFUN([AC_PROG_NM], [m4_warn([obsolete], [The macro 'AC_PROG_NM' is obsolete.
796
+ You should run autoupdate.])dnl
797
+ m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
798
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3962: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
799
+ test DEF = "`$SED -n dnl
800
+ -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace
801
+ -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments
802
+ -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl
803
+ -e q dnl Only consider the first "real" line
804
+ $1`" dnl
805
+ ])
806
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3976: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
807
+ LIBM=
808
+ case $host in
809
+ *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-mingw* | *-*-pw32* | *-*-darwin*)
810
+ # These system don't have libm, or don't need it
811
+ ;;
812
+ *-ncr-sysv4.3*)
813
+ AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)
814
+ AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
815
+ ;;
816
+ *)
817
+ AC_CHECK_LIB(m, cos, LIBM=-lm)
818
+ ;;
819
+ esac
820
+ AC_SUBST([LIBM])
821
+ ])
822
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3995: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])], [], [])
823
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:3995: -1- AC_DEFUN([AC_CHECK_LIBM], [m4_warn([obsolete], [The macro 'AC_CHECK_LIBM' is obsolete.
824
+ You should run autoupdate.])dnl
825
+ m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
826
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:8300: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
827
+ [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
828
+ [AC_CHECK_TOOL(GCJ, gcj,)
829
+ test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2"
830
+ AC_SUBST(GCJFLAGS)])])[]dnl
831
+ ])
832
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:8309: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])], [], [])
833
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:8309: -1- AC_DEFUN([LT_AC_PROG_GCJ], [m4_warn([obsolete], [The macro 'LT_AC_PROG_GCJ' is obsolete.
834
+ You should run autoupdate.])dnl
835
+ m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
836
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:8316: -1- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,)
837
+ ])
838
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:8323: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
839
+ ])
840
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:8328: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])], [], [])
841
+ m4trace:/opt/homebrew/share/aclocal/libtool.m4:8328: -1- AC_DEFUN([LT_AC_PROG_RC], [m4_warn([obsolete], [The macro 'LT_AC_PROG_RC' is obsolete.
842
+ You should run autoupdate.])dnl
843
+ m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
844
+ m4trace:/opt/homebrew/share/aclocal/ltargz.m4:13: -1- AC_DEFUN([LT_FUNC_ARGZ], [
845
+ dnl Required for use of '$SED' in Cygwin configuration.
846
+ AC_REQUIRE([AC_PROG_SED])dnl
847
+ AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
848
+
849
+ AC_CHECK_TYPES([error_t],
850
+ [],
851
+ [AC_DEFINE([error_t], [int],
852
+ [Define to a type to use for 'error_t' if it is not otherwise available.])
853
+ AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
854
+ does not typedef error_t.])],
855
+ [#if defined(HAVE_ARGZ_H)
856
+ # include <argz.h>
857
+ #endif])
858
+
859
+ LT_ARGZ_H=
860
+ AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
861
+ argz_next argz_stringify], [], [LT_ARGZ_H=lt__argz.h; AC_LIBOBJ([lt__argz])])
862
+
863
+ dnl if have system argz functions, allow forced use of
864
+ dnl libltdl-supplied implementation (and default to do so
865
+ dnl on "known bad" systems). Could use a runtime check, but
866
+ dnl (a) detecting malloc issues is notoriously unreliable
867
+ dnl (b) only known system that declares argz functions,
868
+ dnl provides them, yet they are broken, is cygwin
869
+ dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
870
+ dnl So, it's more straightforward simply to special case
871
+ dnl this for known bad systems.
872
+ AS_IF([test -z "$LT_ARGZ_H"],
873
+ [AC_CACHE_CHECK(
874
+ [if argz actually works],
875
+ [lt_cv_sys_argz_works],
876
+ [[case $host_os in #(
877
+ *cygwin*)
878
+ lt_cv_sys_argz_works=no
879
+ if test no != "$cross_compiling"; then
880
+ lt_cv_sys_argz_works="guessing no"
881
+ else
882
+ lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
883
+ save_IFS=$IFS
884
+ IFS=-.
885
+ set x `uname -r | $SED -e "$lt_sed_extract_leading_digits"`
886
+ IFS=$save_IFS
887
+ lt_os_major=${2-0}
888
+ lt_os_minor=${3-0}
889
+ lt_os_micro=${4-0}
890
+ if test 1 -lt "$lt_os_major" \
891
+ || { test 1 -eq "$lt_os_major" \
892
+ && { test 5 -lt "$lt_os_minor" \
893
+ || { test 5 -eq "$lt_os_minor" \
894
+ && test 24 -lt "$lt_os_micro"; }; }; }; then
895
+ lt_cv_sys_argz_works=yes
896
+ fi
897
+ fi
898
+ ;; #(
899
+ *) lt_cv_sys_argz_works=yes ;;
900
+ esac]])
901
+ AS_IF([test yes = "$lt_cv_sys_argz_works"],
902
+ [AC_DEFINE([HAVE_WORKING_ARGZ], 1,
903
+ [This value is set to 1 to indicate that the system argz facility works])],
904
+ [LT_ARGZ_H=lt__argz.h
905
+ AC_LIBOBJ([lt__argz])])])
906
+
907
+ AC_SUBST([LT_ARGZ_H])
908
+ ])
909
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:17: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
910
+ _$0($*)
911
+ ])
912
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:69: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
913
+ dnl Although the argument is deprecated and no longer documented,
914
+ dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
915
+ dnl here make sure it is the same as any other declaration of libltdl's
916
+ dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
917
+ dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
918
+ m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
919
+ _$0()
920
+ ])
921
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:82: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
922
+ _LTDL_CONVENIENCE])
923
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:82: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [m4_warn([obsolete], [The macro 'AC_LIBLTDL_CONVENIENCE' is obsolete.
924
+ You should run autoupdate.])dnl
925
+ _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
926
+ _LTDL_CONVENIENCE])
927
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:125: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
928
+ dnl Although the argument is deprecated and no longer documented,
929
+ dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
930
+ dnl here make sure it is the same as any other declaration of libltdl's
931
+ dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
932
+ dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
933
+ m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
934
+ _$0()
935
+ ])
936
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:138: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
937
+ _LTDL_INSTALLABLE])
938
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:138: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [m4_warn([obsolete], [The macro 'AC_LIBLTDL_INSTALLABLE' is obsolete.
939
+ You should run autoupdate.])dnl
940
+ _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
941
+ _LTDL_INSTALLABLE])
942
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:214: -1- AC_DEFUN([_LT_LIBOBJ], [
943
+ m4_pattern_allow([^_LT_LIBOBJS$])
944
+ _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
945
+ ])
946
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:227: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
947
+ _LT_SET_OPTIONS([$0], [$1])
948
+
949
+ dnl We need to keep our own list of libobjs separate from our parent project,
950
+ dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
951
+ dnl we look for our own LIBOBJs.
952
+ m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
953
+ m4_pushdef([AC_LIBSOURCES])
954
+
955
+ dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
956
+ m4_if(_LTDL_MODE, [],
957
+ [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
958
+ m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
959
+ [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
960
+
961
+ AC_ARG_WITH([included_ltdl],
962
+ [AS_HELP_STRING([--with-included-ltdl],
963
+ [use the GNU ltdl sources included here])])
964
+
965
+ if test yes != "$with_included_ltdl"; then
966
+ # We are not being forced to use the included libltdl sources, so
967
+ # decide whether there is a useful installed version we can use.
968
+ AC_CHECK_HEADER([ltdl.h],
969
+ [AC_CHECK_DECL([lt_dlinterface_register],
970
+ [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
971
+ [with_included_ltdl=no],
972
+ [with_included_ltdl=yes])],
973
+ [with_included_ltdl=yes],
974
+ [AC_INCLUDES_DEFAULT
975
+ #include <ltdl.h>])],
976
+ [with_included_ltdl=yes],
977
+ [AC_INCLUDES_DEFAULT]
978
+ )
979
+ fi
980
+
981
+ dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
982
+ dnl was called yet, then for old times' sake, we assume libltdl is in an
983
+ dnl eponymous directory:
984
+ AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
985
+
986
+ AC_ARG_WITH([ltdl_include],
987
+ [AS_HELP_STRING([--with-ltdl-include=DIR],
988
+ [use the ltdl headers installed in DIR])])
989
+
990
+ if test -n "$with_ltdl_include"; then
991
+ if test -f "$with_ltdl_include/ltdl.h"; then :
992
+ else
993
+ AC_MSG_ERROR([invalid ltdl include directory: '$with_ltdl_include'])
994
+ fi
995
+ else
996
+ with_ltdl_include=no
997
+ fi
998
+
999
+ AC_ARG_WITH([ltdl_lib],
1000
+ [AS_HELP_STRING([--with-ltdl-lib=DIR],
1001
+ [use the libltdl.la installed in DIR])])
1002
+
1003
+ if test -n "$with_ltdl_lib"; then
1004
+ if test -f "$with_ltdl_lib/libltdl.la"; then :
1005
+ else
1006
+ AC_MSG_ERROR([invalid ltdl library directory: '$with_ltdl_lib'])
1007
+ fi
1008
+ else
1009
+ with_ltdl_lib=no
1010
+ fi
1011
+
1012
+ case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
1013
+ ,yes,no,no,)
1014
+ m4_case(m4_default(_LTDL_TYPE, [convenience]),
1015
+ [convenience], [_LTDL_CONVENIENCE],
1016
+ [installable], [_LTDL_INSTALLABLE],
1017
+ [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
1018
+ ;;
1019
+ ,no,no,no,)
1020
+ # If the included ltdl is not to be used, then use the
1021
+ # preinstalled libltdl we found.
1022
+ AC_DEFINE([HAVE_LTDL], [1],
1023
+ [Define this if a modern libltdl is already installed])
1024
+ LIBLTDL=-lltdl
1025
+ LTDLDEPS=
1026
+ LTDLINCL=
1027
+ ;;
1028
+ ,no*,no,*)
1029
+ AC_MSG_ERROR(['--with-ltdl-include' and '--with-ltdl-lib' options must be used together])
1030
+ ;;
1031
+ *) with_included_ltdl=no
1032
+ LIBLTDL="-L$with_ltdl_lib -lltdl"
1033
+ LTDLDEPS=
1034
+ LTDLINCL=-I$with_ltdl_include
1035
+ ;;
1036
+ esac
1037
+ INCLTDL=$LTDLINCL
1038
+
1039
+ # Report our decision...
1040
+ AC_MSG_CHECKING([where to find libltdl headers])
1041
+ AC_MSG_RESULT([$LTDLINCL])
1042
+ AC_MSG_CHECKING([where to find libltdl library])
1043
+ AC_MSG_RESULT([$LIBLTDL])
1044
+
1045
+ _LTDL_SETUP
1046
+
1047
+ dnl restore autoconf definition.
1048
+ m4_popdef([AC_LIBOBJ])
1049
+ m4_popdef([AC_LIBSOURCES])
1050
+
1051
+ AC_CONFIG_COMMANDS_PRE([
1052
+ _ltdl_libobjs=
1053
+ _ltdl_ltlibobjs=
1054
+ if test -n "$_LT_LIBOBJS"; then
1055
+ # Remove the extension.
1056
+ _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
1057
+ for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | $SED "$_lt_sed_drop_objext" | sort -u`; do
1058
+ _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
1059
+ _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
1060
+ done
1061
+ fi
1062
+ AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
1063
+ AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
1064
+ ])
1065
+
1066
+ # Only expand once:
1067
+ m4_define([LTDL_INIT])
1068
+ ])
1069
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
1070
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_LIB_LTDL], [m4_warn([obsolete], [The macro 'AC_LIB_LTDL' is obsolete.
1071
+ You should run autoupdate.])dnl
1072
+ LTDL_INIT($@)])
1073
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
1074
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([AC_WITH_LTDL], [m4_warn([obsolete], [The macro 'AC_WITH_LTDL' is obsolete.
1075
+ You should run autoupdate.])dnl
1076
+ LTDL_INIT($@)])
1077
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:355: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
1078
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:355: -1- AC_DEFUN([LT_WITH_LTDL], [m4_warn([obsolete], [The macro 'LT_WITH_LTDL' is obsolete.
1079
+ You should run autoupdate.])dnl
1080
+ LTDL_INIT($@)])
1081
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:368: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
1082
+ AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
1083
+ AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
1084
+ AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
1085
+ AC_REQUIRE([LT_LIB_DLLOAD])dnl
1086
+ AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
1087
+ AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
1088
+ AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
1089
+ AC_REQUIRE([LT_FUNC_ARGZ])dnl
1090
+
1091
+ m4_require([_LT_CHECK_OBJDIR])dnl
1092
+ m4_require([_LT_HEADER_DLFCN])dnl
1093
+ m4_require([_LT_CHECK_DLPREOPEN])dnl
1094
+ m4_require([_LT_DECL_SED])dnl
1095
+
1096
+ dnl Don't require this, or it will be expanded earlier than the code
1097
+ dnl that sets the variables it relies on:
1098
+ _LT_ENABLE_INSTALL
1099
+
1100
+ dnl _LTDL_MODE specific code must be called at least once:
1101
+ _LTDL_MODE_DISPATCH
1102
+
1103
+ # In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
1104
+ # the user used. This is so that ltdl.h can pick up the parent projects
1105
+ # config.h file, The first file in AC_CONFIG_HEADERS must contain the
1106
+ # definitions required by ltdl.c.
1107
+ # FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
1108
+ AC_CONFIG_COMMANDS_PRE([dnl
1109
+ m4_pattern_allow([^LT_CONFIG_H$])dnl
1110
+ m4_ifset([AH_HEADER],
1111
+ [LT_CONFIG_H=AH_HEADER],
1112
+ [m4_ifset([AC_LIST_HEADERS],
1113
+ [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's|^[[ ]]*||;s|[[ :]].*$||'`],
1114
+ [])])])
1115
+ AC_SUBST([LT_CONFIG_H])
1116
+
1117
+ AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
1118
+ [], [], [AC_INCLUDES_DEFAULT])
1119
+
1120
+ AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
1121
+ AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
1122
+
1123
+ m4_pattern_allow([LT_LIBEXT])dnl
1124
+ AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
1125
+
1126
+ name=
1127
+ eval "lt_libprefix=\"$libname_spec\""
1128
+ m4_pattern_allow([LT_LIBPREFIX])dnl
1129
+ AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
1130
+
1131
+ name=ltdl
1132
+ eval "LTDLOPEN=\"$libname_spec\""
1133
+ AC_SUBST([LTDLOPEN])
1134
+ ])
1135
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:445: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1136
+ AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
1137
+ [lt_cv_sys_dlopen_deplibs],
1138
+ [# PORTME does your system automatically load deplibs for dlopen?
1139
+ # or its logical equivalent (e.g. shl_load for HP-UX < 11)
1140
+ # For now, we just catch OSes we know something about -- in the
1141
+ # future, we'll try test this programmatically.
1142
+ lt_cv_sys_dlopen_deplibs=unknown
1143
+ case $host_os in
1144
+ aix3*|aix4.1.*|aix4.2.*)
1145
+ # Unknown whether this is true for these versions of AIX, but
1146
+ # we want this 'case' here to explicitly catch those versions.
1147
+ lt_cv_sys_dlopen_deplibs=unknown
1148
+ ;;
1149
+ aix[[4-9]]*)
1150
+ lt_cv_sys_dlopen_deplibs=yes
1151
+ ;;
1152
+ amigaos*)
1153
+ case $host_cpu in
1154
+ powerpc)
1155
+ lt_cv_sys_dlopen_deplibs=no
1156
+ ;;
1157
+ esac
1158
+ ;;
1159
+ darwin*)
1160
+ # Assuming the user has installed a libdl from somewhere, this is true
1161
+ # If you are looking for one http://www.opendarwin.org/projects/dlcompat
1162
+ lt_cv_sys_dlopen_deplibs=yes
1163
+ ;;
1164
+ freebsd* | dragonfly* | midnightbsd*)
1165
+ lt_cv_sys_dlopen_deplibs=yes
1166
+ ;;
1167
+ gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
1168
+ # GNU and its variants, using gnu ld.so (Glibc)
1169
+ lt_cv_sys_dlopen_deplibs=yes
1170
+ ;;
1171
+ hpux10*|hpux11*)
1172
+ lt_cv_sys_dlopen_deplibs=yes
1173
+ ;;
1174
+ interix*)
1175
+ lt_cv_sys_dlopen_deplibs=yes
1176
+ ;;
1177
+ irix[[12345]]*|irix6.[[01]]*)
1178
+ # Catch all versions of IRIX before 6.2, and indicate that we don't
1179
+ # know how it worked for any of those versions.
1180
+ lt_cv_sys_dlopen_deplibs=unknown
1181
+ ;;
1182
+ irix*)
1183
+ # The case above catches anything before 6.2, and it's known that
1184
+ # at 6.2 and later dlopen does load deplibs.
1185
+ lt_cv_sys_dlopen_deplibs=yes
1186
+ ;;
1187
+ *-mlibc)
1188
+ lt_cv_sys_dlopen_deplibs=yes
1189
+ ;;
1190
+ netbsd* | netbsdelf*-gnu)
1191
+ lt_cv_sys_dlopen_deplibs=yes
1192
+ ;;
1193
+ openbsd*)
1194
+ lt_cv_sys_dlopen_deplibs=yes
1195
+ ;;
1196
+ osf[[1234]]*)
1197
+ # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
1198
+ # it did *not* use an RPATH in a shared library to find objects the
1199
+ # library depends on, so we explicitly say 'no'.
1200
+ lt_cv_sys_dlopen_deplibs=no
1201
+ ;;
1202
+ osf5.0|osf5.0a|osf5.1)
1203
+ # dlopen *does* load deplibs and with the right loader patch applied
1204
+ # it even uses RPATH in a shared library to search for shared objects
1205
+ # that the library depends on, but there's no easy way to know if that
1206
+ # patch is installed. Since this is the case, all we can really
1207
+ # say is unknown -- it depends on the patch being installed. If
1208
+ # it is, this changes to 'yes'. Without it, it would be 'no'.
1209
+ lt_cv_sys_dlopen_deplibs=unknown
1210
+ ;;
1211
+ osf*)
1212
+ # the two cases above should catch all versions of osf <= 5.1. Read
1213
+ # the comments above for what we know about them.
1214
+ # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
1215
+ # is used to find them so we can finally say 'yes'.
1216
+ lt_cv_sys_dlopen_deplibs=yes
1217
+ ;;
1218
+ qnx*)
1219
+ lt_cv_sys_dlopen_deplibs=yes
1220
+ ;;
1221
+ solaris*)
1222
+ lt_cv_sys_dlopen_deplibs=yes
1223
+ ;;
1224
+ sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
1225
+ libltdl_cv_sys_dlopen_deplibs=yes
1226
+ ;;
1227
+ esac
1228
+ ])
1229
+ if test yes != "$lt_cv_sys_dlopen_deplibs"; then
1230
+ AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
1231
+ [Define if the OS needs help to load dependent libraries for dlopen().])
1232
+ fi
1233
+ ])
1234
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:547: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])], [], [])
1235
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:547: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_warn([obsolete], [The macro 'AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
1236
+ You should run autoupdate.])dnl
1237
+ m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1238
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:554: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1239
+ AC_CACHE_CHECK([what extension is used for runtime loadable modules],
1240
+ [libltdl_cv_shlibext],
1241
+ [
1242
+ module=yes
1243
+ eval libltdl_cv_shlibext=$shrext_cmds
1244
+ module=no
1245
+ eval libltdl_cv_shrext=$shrext_cmds
1246
+ ])
1247
+ if test -n "$libltdl_cv_shlibext"; then
1248
+ m4_pattern_allow([LT_MODULE_EXT])dnl
1249
+ AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
1250
+ [Define to the extension used for runtime loadable modules, say, ".so".])
1251
+ fi
1252
+ if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then
1253
+ m4_pattern_allow([LT_SHARED_EXT])dnl
1254
+ AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"],
1255
+ [Define to the shared library suffix, say, ".dylib".])
1256
+ fi
1257
+ if test -n "$shared_archive_member_spec"; then
1258
+ m4_pattern_allow([LT_SHARED_LIB_MEMBER])dnl
1259
+ AC_DEFINE_UNQUOTED([LT_SHARED_LIB_MEMBER], ["($shared_archive_member_spec.o)"],
1260
+ [Define to the shared archive member specification, say "(shr.o)".])
1261
+ fi
1262
+ ])
1263
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:582: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])], [], [])
1264
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:582: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [m4_warn([obsolete], [The macro 'AC_LTDL_SHLIBEXT' is obsolete.
1265
+ You should run autoupdate.])dnl
1266
+ m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1267
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:589: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1268
+ AC_CACHE_CHECK([what variable specifies run-time module search path],
1269
+ [lt_cv_module_path_var], [lt_cv_module_path_var=$shlibpath_var])
1270
+ if test -n "$lt_cv_module_path_var"; then
1271
+ m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
1272
+ AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
1273
+ [Define to the name of the environment variable that determines the run-time module search path.])
1274
+ fi
1275
+ ])
1276
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:601: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])], [], [])
1277
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:601: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [m4_warn([obsolete], [The macro 'AC_LTDL_SHLIBPATH' is obsolete.
1278
+ You should run autoupdate.])dnl
1279
+ m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1280
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:608: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1281
+ AC_CACHE_CHECK([for the default library search path],
1282
+ [lt_cv_sys_dlsearch_path],
1283
+ [lt_cv_sys_dlsearch_path=$sys_lib_dlsearch_path_spec])
1284
+ if test -n "$lt_cv_sys_dlsearch_path"; then
1285
+ sys_dlsearch_path=
1286
+ for dir in $lt_cv_sys_dlsearch_path; do
1287
+ if test -z "$sys_dlsearch_path"; then
1288
+ sys_dlsearch_path=$dir
1289
+ else
1290
+ sys_dlsearch_path=$sys_dlsearch_path$PATH_SEPARATOR$dir
1291
+ fi
1292
+ done
1293
+ m4_pattern_allow([LT_DLSEARCH_PATH])dnl
1294
+ AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
1295
+ [Define to the system default library search path.])
1296
+ fi
1297
+ ])
1298
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:629: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])], [], [])
1299
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:629: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_warn([obsolete], [The macro 'AC_LTDL_SYSSEARCHPATH' is obsolete.
1300
+ You should run autoupdate.])dnl
1301
+ m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1302
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:655: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
1303
+ LT_DLLOADERS=
1304
+ AC_SUBST([LT_DLLOADERS])
1305
+
1306
+ AC_LANG_PUSH([C])
1307
+ lt_dlload_save_LIBS=$LIBS
1308
+
1309
+ LIBADD_DLOPEN=
1310
+ AC_SEARCH_LIBS([dlopen], [dl],
1311
+ [AC_DEFINE([HAVE_LIBDL], [1],
1312
+ [Define if you have the libdl library or equivalent.])
1313
+ if test "$ac_cv_search_dlopen" != "none required"; then
1314
+ LIBADD_DLOPEN=-ldl
1315
+ fi
1316
+ libltdl_cv_lib_dl_dlopen=yes
1317
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1318
+ [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
1319
+ # include <dlfcn.h>
1320
+ #endif
1321
+ ]], [[dlopen(0, 0);]])],
1322
+ [AC_DEFINE([HAVE_LIBDL], [1],
1323
+ [Define if you have the libdl library or equivalent.])
1324
+ libltdl_cv_func_dlopen=yes
1325
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1326
+ [AC_CHECK_LIB([svld], [dlopen],
1327
+ [AC_DEFINE([HAVE_LIBDL], [1],
1328
+ [Define if you have the libdl library or equivalent.])
1329
+ LIBADD_DLOPEN=-lsvld libltdl_cv_func_dlopen=yes
1330
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
1331
+ if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"
1332
+ then
1333
+ lt_save_LIBS=$LIBS
1334
+ LIBS="$LIBS $LIBADD_DLOPEN"
1335
+ AC_CHECK_FUNCS([dlerror])
1336
+ LIBS=$lt_save_LIBS
1337
+ fi
1338
+ AC_SUBST([LIBADD_DLOPEN])
1339
+
1340
+ LIBADD_SHL_LOAD=
1341
+ AC_CHECK_FUNC([shl_load],
1342
+ [AC_DEFINE([HAVE_SHL_LOAD], [1],
1343
+ [Define if you have the shl_load function.])
1344
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
1345
+ [AC_CHECK_LIB([dld], [shl_load],
1346
+ [AC_DEFINE([HAVE_SHL_LOAD], [1],
1347
+ [Define if you have the shl_load function.])
1348
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
1349
+ LIBADD_SHL_LOAD=-ldld])])
1350
+ AC_SUBST([LIBADD_SHL_LOAD])
1351
+
1352
+ case $host_os in
1353
+ darwin[[1567]].*)
1354
+ # We only want this for pre-Mac OS X 10.4.
1355
+ AC_CHECK_FUNC([_dyld_func_lookup],
1356
+ [AC_DEFINE([HAVE_DYLD], [1],
1357
+ [Define if you have the _dyld_func_lookup function.])
1358
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
1359
+ ;;
1360
+ beos*)
1361
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
1362
+ ;;
1363
+ cygwin* | mingw* | windows* | pw32*)
1364
+ AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
1365
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
1366
+ ;;
1367
+ esac
1368
+
1369
+ AC_CHECK_LIB([dld], [dld_link],
1370
+ [AC_DEFINE([HAVE_DLD], [1],
1371
+ [Define if you have the GNU dld library.])
1372
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
1373
+ AC_SUBST([LIBADD_DLD_LINK])
1374
+
1375
+ m4_pattern_allow([^LT_DLPREOPEN$])
1376
+ LT_DLPREOPEN=
1377
+ if test -n "$LT_DLLOADERS"
1378
+ then
1379
+ for lt_loader in $LT_DLLOADERS; do
1380
+ LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
1381
+ done
1382
+ AC_DEFINE([HAVE_LIBDLLOADER], [1],
1383
+ [Define if libdlloader will be built on this platform])
1384
+ fi
1385
+ AC_SUBST([LT_DLPREOPEN])
1386
+
1387
+ dnl This isn't used anymore, but set it for backwards compatibility
1388
+ LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
1389
+ AC_SUBST([LIBADD_DL])
1390
+
1391
+ LIBS=$lt_dlload_save_LIBS
1392
+ AC_LANG_POP
1393
+ ])
1394
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:750: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])], [], [])
1395
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:750: -1- AC_DEFUN([AC_LTDL_DLLIB], [m4_warn([obsolete], [The macro 'AC_LTDL_DLLIB' is obsolete.
1396
+ You should run autoupdate.])dnl
1397
+ m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1398
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:758: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
1399
+ AC_CACHE_CHECK([for _ prefix in compiled symbols],
1400
+ [lt_cv_sys_symbol_underscore],
1401
+ [lt_cv_sys_symbol_underscore=no
1402
+ cat > conftest.$ac_ext <<_LT_EOF
1403
+ void nm_test_func(){}
1404
+ int main(void){nm_test_func;return 0;}
1405
+ _LT_EOF
1406
+ if AC_TRY_EVAL(ac_compile); then
1407
+ # Now try to grab the symbols.
1408
+ ac_nlist=conftest.nm
1409
+ if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
1410
+ # See whether the symbols have a leading underscore.
1411
+ if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
1412
+ lt_cv_sys_symbol_underscore=yes
1413
+ else
1414
+ if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
1415
+ :
1416
+ else
1417
+ echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
1418
+ fi
1419
+ fi
1420
+ else
1421
+ echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
1422
+ fi
1423
+ else
1424
+ echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
1425
+ cat conftest.c >&AS_MESSAGE_LOG_FD
1426
+ fi
1427
+ rm -rf conftest*
1428
+ ])
1429
+ sys_symbol_underscore=$lt_cv_sys_symbol_underscore
1430
+ AC_SUBST([sys_symbol_underscore])
1431
+ ])
1432
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:795: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])], [], [])
1433
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:795: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_warn([obsolete], [The macro 'AC_LTDL_SYMBOL_USCORE' is obsolete.
1434
+ You should run autoupdate.])dnl
1435
+ m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1436
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:802: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([_LT_COMPILER_PIC])dnl for lt_prog_compiler_wl
1437
+ AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl for lt_cv_sys_symbol_underscore
1438
+ AC_REQUIRE([LT_SYS_MODULE_EXT])dnl for libltdl_cv_shlibext
1439
+ if test yes = "$lt_cv_sys_symbol_underscore"; then
1440
+ if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"; then
1441
+ AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
1442
+ [libltdl_cv_need_uscore],
1443
+ [libltdl_cv_need_uscore=unknown
1444
+ dlsym_uscore_save_LIBS=$LIBS
1445
+ LIBS="$LIBS $LIBADD_DLOPEN"
1446
+ libname=conftmod # stay within 8.3 filename limits!
1447
+ cat >$libname.$ac_ext <<_LT_EOF
1448
+ [#line $LINENO "configure"
1449
+ #include "confdefs.h"
1450
+ /* When -fvisibility=hidden is used, assume the code has been annotated
1451
+ correspondingly for the symbols needed. */
1452
+ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
1453
+ int fnord () __attribute__((visibility("default")));
1454
+ #endif
1455
+ int fnord () { return 42; }]
1456
+ _LT_EOF
1457
+
1458
+ # ltfn_module_cmds module_cmds
1459
+ # Execute tilde-delimited MODULE_CMDS with environment primed for
1460
+ # $module_cmds or $archive_cmds type content.
1461
+ ltfn_module_cmds ()
1462
+ {( # subshell avoids polluting parent global environment
1463
+ module_cmds_save_ifs=$IFS; IFS='~'
1464
+ for cmd in @S|@1; do
1465
+ IFS=$module_cmds_save_ifs
1466
+ libobjs=$libname.$ac_objext; lib=$libname$libltdl_cv_shlibext
1467
+ rpath=/not-exists; soname=$libname$libltdl_cv_shlibext; output_objdir=.
1468
+ major=; versuffix=; verstring=; deplibs=
1469
+ ECHO=echo; wl=$lt_prog_compiler_wl; allow_undefined_flag=
1470
+ eval $cmd
1471
+ done
1472
+ IFS=$module_cmds_save_ifs
1473
+ )}
1474
+
1475
+ # Compile a loadable module using libtool macro expansion results.
1476
+ $CC $pic_flag -c $libname.$ac_ext
1477
+ ltfn_module_cmds "${module_cmds:-$archive_cmds}"
1478
+
1479
+ # Try to fetch fnord with dlsym().
1480
+ libltdl_dlunknown=0; libltdl_dlnouscore=1; libltdl_dluscore=2
1481
+ cat >conftest.$ac_ext <<_LT_EOF
1482
+ [#line $LINENO "configure"
1483
+ #include "confdefs.h"
1484
+ #if HAVE_DLFCN_H
1485
+ #include <dlfcn.h>
1486
+ #endif
1487
+ #include <stdio.h>
1488
+ #ifndef RTLD_GLOBAL
1489
+ # ifdef DL_GLOBAL
1490
+ # define RTLD_GLOBAL DL_GLOBAL
1491
+ # else
1492
+ # define RTLD_GLOBAL 0
1493
+ # endif
1494
+ #endif
1495
+ #ifndef RTLD_NOW
1496
+ # ifdef DL_NOW
1497
+ # define RTLD_NOW DL_NOW
1498
+ # else
1499
+ # define RTLD_NOW 0
1500
+ # endif
1501
+ #endif
1502
+ int main (void) {
1503
+ void *handle = dlopen ("`pwd`/$libname$libltdl_cv_shlibext", RTLD_GLOBAL|RTLD_NOW);
1504
+ int status = $libltdl_dlunknown;
1505
+ if (handle) {
1506
+ if (dlsym (handle, "fnord"))
1507
+ status = $libltdl_dlnouscore;
1508
+ else {
1509
+ if (dlsym (handle, "_fnord"))
1510
+ status = $libltdl_dluscore;
1511
+ else
1512
+ puts (dlerror ());
1513
+ }
1514
+ dlclose (handle);
1515
+ } else
1516
+ puts (dlerror ());
1517
+ return status;
1518
+ }]
1519
+ _LT_EOF
1520
+ if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then
1521
+ (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
1522
+ libltdl_status=$?
1523
+ case x$libltdl_status in
1524
+ x$libltdl_dlnouscore) libltdl_cv_need_uscore=no ;;
1525
+ x$libltdl_dluscore) libltdl_cv_need_uscore=yes ;;
1526
+ x*) libltdl_cv_need_uscore=unknown ;;
1527
+ esac
1528
+ fi
1529
+ rm -rf conftest* $libname*
1530
+ LIBS=$dlsym_uscore_save_LIBS
1531
+ ])
1532
+ fi
1533
+ fi
1534
+
1535
+ if test yes = "$libltdl_cv_need_uscore"; then
1536
+ AC_DEFINE([NEED_USCORE], [1],
1537
+ [Define if dlsym() requires a leading underscore in symbol names.])
1538
+ fi
1539
+ ])
1540
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:909: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])], [], [])
1541
+ m4trace:/opt/homebrew/share/aclocal/ltdl.m4:909: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_warn([obsolete], [The macro 'AC_LTDL_DLSYM_USCORE' is obsolete.
1542
+ You should run autoupdate.])dnl
1543
+ m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1544
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
1545
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:113: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
1546
+ AC_DIAGNOSE([obsolete],
1547
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
1548
+ put the 'dlopen' option into LT_INIT's first parameter.])
1549
+ ])
1550
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:113: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_DLOPEN' is obsolete.
1551
+ You should run autoupdate.])dnl
1552
+ _LT_SET_OPTION([LT_INIT], [dlopen])
1553
+ AC_DIAGNOSE([obsolete],
1554
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
1555
+ put the 'dlopen' option into LT_INIT's first parameter.])
1556
+ ])
1557
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:148: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1558
+ _LT_SET_OPTION([LT_INIT], [win32-dll])
1559
+ AC_DIAGNOSE([obsolete],
1560
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
1561
+ put the 'win32-dll' option into LT_INIT's first parameter.])
1562
+ ])
1563
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:148: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_WIN32_DLL' is obsolete.
1564
+ You should run autoupdate.])dnl
1565
+ AC_REQUIRE([AC_CANONICAL_HOST])dnl
1566
+ _LT_SET_OPTION([LT_INIT], [win32-dll])
1567
+ AC_DIAGNOSE([obsolete],
1568
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
1569
+ put the 'win32-dll' option into LT_INIT's first parameter.])
1570
+ ])
1571
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:197: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
1572
+ ])
1573
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:201: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
1574
+ ])
1575
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:205: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
1576
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:205: -1- AC_DEFUN([AM_ENABLE_SHARED], [m4_warn([obsolete], [The macro 'AM_ENABLE_SHARED' is obsolete.
1577
+ You should run autoupdate.])dnl
1578
+ AC_ENABLE_SHARED($@)])
1579
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:206: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
1580
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:206: -1- AC_DEFUN([AM_DISABLE_SHARED], [m4_warn([obsolete], [The macro 'AM_DISABLE_SHARED' is obsolete.
1581
+ You should run autoupdate.])dnl
1582
+ AC_DISABLE_SHARED($@)])
1583
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:251: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
1584
+ ])
1585
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:255: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
1586
+ ])
1587
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:259: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
1588
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:259: -1- AC_DEFUN([AM_ENABLE_STATIC], [m4_warn([obsolete], [The macro 'AM_ENABLE_STATIC' is obsolete.
1589
+ You should run autoupdate.])dnl
1590
+ AC_ENABLE_STATIC($@)])
1591
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:260: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
1592
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:260: -1- AC_DEFUN([AM_DISABLE_STATIC], [m4_warn([obsolete], [The macro 'AM_DISABLE_STATIC' is obsolete.
1593
+ You should run autoupdate.])dnl
1594
+ AC_DISABLE_STATIC($@)])
1595
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:305: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1596
+ AC_DIAGNOSE([obsolete],
1597
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1598
+ the 'fast-install' option into LT_INIT's first parameter.])
1599
+ ])
1600
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:305: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [m4_warn([obsolete], [The macro 'AC_ENABLE_FAST_INSTALL' is obsolete.
1601
+ You should run autoupdate.])dnl
1602
+ _LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1603
+ AC_DIAGNOSE([obsolete],
1604
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1605
+ the 'fast-install' option into LT_INIT's first parameter.])
1606
+ ])
1607
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:312: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
1608
+ AC_DIAGNOSE([obsolete],
1609
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1610
+ the 'disable-fast-install' option into LT_INIT's first parameter.])
1611
+ ])
1612
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:312: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [m4_warn([obsolete], [The macro 'AC_DISABLE_FAST_INSTALL' is obsolete.
1613
+ You should run autoupdate.])dnl
1614
+ _LT_SET_OPTION([LT_INIT], [disable-fast-install])
1615
+ AC_DIAGNOSE([obsolete],
1616
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1617
+ the 'disable-fast-install' option into LT_INIT's first parameter.])
1618
+ ])
1619
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:441: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
1620
+ AC_DIAGNOSE([obsolete],
1621
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
1622
+ put the 'pic-only' option into LT_INIT's first parameter.])
1623
+ ])
1624
+ m4trace:/opt/homebrew/share/aclocal/ltoptions.m4:441: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [m4_warn([obsolete], [The macro 'AC_LIBTOOL_PICMODE' is obsolete.
1625
+ You should run autoupdate.])dnl
1626
+ _LT_SET_OPTION([LT_INIT], [pic-only])
1627
+ AC_DIAGNOSE([obsolete],
1628
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
1629
+ put the 'pic-only' option into LT_INIT's first parameter.])
1630
+ ])
1631
+ m4trace:/opt/homebrew/share/aclocal/ltsugar.m4:14: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
1632
+ m4trace:/opt/homebrew/share/aclocal/ltversion.m4:19: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.5.4'
1633
+ macro_revision='2.5.4'
1634
+ _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
1635
+ _LT_DECL(, macro_revision, 0)
1636
+ ])
1637
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:37: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
1638
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
1639
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
1640
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:43: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
1641
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:45: -1- AC_DEFUN([_LT_AC_TAGVAR])
1642
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
1643
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:47: -1- AC_DEFUN([AC_LTDL_PREOPEN])
1644
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
1645
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:49: -1- AC_DEFUN([_LT_AC_LOCK])
1646
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:50: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
1647
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:51: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
1648
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
1649
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
1650
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
1651
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LTDL_OBJDIR])
1652
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
1653
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:57: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
1654
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PATH_MAGIC])
1655
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_GNU])
1656
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:60: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
1657
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:61: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
1658
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
1659
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
1660
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
1661
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
1662
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:66: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
1663
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:67: -1- AC_DEFUN([LT_AC_PROG_EGREP])
1664
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:68: -1- AC_DEFUN([LT_AC_PROG_SED])
1665
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:72: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
1666
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:73: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
1667
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:74: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
1668
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:75: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
1669
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:76: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
1670
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_CXX])
1671
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_F77])
1672
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:80: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
1673
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
1674
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
1675
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
1676
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
1677
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
1678
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
1679
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
1680
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
1681
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
1682
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
1683
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
1684
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
1685
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:94: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
1686
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_F77])
1687
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_FC])
1688
+ m4trace:/opt/homebrew/share/aclocal/lt~obsolete.m4:99: -1- AC_DEFUN([_LT_PROG_CXX])
1689
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:62: -1- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
1690
+ m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
1691
+ m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
1692
+ AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
1693
+ AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
1694
+ AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
1695
+
1696
+ if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
1697
+ AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
1698
+ fi
1699
+ if test -n "$PKG_CONFIG"; then
1700
+ _pkg_min_version=m4_default([$1], [0.9.0])
1701
+ AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
1702
+ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
1703
+ AC_MSG_RESULT([yes])
1704
+ else
1705
+ AC_MSG_RESULT([no])
1706
+ PKG_CONFIG=""
1707
+ fi
1708
+ fi
1709
+ if test -z "$PKG_CONFIG"; then
1710
+ m4_default([$2], [AC_MSG_ERROR([pkg-config not found])])
1711
+ fi[]dnl
1712
+ ])
1713
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:99: -1- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
1714
+ if test -n "$PKG_CONFIG" && \
1715
+ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
1716
+ m4_default([$2], [:])
1717
+ m4_ifvaln([$3], [else
1718
+ $3])dnl
1719
+ fi])
1720
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:128: -1- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
1721
+ if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
1722
+ _pkg_short_errors_supported=yes
1723
+ else
1724
+ _pkg_short_errors_supported=no
1725
+ fi[]dnl
1726
+ ])
1727
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:146: -1- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
1728
+ AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
1729
+ AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
1730
+
1731
+ pkg_failed=no
1732
+ AC_MSG_CHECKING([for $2])
1733
+
1734
+ _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
1735
+ _PKG_CONFIG([$1][_LIBS], [libs], [$2])
1736
+
1737
+ m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
1738
+ and $1[]_LIBS to avoid the need to call pkg-config.
1739
+ See the pkg-config man page for more details.])
1740
+
1741
+ if test $pkg_failed = yes; then
1742
+ AC_MSG_RESULT([no])
1743
+ _PKG_SHORT_ERRORS_SUPPORTED
1744
+ if test $_pkg_short_errors_supported = yes; then
1745
+ $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
1746
+ else
1747
+ $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
1748
+ fi
1749
+ # Put the nasty error message in config.log where it belongs
1750
+ echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
1751
+
1752
+ m4_default([$4], [AC_MSG_ERROR(
1753
+ [Package requirements ($2) were not met:
1754
+
1755
+ $$1_PKG_ERRORS
1756
+
1757
+ Consider adjusting the PKG_CONFIG_PATH environment variable if you
1758
+ installed software in a non-standard prefix.
1759
+
1760
+ _PKG_TEXT])[]dnl
1761
+ ])
1762
+ elif test $pkg_failed = untried; then
1763
+ AC_MSG_RESULT([no])
1764
+ m4_default([$4], [AC_MSG_FAILURE(
1765
+ [The pkg-config script could not be found or is too old. Make sure it
1766
+ is in your PATH or set the PKG_CONFIG environment variable to the full
1767
+ path to pkg-config.
1768
+
1769
+ _PKG_TEXT
1770
+
1771
+ To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
1772
+ ])
1773
+ else
1774
+ $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
1775
+ $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
1776
+ AC_MSG_RESULT([yes])
1777
+ $3
1778
+ fi[]dnl
1779
+ ])
1780
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:215: -1- AC_DEFUN([PKG_CHECK_MODULES_STATIC], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
1781
+ _save_PKG_CONFIG=$PKG_CONFIG
1782
+ PKG_CONFIG="$PKG_CONFIG --static"
1783
+ PKG_CHECK_MODULES($@)
1784
+ PKG_CONFIG=$_save_PKG_CONFIG[]dnl
1785
+ ])
1786
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:233: -1- AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
1787
+ m4_pushdef([pkg_description],
1788
+ [pkg-config installation directory @<:@]pkg_default[@:>@])
1789
+ AC_ARG_WITH([pkgconfigdir],
1790
+ [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
1791
+ [with_pkgconfigdir=]pkg_default)
1792
+ AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
1793
+ m4_popdef([pkg_default])
1794
+ m4_popdef([pkg_description])
1795
+ ])
1796
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:255: -1- AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
1797
+ m4_pushdef([pkg_description],
1798
+ [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
1799
+ AC_ARG_WITH([noarch-pkgconfigdir],
1800
+ [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
1801
+ [with_noarch_pkgconfigdir=]pkg_default)
1802
+ AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
1803
+ m4_popdef([pkg_default])
1804
+ m4_popdef([pkg_description])
1805
+ ])
1806
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:274: -1- AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
1807
+ AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
1808
+
1809
+ _PKG_CONFIG([$1], [variable="][$3]["], [$2])
1810
+ AS_VAR_COPY([$1], [pkg_cv_][$1])
1811
+
1812
+ AS_VAR_IF([$1], [""], [$5], [$4])dnl
1813
+ ])
1814
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:292: -1- AC_DEFUN([PKG_WITH_MODULES], [
1815
+ m4_pushdef([with_arg], m4_tolower([$1]))
1816
+
1817
+ m4_pushdef([description],
1818
+ [m4_default([$5], [build with ]with_arg[ support])])
1819
+
1820
+ m4_pushdef([def_arg], [m4_default([$6], [auto])])
1821
+ m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
1822
+ m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
1823
+
1824
+ m4_case(def_arg,
1825
+ [yes],[m4_pushdef([with_without], [--without-]with_arg)],
1826
+ [m4_pushdef([with_without],[--with-]with_arg)])
1827
+
1828
+ AC_ARG_WITH(with_arg,
1829
+ AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
1830
+ [AS_TR_SH([with_]with_arg)=def_arg])
1831
+
1832
+ AS_CASE([$AS_TR_SH([with_]with_arg)],
1833
+ [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
1834
+ [auto],[PKG_CHECK_MODULES([$1],[$2],
1835
+ [m4_n([def_action_if_found]) $3],
1836
+ [m4_n([def_action_if_not_found]) $4])])
1837
+
1838
+ m4_popdef([with_arg])
1839
+ m4_popdef([description])
1840
+ m4_popdef([def_arg])
1841
+
1842
+ ])
1843
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:329: -1- AC_DEFUN([PKG_HAVE_WITH_MODULES], [
1844
+ PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
1845
+
1846
+ AM_CONDITIONAL([HAVE_][$1],
1847
+ [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
1848
+ ])
1849
+ m4trace:/opt/homebrew/share/aclocal/pkg.m4:344: -1- AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES], [
1850
+ PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
1851
+
1852
+ AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
1853
+ [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
1854
+ ])
1855
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.18'
1856
+ dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
1857
+ dnl require some minimum version. Point them to the right macro.
1858
+ m4_if([$1], [1.18], [],
1859
+ [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
1860
+ ])
1861
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.18])dnl
1862
+ m4_ifndef([AC_AUTOCONF_VERSION],
1863
+ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
1864
+ _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
1865
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
1866
+ # Expand $ac_aux_dir to an absolute path.
1867
+ am_aux_dir=`cd "$ac_aux_dir" && pwd`
1868
+ ])
1869
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
1870
+ m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
1871
+ [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
1872
+ AC_SUBST([$1_TRUE])dnl
1873
+ AC_SUBST([$1_FALSE])dnl
1874
+ _AM_SUBST_NOTMAKE([$1_TRUE])dnl
1875
+ _AM_SUBST_NOTMAKE([$1_FALSE])dnl
1876
+ m4_define([_AM_COND_VALUE_$1], [$2])dnl
1877
+ if $2; then
1878
+ $1_TRUE=
1879
+ $1_FALSE='#'
1880
+ else
1881
+ $1_TRUE='#'
1882
+ $1_FALSE=
1883
+ fi
1884
+ AC_CONFIG_COMMANDS_PRE(
1885
+ [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
1886
+ AC_MSG_ERROR([[conditional "$1" was never defined.
1887
+ Usually this means the macro was only invoked conditionally.]])
1888
+ fi])])
1889
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
1890
+ AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
1891
+ AC_REQUIRE([AM_MAKE_INCLUDE])dnl
1892
+ AC_REQUIRE([AM_DEP_TRACK])dnl
1893
+
1894
+ m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
1895
+ [$1], [CXX], [depcc="$CXX" am_compiler_list=],
1896
+ [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
1897
+ [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
1898
+ [$1], [UPC], [depcc="$UPC" am_compiler_list=],
1899
+ [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
1900
+ [depcc="$$1" am_compiler_list=])
1901
+
1902
+ AC_CACHE_CHECK([dependency style of $depcc],
1903
+ [am_cv_$1_dependencies_compiler_type],
1904
+ [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
1905
+ # We make a subdir and do the tests there. Otherwise we can end up
1906
+ # making bogus files that we don't know about and never remove. For
1907
+ # instance it was reported that on HP-UX the gcc test will end up
1908
+ # making a dummy file named 'D' -- because '-MD' means "put the output
1909
+ # in D".
1910
+ rm -rf conftest.dir
1911
+ mkdir conftest.dir
1912
+ # Copy depcomp to subdir because otherwise we won't find it if we're
1913
+ # using a relative directory.
1914
+ cp "$am_depcomp" conftest.dir
1915
+ cd conftest.dir
1916
+ # We will build objects and dependencies in a subdirectory because
1917
+ # it helps to detect inapplicable dependency modes. For instance
1918
+ # both Tru64's cc and ICC support -MD to output dependencies as a
1919
+ # side effect of compilation, but ICC will put the dependencies in
1920
+ # the current directory while Tru64 will put them in the object
1921
+ # directory.
1922
+ mkdir sub
1923
+
1924
+ am_cv_$1_dependencies_compiler_type=none
1925
+ if test "$am_compiler_list" = ""; then
1926
+ am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
1927
+ fi
1928
+ am__universal=false
1929
+ m4_case([$1], [CC],
1930
+ [case " $depcc " in #(
1931
+ *\ -arch\ *\ -arch\ *) am__universal=true ;;
1932
+ esac],
1933
+ [CXX],
1934
+ [case " $depcc " in #(
1935
+ *\ -arch\ *\ -arch\ *) am__universal=true ;;
1936
+ esac])
1937
+
1938
+ for depmode in $am_compiler_list; do
1939
+ # Setup a source with many dependencies, because some compilers
1940
+ # like to wrap large dependency lists on column 80 (with \), and
1941
+ # we should not choose a depcomp mode which is confused by this.
1942
+ #
1943
+ # We need to recreate these files for each test, as the compiler may
1944
+ # overwrite some of them when testing with obscure command lines.
1945
+ # This happens at least with the AIX C compiler.
1946
+ : > sub/conftest.c
1947
+ for i in 1 2 3 4 5 6; do
1948
+ echo '#include "conftst'$i'.h"' >> sub/conftest.c
1949
+ # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
1950
+ # Solaris 10 /bin/sh.
1951
+ echo '/* dummy */' > sub/conftst$i.h
1952
+ done
1953
+ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
1954
+
1955
+ # We check with '-c' and '-o' for the sake of the "dashmstdout"
1956
+ # mode. It turns out that the SunPro C++ compiler does not properly
1957
+ # handle '-M -o', and we need to detect this. Also, some Intel
1958
+ # versions had trouble with output in subdirs.
1959
+ am__obj=sub/conftest.${OBJEXT-o}
1960
+ am__minus_obj="-o $am__obj"
1961
+ case $depmode in
1962
+ gcc)
1963
+ # This depmode causes a compiler race in universal mode.
1964
+ test "$am__universal" = false || continue
1965
+ ;;
1966
+ nosideeffect)
1967
+ # After this tag, mechanisms are not by side-effect, so they'll
1968
+ # only be used when explicitly requested.
1969
+ if test "x$enable_dependency_tracking" = xyes; then
1970
+ continue
1971
+ else
1972
+ break
1973
+ fi
1974
+ ;;
1975
+ msvc7 | msvc7msys | msvisualcpp | msvcmsys)
1976
+ # This compiler won't grok '-c -o', but also, the minuso test has
1977
+ # not run yet. These depmodes are late enough in the game, and
1978
+ # so weak that their functioning should not be impacted.
1979
+ am__obj=conftest.${OBJEXT-o}
1980
+ am__minus_obj=
1981
+ ;;
1982
+ none) break ;;
1983
+ esac
1984
+ if depmode=$depmode \
1985
+ source=sub/conftest.c object=$am__obj \
1986
+ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
1987
+ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
1988
+ >/dev/null 2>conftest.err &&
1989
+ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
1990
+ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
1991
+ grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
1992
+ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
1993
+ # icc doesn't choke on unknown options, it will just issue warnings
1994
+ # or remarks (even with -Werror). So we grep stderr for any message
1995
+ # that says an option was ignored or not supported.
1996
+ # When given -MP, icc 7.0 and 7.1 complain thus:
1997
+ # icc: Command line warning: ignoring option '-M'; no argument required
1998
+ # The diagnosis changed in icc 8.0:
1999
+ # icc: Command line remark: option '-MP' not supported
2000
+ if (grep 'ignoring option' conftest.err ||
2001
+ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
2002
+ am_cv_$1_dependencies_compiler_type=$depmode
2003
+ break
2004
+ fi
2005
+ fi
2006
+ done
2007
+
2008
+ cd ..
2009
+ rm -rf conftest.dir
2010
+ else
2011
+ am_cv_$1_dependencies_compiler_type=none
2012
+ fi
2013
+ ])
2014
+ AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
2015
+ AM_CONDITIONAL([am__fastdep$1], [
2016
+ test "x$enable_dependency_tracking" != xno \
2017
+ && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
2018
+ ])
2019
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
2020
+ AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
2021
+ ])
2022
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
2023
+ AS_HELP_STRING(
2024
+ [--enable-dependency-tracking],
2025
+ [do not reject slow dependency extractors])
2026
+ AS_HELP_STRING(
2027
+ [--disable-dependency-tracking],
2028
+ [speeds up one-time build])])
2029
+ if test "x$enable_dependency_tracking" != xno; then
2030
+ am_depcomp="$ac_aux_dir/depcomp"
2031
+ AMDEPBACKSLASH='\'
2032
+ am__nodep='_no'
2033
+ fi
2034
+ AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2035
+ AC_SUBST([AMDEPBACKSLASH])dnl
2036
+ _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
2037
+ AC_SUBST([am__nodep])dnl
2038
+ _AM_SUBST_NOTMAKE([am__nodep])dnl
2039
+ ])
2040
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/depout.m4:11: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
2041
+ # Older Autoconf quotes --file arguments for eval, but not when files
2042
+ # are listed without --file. Let's play safe and only enable the eval
2043
+ # if we detect the quoting.
2044
+ # TODO: see whether this extra hack can be removed once we start
2045
+ # requiring Autoconf 2.70 or later.
2046
+ AS_CASE([$CONFIG_FILES],
2047
+ [*\'*], [eval set x "$CONFIG_FILES"],
2048
+ [*], [set x $CONFIG_FILES])
2049
+ shift
2050
+ # Used to flag and report bootstrapping failures.
2051
+ am_rc=0
2052
+ for am_mf
2053
+ do
2054
+ # Strip MF so we end up with the name of the file.
2055
+ am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
2056
+ # Check whether this is an Automake generated Makefile which includes
2057
+ # dependency-tracking related rules and includes.
2058
+ # Grep'ing the whole file directly is not great: AIX grep has a line
2059
+ # limit of 2048, but all sed's we know have understand at least 4000.
2060
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
2061
+ || continue
2062
+ am_dirpart=`AS_DIRNAME(["$am_mf"])`
2063
+ am_filepart=`AS_BASENAME(["$am_mf"])`
2064
+ AM_RUN_LOG([cd "$am_dirpart" \
2065
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
2066
+ | $MAKE -f - am--depfiles]) || am_rc=$?
2067
+ done
2068
+ if test $am_rc -ne 0; then
2069
+ AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
2070
+ for automatic dependency tracking. If GNU make was not used, consider
2071
+ re-running the configure script with MAKE="gmake" (or whatever is
2072
+ necessary). You can also try re-running configure with the
2073
+ '--disable-dependency-tracking' option to at least be able to build
2074
+ the package (albeit without support for automatic dependency tracking).])
2075
+ fi
2076
+ AS_UNSET([am_dirpart])
2077
+ AS_UNSET([am_filepart])
2078
+ AS_UNSET([am_mf])
2079
+ AS_UNSET([am_rc])
2080
+ rm -f conftest-deps.mk
2081
+ }
2082
+ ])
2083
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/depout.m4:64: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
2084
+ [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
2085
+ [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
2086
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/extra-recurs.m4:16: -1- AC_DEFUN([AM_EXTRA_RECURSIVE_TARGETS], [])
2087
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/init.m4:29: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
2088
+ m4_ifdef([_$0_ALREADY_INIT],
2089
+ [m4_fatal([$0 expanded multiple times
2090
+ ]m4_defn([_$0_ALREADY_INIT]))],
2091
+ [m4_define([_$0_ALREADY_INIT], m4_expansion_stack)])dnl
2092
+ dnl Autoconf wants to disallow AM_ names. We explicitly allow
2093
+ dnl the ones we care about.
2094
+ m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
2095
+ AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
2096
+ AC_REQUIRE([AC_PROG_INSTALL])dnl
2097
+ if test "`cd $srcdir && pwd`" != "`pwd`"; then
2098
+ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
2099
+ # is not polluted with repeated "-I."
2100
+ AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
2101
+ # test to see if srcdir already configured
2102
+ if test -f $srcdir/config.status; then
2103
+ AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
2104
+ fi
2105
+ fi
2106
+
2107
+ # test whether we have cygpath
2108
+ if test -z "$CYGPATH_W"; then
2109
+ if (cygpath --version) >/dev/null 2>/dev/null; then
2110
+ CYGPATH_W='cygpath -w'
2111
+ else
2112
+ CYGPATH_W=echo
2113
+ fi
2114
+ fi
2115
+ AC_SUBST([CYGPATH_W])
2116
+
2117
+ # Define the identity of the package.
2118
+ dnl Distinguish between old-style and new-style calls.
2119
+ m4_ifval([$2],
2120
+ [AC_DIAGNOSE([obsolete],
2121
+ [$0: two- and three-arguments forms are deprecated.])
2122
+ m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
2123
+ AC_SUBST([PACKAGE], [$1])dnl
2124
+ AC_SUBST([VERSION], [$2])],
2125
+ [_AM_SET_OPTIONS([$1])dnl
2126
+ dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
2127
+ m4_if(
2128
+ m4_ifset([AC_PACKAGE_NAME], [ok]):m4_ifset([AC_PACKAGE_VERSION], [ok]),
2129
+ [ok:ok],,
2130
+ [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
2131
+ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
2132
+ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
2133
+
2134
+ _AM_IF_OPTION([no-define],,
2135
+ [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
2136
+ AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
2137
+
2138
+ # Some tools Automake needs.
2139
+ AC_REQUIRE([AM_SANITY_CHECK])dnl
2140
+ AC_REQUIRE([AC_ARG_PROGRAM])dnl
2141
+ AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
2142
+ AM_MISSING_PROG([AUTOCONF], [autoconf])
2143
+ AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
2144
+ AM_MISSING_PROG([AUTOHEADER], [autoheader])
2145
+ AM_MISSING_PROG([MAKEINFO], [makeinfo])
2146
+ AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2147
+ AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
2148
+ AC_REQUIRE([AC_PROG_MKDIR_P])dnl
2149
+ # For better backward compatibility. To be removed once Automake 1.9.x
2150
+ # dies out for good. For more background, see:
2151
+ # <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2152
+ # <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2153
+ AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
2154
+ # We need awk for the "check" target (and possibly the TAP driver). The
2155
+ # system "awk" is bad on some platforms.
2156
+ AC_REQUIRE([AC_PROG_AWK])dnl
2157
+ AC_REQUIRE([AC_PROG_MAKE_SET])dnl
2158
+ AC_REQUIRE([AM_SET_LEADING_DOT])dnl
2159
+ _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
2160
+ [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2161
+ [_AM_IF_OPTION([tar-v7], [_AM_PROG_TAR([v7])],
2162
+ [_AM_PROG_TAR([ustar])])])])
2163
+ _AM_IF_OPTION([no-dependencies],,
2164
+ [AC_PROVIDE_IFELSE([AC_PROG_CC],
2165
+ [_AM_DEPENDENCIES([CC])],
2166
+ [m4_define([AC_PROG_CC],
2167
+ m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
2168
+ AC_PROVIDE_IFELSE([AC_PROG_CXX],
2169
+ [_AM_DEPENDENCIES([CXX])],
2170
+ [m4_define([AC_PROG_CXX],
2171
+ m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
2172
+ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2173
+ [_AM_DEPENDENCIES([OBJC])],
2174
+ [m4_define([AC_PROG_OBJC],
2175
+ m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
2176
+ AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
2177
+ [_AM_DEPENDENCIES([OBJCXX])],
2178
+ [m4_define([AC_PROG_OBJCXX],
2179
+ m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
2180
+ ])
2181
+ # Variables for tags utilities; see am/tags.am
2182
+ if test -z "$CTAGS"; then
2183
+ CTAGS=ctags
2184
+ fi
2185
+ AC_SUBST([CTAGS])
2186
+ if test -z "$ETAGS"; then
2187
+ ETAGS=etags
2188
+ fi
2189
+ AC_SUBST([ETAGS])
2190
+ if test -z "$CSCOPE"; then
2191
+ CSCOPE=cscope
2192
+ fi
2193
+ AC_SUBST([CSCOPE])
2194
+
2195
+ AC_REQUIRE([_AM_SILENT_RULES])dnl
2196
+ dnl The testsuite driver may need to know about EXEEXT, so add the
2197
+ dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
2198
+ dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
2199
+ AC_CONFIG_COMMANDS_PRE(dnl
2200
+ [m4_provide_if([_AM_COMPILER_EXEEXT],
2201
+ [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
2202
+
2203
+ AC_REQUIRE([_AM_PROG_RM_F])
2204
+ AC_REQUIRE([_AM_PROG_XARGS_N])
2205
+
2206
+ dnl The trailing newline in this macro's definition is deliberate, for
2207
+ dnl backward compatibility and to allow trailing 'dnl'-style comments
2208
+ dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
2209
+ ])
2210
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/init.m4:167: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
2211
+ _am_arg=$1
2212
+ _am_stamp_count=1
2213
+ for _am_header in $config_headers :; do
2214
+ case $_am_header in
2215
+ $_am_arg | $_am_arg:* )
2216
+ break ;;
2217
+ * )
2218
+ _am_stamp_count=`expr $_am_stamp_count + 1` ;;
2219
+ esac
2220
+ done
2221
+ echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
2222
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2223
+ if test x"${install_sh+set}" != xset; then
2224
+ case $am_aux_dir in
2225
+ *\ * | *\ *)
2226
+ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
2227
+ *)
2228
+ install_sh="\${SHELL} $am_aux_dir/install-sh"
2229
+ esac
2230
+ fi
2231
+ AC_SUBST([install_sh])])
2232
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
2233
+ mkdir .tst 2>/dev/null
2234
+ if test -d .tst; then
2235
+ am__leading_dot=.
2236
+ else
2237
+ am__leading_dot=_
2238
+ fi
2239
+ rmdir .tst 2>/dev/null
2240
+ AC_SUBST([am__leading_dot])])
2241
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/make.m4:13: -1- AC_DEFUN([AM_MAKE_INCLUDE], [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
2242
+ cat > confinc.mk << 'END'
2243
+ am__doit:
2244
+ @echo this is the am__doit target >confinc.out
2245
+ .PHONY: am__doit
2246
+ END
2247
+ am__include="#"
2248
+ am__quote=
2249
+ # BSD make does it like this.
2250
+ echo '.include "confinc.mk" # ignored' > confmf.BSD
2251
+ # Other make implementations (GNU, Solaris 10, AIX) do it like this.
2252
+ echo 'include confinc.mk # ignored' > confmf.GNU
2253
+ _am_result=no
2254
+ for s in GNU BSD; do
2255
+ AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
2256
+ AS_CASE([$?:`cat confinc.out 2>/dev/null`],
2257
+ ['0:this is the am__doit target'],
2258
+ [AS_CASE([$s],
2259
+ [BSD], [am__include='.include' am__quote='"'],
2260
+ [am__include='include' am__quote=''])])
2261
+ if test "$am__include" != "#"; then
2262
+ _am_result="yes ($s style)"
2263
+ break
2264
+ fi
2265
+ done
2266
+ rm -f confinc.* confmf.*
2267
+ AC_MSG_RESULT([${_am_result}])
2268
+ AC_SUBST([am__include])])
2269
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/make.m4:42: -1- m4_pattern_allow([^am__quote$])
2270
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
2271
+ $1=${$1-"${am_missing_run}$2"}
2272
+ AC_SUBST($1)])
2273
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2274
+ AC_REQUIRE_AUX_FILE([missing])dnl
2275
+ if test x"${MISSING+set}" != xset; then
2276
+ MISSING="\${SHELL} '$am_aux_dir/missing'"
2277
+ fi
2278
+ # Use eval to expand $SHELL
2279
+ if eval "$MISSING --is-lightweight"; then
2280
+ am_missing_run="$MISSING "
2281
+ else
2282
+ am_missing_run=
2283
+ AC_MSG_WARN(['missing' script is too old or missing])
2284
+ fi
2285
+ ])
2286
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
2287
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
2288
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/options.m4:23: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
2289
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
2290
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/prog-cc-c-o.m4:12: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2291
+ AC_REQUIRE_AUX_FILE([compile])dnl
2292
+ AC_LANG_PUSH([C])dnl
2293
+ AC_CACHE_CHECK(
2294
+ [whether $CC understands -c and -o together],
2295
+ [am_cv_prog_cc_c_o],
2296
+ [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
2297
+ # Make sure it works both with $CC and with simple cc.
2298
+ # Following AC_PROG_CC_C_O, we do the test twice because some
2299
+ # compilers refuse to overwrite an existing .o file with -o,
2300
+ # though they will create one.
2301
+ am_cv_prog_cc_c_o=yes
2302
+ for am_i in 1 2; do
2303
+ if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
2304
+ && test -f conftest2.$ac_objext; then
2305
+ : OK
2306
+ else
2307
+ am_cv_prog_cc_c_o=no
2308
+ break
2309
+ fi
2310
+ done
2311
+ # aligned with autoconf, so not including core; see bug#72225.
2312
+ rm -f -r a.out a.exe b.out conftest.$ac_ext conftest.$ac_objext \
2313
+ conftest.dSYM conftest1.$ac_ext conftest1.$ac_objext conftest1.dSYM \
2314
+ conftest2.$ac_ext conftest2.$ac_objext conftest2.dSYM
2315
+ unset am_i])
2316
+ if test "$am_cv_prog_cc_c_o" != yes; then
2317
+ # Losing compiler, so override with the script.
2318
+ # FIXME: It is wrong to rewrite CC.
2319
+ # But if we don't then we get into trouble of one sort or another.
2320
+ # A longer-term fix would be to have automake use am__CC in this case,
2321
+ # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
2322
+ CC="$am_aux_dir/compile $CC"
2323
+ fi
2324
+ AC_LANG_POP([C])])
2325
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/prog-cc-c-o.m4:50: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
2326
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/rmf.m4:12: -1- AC_DEFUN([_AM_PROG_RM_F], [am__rm_f_notfound=
2327
+ AS_IF([(rm -f && rm -fr && rm -rf) 2>/dev/null], [], [am__rm_f_notfound='""'])
2328
+ AC_SUBST(am__rm_f_notfound)
2329
+ ])
2330
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
2331
+ ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
2332
+ ac_status=$?
2333
+ echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
2334
+ (exit $ac_status); }])
2335
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/sanity.m4:11: -1- AC_DEFUN([_AM_SLEEP_FRACTIONAL_SECONDS], [dnl
2336
+ AC_CACHE_CHECK([whether sleep supports fractional seconds],
2337
+ am_cv_sleep_fractional_seconds, [dnl
2338
+ AS_IF([sleep 0.001 2>/dev/null], [am_cv_sleep_fractional_seconds=yes],
2339
+ [am_cv_sleep_fractional_seconds=no])
2340
+ ])])
2341
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/sanity.m4:28: -1- AC_DEFUN([_AM_FILESYSTEM_TIMESTAMP_RESOLUTION], [dnl
2342
+ AC_REQUIRE([_AM_SLEEP_FRACTIONAL_SECONDS])
2343
+ AC_CACHE_CHECK([filesystem timestamp resolution],
2344
+ am_cv_filesystem_timestamp_resolution, [dnl
2345
+ # Default to the worst case.
2346
+ am_cv_filesystem_timestamp_resolution=2
2347
+
2348
+ # Only try to go finer than 1 sec if sleep can do it.
2349
+ # Don't try 1 sec, because if 0.01 sec and 0.1 sec don't work,
2350
+ # - 1 sec is not much of a win compared to 2 sec, and
2351
+ # - it takes 2 seconds to perform the test whether 1 sec works.
2352
+ #
2353
+ # Instead, just use the default 2s on platforms that have 1s resolution,
2354
+ # accept the extra 1s delay when using $sleep in the Automake tests, in
2355
+ # exchange for not incurring the 2s delay for running the test for all
2356
+ # packages.
2357
+ #
2358
+ am_try_resolutions=
2359
+ if test "$am_cv_sleep_fractional_seconds" = yes; then
2360
+ # Even a millisecond often causes a bunch of false positives,
2361
+ # so just try a hundredth of a second. The time saved between .001 and
2362
+ # .01 is not terribly consequential.
2363
+ am_try_resolutions="0.01 0.1 $am_try_resolutions"
2364
+ fi
2365
+
2366
+ # In order to catch current-generation FAT out, we must *modify* files
2367
+ # that already exist; the *creation* timestamp is finer. Use names
2368
+ # that make ls -t sort them differently when they have equal
2369
+ # timestamps than when they have distinct timestamps, keeping
2370
+ # in mind that ls -t prints the *newest* file first.
2371
+ rm -f conftest.ts?
2372
+ : > conftest.ts1
2373
+ : > conftest.ts2
2374
+ : > conftest.ts3
2375
+
2376
+ # Make sure ls -t actually works. Do 'set' in a subshell so we don't
2377
+ # clobber the current shell's arguments. (Outer-level square brackets
2378
+ # are removed by m4; they're present so that m4 does not expand
2379
+ # <dollar><star>; be careful, easy to get confused.)
2380
+ if (
2381
+ set X `[ls -t conftest.ts[12]]` &&
2382
+ {
2383
+ test "$[]*" != "X conftest.ts1 conftest.ts2" ||
2384
+ test "$[]*" != "X conftest.ts2 conftest.ts1";
2385
+ }
2386
+ ); then :; else
2387
+ # If neither matched, then we have a broken ls. This can happen
2388
+ # if, for instance, CONFIG_SHELL is bash and it inherits a
2389
+ # broken ls alias from the environment. This has actually
2390
+ # happened. Such a system could not be considered "sane".
2391
+ _AS_ECHO_UNQUOTED(
2392
+ ["Bad output from ls -t: \"`[ls -t conftest.ts[12]]`\""],
2393
+ [AS_MESSAGE_LOG_FD])
2394
+ AC_MSG_FAILURE([ls -t produces unexpected output.
2395
+ Make sure there is not a broken ls alias in your environment.])
2396
+ fi
2397
+
2398
+ for am_try_res in $am_try_resolutions; do
2399
+ # Any one fine-grained sleep might happen to cross the boundary
2400
+ # between two values of a coarser actual resolution, but if we do
2401
+ # two fine-grained sleeps in a row, at least one of them will fall
2402
+ # entirely within a coarse interval.
2403
+ echo alpha > conftest.ts1
2404
+ sleep $am_try_res
2405
+ echo beta > conftest.ts2
2406
+ sleep $am_try_res
2407
+ echo gamma > conftest.ts3
2408
+
2409
+ # We assume that 'ls -t' will make use of high-resolution
2410
+ # timestamps if the operating system supports them at all.
2411
+ if (set X `ls -t conftest.ts?` &&
2412
+ test "$[]2" = conftest.ts3 &&
2413
+ test "$[]3" = conftest.ts2 &&
2414
+ test "$[]4" = conftest.ts1); then
2415
+ #
2416
+ # Ok, ls -t worked. If we're at a resolution of 1 second, we're done,
2417
+ # because we don't need to test make.
2418
+ make_ok=true
2419
+ if test $am_try_res != 1; then
2420
+ # But if we've succeeded so far with a subsecond resolution, we
2421
+ # have one more thing to check: make. It can happen that
2422
+ # everything else supports the subsecond mtimes, but make doesn't;
2423
+ # notably on macOS, which ships make 3.81 from 2006 (the last one
2424
+ # released under GPLv2). https://bugs.gnu.org/68808
2425
+ #
2426
+ # We test $MAKE if it is defined in the environment, else "make".
2427
+ # It might get overridden later, but our hope is that in practice
2428
+ # it does not matter: it is the system "make" which is (by far)
2429
+ # the most likely to be broken, whereas if the user overrides it,
2430
+ # probably they did so with a better, or at least not worse, make.
2431
+ # https://lists.gnu.org/archive/html/automake/2024-06/msg00051.html
2432
+ #
2433
+ # Create a Makefile (real tab character here):
2434
+ rm -f conftest.mk
2435
+ echo 'conftest.ts1: conftest.ts2' >conftest.mk
2436
+ echo ' touch conftest.ts2' >>conftest.mk
2437
+ #
2438
+ # Now, running
2439
+ # touch conftest.ts1; touch conftest.ts2; make
2440
+ # should touch ts1 because ts2 is newer. This could happen by luck,
2441
+ # but most often, it will fail if make's support is insufficient. So
2442
+ # test for several consecutive successes.
2443
+ #
2444
+ # (We reuse conftest.ts[12] because we still want to modify existing
2445
+ # files, not create new ones, per above.)
2446
+ n=0
2447
+ make=${MAKE-make}
2448
+ until test $n -eq 3; do
2449
+ echo one > conftest.ts1
2450
+ sleep $am_try_res
2451
+ echo two > conftest.ts2 # ts2 should now be newer than ts1
2452
+ if $make -f conftest.mk | grep 'up to date' >/dev/null; then
2453
+ make_ok=false
2454
+ break # out of $n loop
2455
+ fi
2456
+ n=`expr $n + 1`
2457
+ done
2458
+ fi
2459
+ #
2460
+ if $make_ok; then
2461
+ # Everything we know to check worked out, so call this resolution good.
2462
+ am_cv_filesystem_timestamp_resolution=$am_try_res
2463
+ break # out of $am_try_res loop
2464
+ fi
2465
+ # Otherwise, we'll go on to check the next resolution.
2466
+ fi
2467
+ done
2468
+ rm -f conftest.ts?
2469
+ # (end _am_filesystem_timestamp_resolution)
2470
+ ])])
2471
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/sanity.m4:161: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_REQUIRE([_AM_FILESYSTEM_TIMESTAMP_RESOLUTION])
2472
+ # This check should not be cached, as it may vary across builds of
2473
+ # different projects.
2474
+ AC_MSG_CHECKING([whether build environment is sane])
2475
+ # Reject unsafe characters in $srcdir or the absolute working directory
2476
+ # name. Accept space and tab only in the latter.
2477
+ am_lf='
2478
+ '
2479
+ case `pwd` in
2480
+ *[[\\\"\#\$\&\'\`$am_lf]]*)
2481
+ AC_MSG_RESULT([no])
2482
+ AC_MSG_ERROR([unsafe absolute working directory name]);;
2483
+ esac
2484
+ case $srcdir in
2485
+ *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
2486
+ AC_MSG_RESULT([no])
2487
+ AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
2488
+ esac
2489
+
2490
+ # Do 'set' in a subshell so we don't clobber the current shell's
2491
+ # arguments. Must try -L first in case configure is actually a
2492
+ # symlink; some systems play weird games with the mod time of symlinks
2493
+ # (eg FreeBSD returns the mod time of the symlink's containing
2494
+ # directory).
2495
+ am_build_env_is_sane=no
2496
+ am_has_slept=no
2497
+ rm -f conftest.file
2498
+ for am_try in 1 2; do
2499
+ echo "timestamp, slept: $am_has_slept" > conftest.file
2500
+ if (
2501
+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
2502
+ if test "$[]*" = "X"; then
2503
+ # -L didn't work.
2504
+ set X `ls -t "$srcdir/configure" conftest.file`
2505
+ fi
2506
+ test "$[]2" = conftest.file
2507
+ ); then
2508
+ am_build_env_is_sane=yes
2509
+ break
2510
+ fi
2511
+ # Just in case.
2512
+ sleep "$am_cv_filesystem_timestamp_resolution"
2513
+ am_has_slept=yes
2514
+ done
2515
+
2516
+ AC_MSG_RESULT([$am_build_env_is_sane])
2517
+ if test "$am_build_env_is_sane" = no; then
2518
+ AC_MSG_ERROR([newly created file is older than distributed files!
2519
+ Check your system clock])
2520
+ fi
2521
+
2522
+ # If we didn't sleep, we still need to ensure time stamps of config.status and
2523
+ # generated files are strictly newer.
2524
+ am_sleep_pid=
2525
+ AS_IF([test -e conftest.file || grep 'slept: no' conftest.file >/dev/null 2>&1],, [dnl
2526
+ ( sleep "$am_cv_filesystem_timestamp_resolution" ) &
2527
+ am_sleep_pid=$!
2528
+ ])
2529
+ AC_CONFIG_COMMANDS_PRE(
2530
+ [AC_MSG_CHECKING([that generated files are newer than configure])
2531
+ if test -n "$am_sleep_pid"; then
2532
+ # Hide warnings about reused PIDs.
2533
+ wait $am_sleep_pid 2>/dev/null
2534
+ fi
2535
+ AC_MSG_RESULT([done])])
2536
+ rm -f conftest.file
2537
+ ])
2538
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/silent.m4:11: -1- AC_DEFUN([_AM_SILENT_RULES], [AM_DEFAULT_VERBOSITY=1
2539
+ AC_ARG_ENABLE([silent-rules], [dnl
2540
+ AS_HELP_STRING(
2541
+ [--enable-silent-rules],
2542
+ [less verbose build output (undo: "make V=1")])
2543
+ AS_HELP_STRING(
2544
+ [--disable-silent-rules],
2545
+ [verbose build output (undo: "make V=0")])dnl
2546
+ ])
2547
+ dnl
2548
+ dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
2549
+ dnl do not support nested variable expansions.
2550
+ dnl See automake bug#9928 and bug#10237.
2551
+ am_make=${MAKE-make}
2552
+ AC_CACHE_CHECK([whether $am_make supports nested variables],
2553
+ [am_cv_make_support_nested_variables],
2554
+ [if AS_ECHO([['TRUE=$(BAR$(V))
2555
+ BAR0=false
2556
+ BAR1=true
2557
+ V=1
2558
+ am__doit:
2559
+ @$(TRUE)
2560
+ .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
2561
+ am_cv_make_support_nested_variables=yes
2562
+ else
2563
+ am_cv_make_support_nested_variables=no
2564
+ fi])
2565
+ AC_SUBST([AM_V])dnl
2566
+ AM_SUBST_NOTMAKE([AM_V])dnl
2567
+ AC_SUBST([AM_DEFAULT_V])dnl
2568
+ AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
2569
+ AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
2570
+ AM_BACKSLASH='\'
2571
+ AC_SUBST([AM_BACKSLASH])dnl
2572
+ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
2573
+ dnl Delay evaluation of AM_DEFAULT_VERBOSITY to the end to allow multiple calls
2574
+ dnl to AM_SILENT_RULES to change the default value.
2575
+ AC_CONFIG_COMMANDS_PRE([dnl
2576
+ case $enable_silent_rules in @%:@ (((
2577
+ yes) AM_DEFAULT_VERBOSITY=0;;
2578
+ no) AM_DEFAULT_VERBOSITY=1;;
2579
+ esac
2580
+ if test $am_cv_make_support_nested_variables = yes; then
2581
+ dnl Using '$V' instead of '$(V)' breaks IRIX make.
2582
+ AM_V='$(V)'
2583
+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
2584
+ else
2585
+ AM_V=$AM_DEFAULT_VERBOSITY
2586
+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
2587
+ fi
2588
+ ])dnl
2589
+ ])
2590
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/silent.m4:69: -1- AC_DEFUN([AM_SILENT_RULES], [AC_REQUIRE([_AM_SILENT_RULES])
2591
+ AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1])m4_newline
2592
+ dnl We intentionally force a newline after the assignment, since a) nothing
2593
+ dnl good can come of more text following, and b) that was the behavior
2594
+ dnl before 1.17. See https://bugs.gnu.org/72267.
2595
+ ])
2596
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2597
+ # Installed binaries are usually stripped using 'strip' when the user
2598
+ # run "make install-strip". However 'strip' might not be the right
2599
+ # tool to use in cross-compilation environments, therefore Automake
2600
+ # will honor the 'STRIP' environment variable to overrule this program.
2601
+ dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
2602
+ if test "$cross_compiling" != no; then
2603
+ AC_CHECK_TOOL([STRIP], [strip], :)
2604
+ fi
2605
+ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2606
+ AC_SUBST([INSTALL_STRIP_PROGRAM])])
2607
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
2608
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
2609
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/tar.m4:23: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
2610
+ # in the wild :-( We should find a proper way to deprecate it ...
2611
+ AC_SUBST([AMTAR], ['$${TAR-tar}'])
2612
+
2613
+ # We'll loop over all known methods to create a tar archive until one works.
2614
+ _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
2615
+
2616
+ m4_if([$1], [v7],
2617
+ [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
2618
+
2619
+ [m4_case([$1],
2620
+ [ustar],
2621
+ [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
2622
+ # There is notably a 21 bits limit for the UID and the GID. In fact,
2623
+ # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
2624
+ # and bug#13588).
2625
+ am_max_uid=2097151 # 2^21 - 1
2626
+ am_max_gid=$am_max_uid
2627
+ # The $UID and $GID variables are not portable, so we need to resort
2628
+ # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
2629
+ # below are definitely unexpected, so allow the users to see them
2630
+ # (that is, avoid stderr redirection).
2631
+ am_uid=`id -u || echo unknown`
2632
+ am_gid=`id -g || echo unknown`
2633
+ AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
2634
+ if test x$am_uid = xunknown; then
2635
+ AC_MSG_WARN([ancient id detected; assuming current UID is ok, but dist-ustar might not work])
2636
+ elif test $am_uid -le $am_max_uid; then
2637
+ AC_MSG_RESULT([yes])
2638
+ else
2639
+ AC_MSG_RESULT([no])
2640
+ _am_tools=none
2641
+ fi
2642
+ AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
2643
+ if test x$gm_gid = xunknown; then
2644
+ AC_MSG_WARN([ancient id detected; assuming current GID is ok, but dist-ustar might not work])
2645
+ elif test $am_gid -le $am_max_gid; then
2646
+ AC_MSG_RESULT([yes])
2647
+ else
2648
+ AC_MSG_RESULT([no])
2649
+ _am_tools=none
2650
+ fi],
2651
+
2652
+ [pax],
2653
+ [],
2654
+
2655
+ [m4_fatal([Unknown tar format])])
2656
+
2657
+ AC_MSG_CHECKING([how to create a $1 tar archive])
2658
+
2659
+ # Go ahead even if we have the value already cached. We do so because we
2660
+ # need to set the values for the 'am__tar' and 'am__untar' variables.
2661
+ _am_tools=${am_cv_prog_tar_$1-$_am_tools}
2662
+
2663
+ for _am_tool in $_am_tools; do
2664
+ case $_am_tool in
2665
+ gnutar)
2666
+ for _am_tar in tar gnutar gtar; do
2667
+ AM_RUN_LOG([$_am_tar --version]) && break
2668
+ done
2669
+ am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
2670
+ am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
2671
+ am__untar="$_am_tar -xf -"
2672
+ ;;
2673
+ plaintar)
2674
+ # Must skip GNU tar: if it does not support --format= it doesn't create
2675
+ # ustar tarball either.
2676
+ (tar --version) >/dev/null 2>&1 && continue
2677
+ am__tar='tar chf - "$$tardir"'
2678
+ am__tar_='tar chf - "$tardir"'
2679
+ am__untar='tar xf -'
2680
+ ;;
2681
+ pax)
2682
+ am__tar='pax -L -x $1 -w "$$tardir"'
2683
+ am__tar_='pax -L -x $1 -w "$tardir"'
2684
+ am__untar='pax -r'
2685
+ ;;
2686
+ cpio)
2687
+ am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
2688
+ am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
2689
+ am__untar='cpio -i -H $1 -d'
2690
+ ;;
2691
+ none)
2692
+ am__tar=false
2693
+ am__tar_=false
2694
+ am__untar=false
2695
+ ;;
2696
+ esac
2697
+
2698
+ # If the value was cached, stop now. We just wanted to have am__tar
2699
+ # and am__untar set.
2700
+ test -n "${am_cv_prog_tar_$1}" && break
2701
+
2702
+ # tar/untar a dummy directory, and stop if the command works.
2703
+ rm -rf conftest.dir
2704
+ mkdir conftest.dir
2705
+ echo GrepMe > conftest.dir/file
2706
+ AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
2707
+ rm -rf conftest.dir
2708
+ if test -s conftest.tar; then
2709
+ AM_RUN_LOG([$am__untar <conftest.tar])
2710
+ AM_RUN_LOG([cat conftest.dir/file])
2711
+ grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
2712
+ fi
2713
+ done
2714
+ rm -rf conftest.dir
2715
+
2716
+ AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
2717
+ AC_MSG_RESULT([$am_cv_prog_tar_$1])])
2718
+
2719
+ AC_SUBST([am__tar])
2720
+ AC_SUBST([am__untar])
2721
+ ])
2722
+ m4trace:/opt/homebrew/Cellar/automake/1.18/share/aclocal-1.18/xargsn.m4:12: -1- AC_DEFUN([_AM_PROG_XARGS_N], [AC_CACHE_CHECK([xargs -n works], am_cv_xargs_n_works, [dnl
2723
+ AS_IF([test "`echo 1 2 3 | xargs -n2 echo`" = "1 2
2724
+ 3"], [am_cv_xargs_n_works=yes], [am_cv_xargs_n_works=no])])
2725
+ AS_IF([test "$am_cv_xargs_n_works" = yes], [am__xargs_n='xargs -n'], [dnl
2726
+ am__xargs_n='am__xargs_n () { shift; sed "s/ /\\n/g" | while read am__xargs_n_arg; do "$@" "$am__xargs_n_arg"; done; }'
2727
+ ])dnl
2728
+ AC_SUBST(am__xargs_n)
2729
+ ])
2730
+ m4trace:build-aux/m4/ax_append_compile_flags.m4:40: -1- AC_DEFUN([AX_APPEND_COMPILE_FLAGS], [AX_REQUIRE_DEFINED([AX_CHECK_COMPILE_FLAG])
2731
+ AX_REQUIRE_DEFINED([AX_APPEND_FLAG])
2732
+ for flag in $1; do
2733
+ AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [$2])], [], [$3], [$4])
2734
+ done
2735
+ ])
2736
+ m4trace:build-aux/m4/ax_append_flag.m4:33: -1- AC_DEFUN([AX_APPEND_FLAG], [dnl
2737
+ AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_SET_IF
2738
+ AS_VAR_PUSHDEF([FLAGS], [m4_default($2,_AC_LANG_PREFIX[FLAGS])])
2739
+ AS_VAR_SET_IF(FLAGS,[
2740
+ AS_CASE([" AS_VAR_GET(FLAGS) "],
2741
+ [*" $1 "*], [AC_RUN_LOG([: FLAGS already contains $1])],
2742
+ [
2743
+ AS_VAR_APPEND(FLAGS,[" $1"])
2744
+ AC_RUN_LOG([: FLAGS="$FLAGS"])
2745
+ ])
2746
+ ],
2747
+ [
2748
+ AS_VAR_SET(FLAGS,[$1])
2749
+ AC_RUN_LOG([: FLAGS="$FLAGS"])
2750
+ ])
2751
+ AS_VAR_POPDEF([FLAGS])dnl
2752
+ ])
2753
+ m4trace:build-aux/m4/ax_check_compile_flag.m4:39: -1- AC_DEFUN([AX_CHECK_COMPILE_FLAG], [AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF
2754
+ AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl
2755
+ AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [
2756
+ ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
2757
+ _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
2758
+ AC_COMPILE_IFELSE([m4_default([$5],[AC_LANG_PROGRAM()])],
2759
+ [AS_VAR_SET(CACHEVAR,[yes])],
2760
+ [AS_VAR_SET(CACHEVAR,[no])])
2761
+ _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
2762
+ AS_VAR_IF(CACHEVAR,yes,
2763
+ [m4_default([$2], :)],
2764
+ [m4_default([$3], :)])
2765
+ AS_VAR_POPDEF([CACHEVAR])dnl
2766
+ ])
2767
+ m4trace:build-aux/m4/ax_check_vscript.m4:63: -1- AC_DEFUN([_AX_CHECK_VSCRIPT], [
2768
+ AC_LANG_PUSH([C])
2769
+ ax_check_vscript_save_flags="$LDFLAGS"
2770
+ echo "V1 { global: $2; local: *; };" > conftest.map
2771
+ AS_IF([test x$4 = xyes], [
2772
+ echo "{" >> conftest.map
2773
+ ])
2774
+ LDFLAGS="$LDFLAGS -Wl,$1,conftest.map"
2775
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([[int show, hide;]], [])], [$3])
2776
+ LDFLAGS="$ax_check_vscript_save_flags"
2777
+ rm -f conftest.map
2778
+ AC_LANG_POP([C])
2779
+ ])
2780
+ m4trace:build-aux/m4/ax_check_vscript.m4:77: -1- AC_DEFUN([AX_CHECK_VSCRIPT], [
2781
+
2782
+ AC_ARG_ENABLE([symvers],
2783
+ AS_HELP_STRING([--disable-symvers],
2784
+ [disable library symbol versioning [default=auto]]),
2785
+ [want_symvers=$enableval],
2786
+ [want_symvers=yes]
2787
+ )
2788
+
2789
+ AS_IF([test x$want_symvers = xyes], [
2790
+
2791
+ dnl First test --version-script and -M with a simple wildcard.
2792
+
2793
+ AC_CACHE_CHECK([linker version script flag], ax_cv_check_vscript_flag, [
2794
+ ax_cv_check_vscript_flag=unsupported
2795
+ _AX_CHECK_VSCRIPT([--version-script], [show], [
2796
+ ax_cv_check_vscript_flag=--version-script
2797
+ ])
2798
+ AS_IF([test x$ax_cv_check_vscript_flag = xunsupported], [
2799
+ _AX_CHECK_VSCRIPT([-M], [show], [ax_cv_check_vscript_flag=-M])
2800
+ ])
2801
+
2802
+ dnl The linker may interpret -M (no argument) as "produce a load map."
2803
+ dnl If "-M conftest.map" doesn't fail when conftest.map contains
2804
+ dnl obvious syntax errors, assume this is the case.
2805
+
2806
+ AS_IF([test x$ax_cv_check_vscript_flag != xunsupported], [
2807
+ _AX_CHECK_VSCRIPT([$ax_cv_check_vscript_flag], [show],
2808
+ [ax_cv_check_vscript_flag=unsupported], [yes])
2809
+ ])
2810
+ ])
2811
+
2812
+ dnl If the simple wildcard worked, retest with a complex wildcard.
2813
+
2814
+ AS_IF([test x$ax_cv_check_vscript_flag != xunsupported], [
2815
+ ax_check_vscript_flag=$ax_cv_check_vscript_flag
2816
+ AC_CACHE_CHECK([if version scripts can use complex wildcards],
2817
+ ax_cv_check_vscript_complex_wildcards, [
2818
+ ax_cv_check_vscript_complex_wildcards=no
2819
+ _AX_CHECK_VSCRIPT([$ax_cv_check_vscript_flag], [sh*], [
2820
+ ax_cv_check_vscript_complex_wildcards=yes])
2821
+ ])
2822
+ ax_check_vscript_complex_wildcards="$ax_cv_check_vscript_complex_wildcards"
2823
+ ], [
2824
+ ax_check_vscript_flag=
2825
+ ax_check_vscript_complex_wildcards=no
2826
+ ])
2827
+ ], [
2828
+ AC_MSG_CHECKING([linker version script flag])
2829
+ AC_MSG_RESULT([disabled])
2830
+
2831
+ ax_check_vscript_flag=
2832
+ ax_check_vscript_complex_wildcards=no
2833
+ ])
2834
+
2835
+ AS_IF([test x$ax_check_vscript_flag != x], [
2836
+ VSCRIPT_LDFLAGS="-Wl,$ax_check_vscript_flag"
2837
+ AC_SUBST([VSCRIPT_LDFLAGS])
2838
+ ])
2839
+
2840
+ AM_CONDITIONAL([HAVE_VSCRIPT],
2841
+ [test x$ax_check_vscript_flag != x])
2842
+ AM_CONDITIONAL([HAVE_VSCRIPT_COMPLEX],
2843
+ [test x$ax_check_vscript_complex_wildcards = xyes])
2844
+
2845
+ ])
2846
+ m4trace:build-aux/m4/ax_gcc_func_attribute.m4:84: -1- AC_DEFUN([AX_GCC_FUNC_ATTRIBUTE], [
2847
+ AS_VAR_PUSHDEF([ac_var], [ax_cv_have_func_attribute_$1])
2848
+
2849
+ AC_CACHE_CHECK([for __attribute__(($1))], [ac_var], [
2850
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([
2851
+ m4_case([$1],
2852
+ [alias], [
2853
+ int foo( void ) { return 0; }
2854
+ int bar( void ) __attribute__(($1("foo")));
2855
+ ],
2856
+ [aligned], [
2857
+ int foo( void ) __attribute__(($1(32)));
2858
+ ],
2859
+ [alloc_size], [
2860
+ void *foo(int a) __attribute__(($1(1)));
2861
+ ],
2862
+ [always_inline], [
2863
+ inline __attribute__(($1)) int foo( void ) { return 0; }
2864
+ ],
2865
+ [artificial], [
2866
+ inline __attribute__(($1)) int foo( void ) { return 0; }
2867
+ ],
2868
+ [cold], [
2869
+ int foo( void ) __attribute__(($1));
2870
+ ],
2871
+ [const], [
2872
+ int foo( void ) __attribute__(($1));
2873
+ ],
2874
+ [constructor_priority], [
2875
+ int foo( void ) __attribute__((__constructor__(65535/2)));
2876
+ ],
2877
+ [constructor], [
2878
+ int foo( void ) __attribute__(($1));
2879
+ ],
2880
+ [deprecated], [
2881
+ int foo( void ) __attribute__(($1("")));
2882
+ ],
2883
+ [destructor], [
2884
+ int foo( void ) __attribute__(($1));
2885
+ ],
2886
+ [dllexport], [
2887
+ __attribute__(($1)) int foo( void ) { return 0; }
2888
+ ],
2889
+ [dllimport], [
2890
+ int foo( void ) __attribute__(($1));
2891
+ ],
2892
+ [error], [
2893
+ int foo( void ) __attribute__(($1("")));
2894
+ ],
2895
+ [externally_visible], [
2896
+ int foo( void ) __attribute__(($1));
2897
+ ],
2898
+ [fallthrough], [
2899
+ void foo( int x ) {switch (x) { case 1: __attribute__(($1)); case 2: break ; }};
2900
+ ],
2901
+ [flatten], [
2902
+ int foo( void ) __attribute__(($1));
2903
+ ],
2904
+ [format], [
2905
+ int foo(const char *p, ...) __attribute__(($1(printf, 1, 2)));
2906
+ ],
2907
+ [gnu_format], [
2908
+ int foo(const char *p, ...) __attribute__((format(gnu_printf, 1, 2)));
2909
+ ],
2910
+ [format_arg], [
2911
+ char *foo(const char *p) __attribute__(($1(1)));
2912
+ ],
2913
+ [gnu_inline], [
2914
+ inline __attribute__(($1)) int foo( void ) { return 0; }
2915
+ ],
2916
+ [hot], [
2917
+ int foo( void ) __attribute__(($1));
2918
+ ],
2919
+ [ifunc], [
2920
+ int my_foo( void ) { return 0; }
2921
+ static int (*resolve_foo(void))(void) { return my_foo; }
2922
+ int foo( void ) __attribute__(($1("resolve_foo")));
2923
+ ],
2924
+ [leaf], [
2925
+ __attribute__(($1)) int foo( void ) { return 0; }
2926
+ ],
2927
+ [malloc], [
2928
+ void *foo( void ) __attribute__(($1));
2929
+ ],
2930
+ [noclone], [
2931
+ int foo( void ) __attribute__(($1));
2932
+ ],
2933
+ [noinline], [
2934
+ __attribute__(($1)) int foo( void ) { return 0; }
2935
+ ],
2936
+ [nonnull], [
2937
+ int foo(char *p) __attribute__(($1(1)));
2938
+ ],
2939
+ [noreturn], [
2940
+ void foo( void ) __attribute__(($1));
2941
+ ],
2942
+ [nothrow], [
2943
+ int foo( void ) __attribute__(($1));
2944
+ ],
2945
+ [optimize], [
2946
+ __attribute__(($1(3))) int foo( void ) { return 0; }
2947
+ ],
2948
+ [pure], [
2949
+ int foo( void ) __attribute__(($1));
2950
+ ],
2951
+ [sentinel], [
2952
+ int foo(void *p, ...) __attribute__(($1));
2953
+ ],
2954
+ [sentinel_position], [
2955
+ int foo(void *p, ...) __attribute__(($1(1)));
2956
+ ],
2957
+ [returns_nonnull], [
2958
+ void *foo( void ) __attribute__(($1));
2959
+ ],
2960
+ [unused], [
2961
+ int foo( void ) __attribute__(($1));
2962
+ ],
2963
+ [used], [
2964
+ int foo( void ) __attribute__(($1));
2965
+ ],
2966
+ [visibility], [
2967
+ int foo_def( void ) __attribute__(($1("default")));
2968
+ int foo_hid( void ) __attribute__(($1("hidden")));
2969
+ int foo_int( void ) __attribute__(($1("internal")));
2970
+ int foo_pro( void ) __attribute__(($1("protected")));
2971
+ ],
2972
+ [warning], [
2973
+ int foo( void ) __attribute__(($1("")));
2974
+ ],
2975
+ [warn_unused_result], [
2976
+ int foo( void ) __attribute__(($1));
2977
+ ],
2978
+ [weak], [
2979
+ int foo( void ) __attribute__(($1));
2980
+ ],
2981
+ [weakref], [
2982
+ static int foo( void ) { return 0; }
2983
+ static int bar( void ) __attribute__(($1("foo")));
2984
+ ],
2985
+ [symver], [
2986
+ __attribute__(($1("foo@2.0"))) void bar( void ) {}
2987
+ ],
2988
+ [
2989
+ m4_warn([syntax], [Unsupported attribute $1, the test may fail])
2990
+ int foo( void ) __attribute__(($1));
2991
+ ]
2992
+ )], [])
2993
+ ],
2994
+ dnl GCC doesn't exit with an error if an unknown attribute is
2995
+ dnl provided but only outputs a warning, so accept the attribute
2996
+ dnl only if no warning were issued.
2997
+ [AS_IF([grep -q -e -Wattributes -e -Wunknown-attributes -e error -e warning conftest.err],
2998
+ [AS_VAR_SET([ac_var], [no])],
2999
+ [AS_VAR_SET([ac_var], [yes])])],
3000
+ [AS_VAR_SET([ac_var], [no])])
3001
+ ])
3002
+
3003
+ AS_IF([test yes = AS_VAR_GET([ac_var])],
3004
+ [AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_FUNC_ATTRIBUTE_$1), 1,
3005
+ [Define to 1 if the system has the `$1' function attribute])], [])
3006
+
3007
+ AS_VAR_POPDEF([ac_var])
3008
+ ])
3009
+ m4trace:build-aux/m4/ax_require_defined.m4:35: -1- AC_DEFUN([AX_REQUIRE_DEFINED], [dnl
3010
+ m4_ifndef([$1], [m4_fatal([macro ]$1[ is not defined; is a m4 file missing?])])
3011
+ ])
3012
+ m4trace:build-aux/m4/ax_valgrind_check.m4:76: -1- AC_DEFUN([AX_VALGRIND_DFLT], [
3013
+ m4_define([en_dflt_valgrind_$1], [$2])
3014
+ ])
3015
+ m4trace:build-aux/m4/ax_valgrind_check.m4:80: -1- AC_DEFUN([AX_VALGRIND_CHECK], [
3016
+ AM_EXTRA_RECURSIVE_TARGETS([check-valgrind])
3017
+ m4_foreach([vgtool], [valgrind_tool_list],
3018
+ [AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-]vgtool)])
3019
+
3020
+ dnl Check for --enable-valgrind
3021
+ AC_ARG_ENABLE([valgrind],
3022
+ [AS_HELP_STRING([--enable-valgrind], [Whether to enable Valgrind on the unit tests])],
3023
+ [enable_valgrind=$enableval],[enable_valgrind=])
3024
+
3025
+ AS_IF([test "$enable_valgrind" != "no"],[
3026
+ # Check for Valgrind.
3027
+ AC_PATH_PROG([VALGRIND],[valgrind])
3028
+ AS_IF([test "$VALGRIND" = ""],[
3029
+ AS_IF([test "$enable_valgrind" = "yes"],[
3030
+ AC_MSG_ERROR([Could not find valgrind; either install it or reconfigure with --disable-valgrind])
3031
+ ],[
3032
+ enable_valgrind=no
3033
+ ])
3034
+ ],[
3035
+ enable_valgrind=yes
3036
+ ])
3037
+ ])
3038
+
3039
+ AM_CONDITIONAL([VALGRIND_ENABLED],[test "$enable_valgrind" = "yes"])
3040
+ AC_SUBST([VALGRIND_ENABLED],[$enable_valgrind])
3041
+
3042
+ # Check for Valgrind tools we care about.
3043
+ [valgrind_enabled_tools=]
3044
+ m4_foreach([vgtool],[valgrind_tool_list],[
3045
+ AC_ARG_ENABLE([valgrind-]vgtool,
3046
+ m4_if(m4_defn([en_dflt_valgrind_]vgtool),[off],dnl
3047
+ [AS_HELP_STRING([--enable-valgrind-]vgtool, [Whether to use ]vgtool[ during the Valgrind tests])],dnl
3048
+ [AS_HELP_STRING([--disable-valgrind-]vgtool, [Whether to skip ]vgtool[ during the Valgrind tests])]),
3049
+ [enable_valgrind_]vgtool[=$enableval],
3050
+ [enable_valgrind_]vgtool[=])
3051
+ AS_IF([test "$enable_valgrind" = "no"],[
3052
+ enable_valgrind_]vgtool[=no],
3053
+ [test "$enable_valgrind_]vgtool[" ]dnl
3054
+ m4_if(m4_defn([en_dflt_valgrind_]vgtool), [off], [= "yes"], [!= "no"]),[
3055
+ AC_CACHE_CHECK([for Valgrind tool ]vgtool,
3056
+ [ax_cv_valgrind_tool_]vgtool,[
3057
+ ax_cv_valgrind_tool_]vgtool[=no
3058
+ m4_set_contains([valgrind_exp_tool_set],vgtool,
3059
+ [m4_define([vgtoolx],[exp-]vgtool)],
3060
+ [m4_define([vgtoolx],vgtool)])
3061
+ AS_IF([`$VALGRIND --tool=]vgtoolx[ --help >/dev/null 2>&1`],[
3062
+ ax_cv_valgrind_tool_]vgtool[=yes
3063
+ ])
3064
+ ])
3065
+ AS_IF([test "$ax_cv_valgrind_tool_]vgtool[" = "no"],[
3066
+ AS_IF([test "$enable_valgrind_]vgtool[" = "yes"],[
3067
+ AC_MSG_ERROR([Valgrind does not support ]vgtool[; reconfigure with --disable-valgrind-]vgtool)
3068
+ ],[
3069
+ enable_valgrind_]vgtool[=no
3070
+ ])
3071
+ ],[
3072
+ enable_valgrind_]vgtool[=yes
3073
+ ])
3074
+ ])
3075
+ AS_IF([test "$enable_valgrind_]vgtool[" = "yes"],[
3076
+ valgrind_enabled_tools="$valgrind_enabled_tools ]m4_bpatsubst(vgtool,[^exp-])["
3077
+ ])
3078
+ AC_SUBST([ENABLE_VALGRIND_]vgtool,[$enable_valgrind_]vgtool)
3079
+ ])
3080
+ AC_SUBST([valgrind_tools],["]m4_join([ ], valgrind_tool_list)["])
3081
+ AC_SUBST([valgrind_enabled_tools],[$valgrind_enabled_tools])
3082
+
3083
+ [VALGRIND_CHECK_RULES='
3084
+ # Valgrind check
3085
+ #
3086
+ # Optional:
3087
+ # - VALGRIND_SUPPRESSIONS_FILES: Space-separated list of Valgrind suppressions
3088
+ # files to load. (Default: empty)
3089
+ # - VALGRIND_FLAGS: General flags to pass to all Valgrind tools.
3090
+ # (Default: --num-callers=30)
3091
+ # - VALGRIND_$toolname_FLAGS: Flags to pass to Valgrind $toolname (one of:
3092
+ # memcheck, helgrind, drd, sgcheck). (Default: various)
3093
+
3094
+ # Optional variables
3095
+ VALGRIND_SUPPRESSIONS ?= $(addprefix --suppressions=,$(VALGRIND_SUPPRESSIONS_FILES))
3096
+ VALGRIND_FLAGS ?= --num-callers=30
3097
+ VALGRIND_memcheck_FLAGS ?= --leak-check=full --show-reachable=no
3098
+ VALGRIND_helgrind_FLAGS ?= --history-level=approx
3099
+ VALGRIND_drd_FLAGS ?=
3100
+ VALGRIND_sgcheck_FLAGS ?=
3101
+
3102
+ # Internal use
3103
+ valgrind_log_files = $(addprefix test-suite-,$(addsuffix .log,$(valgrind_tools)))
3104
+
3105
+ valgrind_memcheck_flags = --tool=memcheck $(VALGRIND_memcheck_FLAGS)
3106
+ valgrind_helgrind_flags = --tool=helgrind $(VALGRIND_helgrind_FLAGS)
3107
+ valgrind_drd_flags = --tool=drd $(VALGRIND_drd_FLAGS)
3108
+ valgrind_sgcheck_flags = --tool=exp-sgcheck $(VALGRIND_sgcheck_FLAGS)
3109
+
3110
+ valgrind_quiet = $(valgrind_quiet_$(V))
3111
+ valgrind_quiet_ = $(valgrind_quiet_$(AM_DEFAULT_VERBOSITY))
3112
+ valgrind_quiet_0 = --quiet
3113
+ valgrind_v_use = $(valgrind_v_use_$(V))
3114
+ valgrind_v_use_ = $(valgrind_v_use_$(AM_DEFAULT_VERBOSITY))
3115
+ valgrind_v_use_0 = @echo " USE " $(patsubst check-valgrind-%-local,%,$''@):;
3116
+
3117
+ # Support running with and without libtool.
3118
+ ifneq ($(LIBTOOL),)
3119
+ valgrind_lt = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=execute
3120
+ else
3121
+ valgrind_lt =
3122
+ endif
3123
+
3124
+ # Use recursive makes in order to ignore errors during check
3125
+ check-valgrind-local:
3126
+ ifeq ($(VALGRIND_ENABLED),yes)
3127
+ $(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) -k \
3128
+ $(foreach tool, $(valgrind_enabled_tools), check-valgrind-$(tool))
3129
+ else
3130
+ @echo "Need to reconfigure with --enable-valgrind"
3131
+ endif
3132
+
3133
+ # Valgrind running
3134
+ VALGRIND_TESTS_ENVIRONMENT = \
3135
+ $(TESTS_ENVIRONMENT) \
3136
+ env VALGRIND=$(VALGRIND) \
3137
+ G_SLICE=always-malloc,debug-blocks \
3138
+ G_DEBUG=fatal-warnings,fatal-criticals,gc-friendly
3139
+
3140
+ VALGRIND_LOG_COMPILER = \
3141
+ $(valgrind_lt) \
3142
+ $(VALGRIND) $(VALGRIND_SUPPRESSIONS) --error-exitcode=1 $(VALGRIND_FLAGS)
3143
+
3144
+ define valgrind_tool_rule
3145
+ check-valgrind-$(1)-local:
3146
+ ifeq ($$(VALGRIND_ENABLED)-$$(ENABLE_VALGRIND_$(1)),yes-yes)
3147
+ ifneq ($$(TESTS),)
3148
+ $$(valgrind_v_use)$$(MAKE) check-TESTS \
3149
+ TESTS_ENVIRONMENT="$$(VALGRIND_TESTS_ENVIRONMENT)" \
3150
+ LOG_COMPILER="$$(VALGRIND_LOG_COMPILER)" \
3151
+ LOG_FLAGS="$$(valgrind_$(1)_flags)" \
3152
+ TEST_SUITE_LOG=test-suite-$(1).log
3153
+ endif
3154
+ else ifeq ($$(VALGRIND_ENABLED),yes)
3155
+ @echo "Need to reconfigure with --enable-valgrind-$(1)"
3156
+ else
3157
+ @echo "Need to reconfigure with --enable-valgrind"
3158
+ endif
3159
+ endef
3160
+
3161
+ $(foreach tool,$(valgrind_tools),$(eval $(call valgrind_tool_rule,$(tool))))
3162
+
3163
+ A''M_DISTCHECK_CONFIGURE_FLAGS ?=
3164
+ A''M_DISTCHECK_CONFIGURE_FLAGS += --disable-valgrind
3165
+
3166
+ MOSTLYCLEANFILES ?=
3167
+ MOSTLYCLEANFILES += $(valgrind_log_files)
3168
+
3169
+ .PHONY: check-valgrind $(addprefix check-valgrind-,$(valgrind_tools))
3170
+ ']
3171
+
3172
+ AC_SUBST([VALGRIND_CHECK_RULES])
3173
+ m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([VALGRIND_CHECK_RULES])])
3174
+ ])
3175
+ m4trace:build-aux/m4/pkg_compat.m4:43: -1- AC_DEFUN([PKG_PROG_PKG_CONFIG_COMPAT], [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
3176
+ m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
3177
+ m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
3178
+ AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
3179
+ AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
3180
+ AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
3181
+
3182
+ if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
3183
+ AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
3184
+ fi
3185
+ if test -n "$PKG_CONFIG"; then
3186
+ _pkg_min_version=m4_default([$1], [0.9.0])
3187
+ AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
3188
+ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
3189
+ AC_MSG_RESULT([yes])
3190
+ else
3191
+ AC_MSG_RESULT([no])
3192
+ PKG_CONFIG=""
3193
+ fi
3194
+ fi
3195
+ if test -z "$PKG_CONFIG"; then
3196
+ m4_default([$2], [AC_MSG_ERROR([pkg-config not found])])
3197
+ fi[]
3198
+ ])
3199
+ m4trace:build-aux/m4/pkg_compat.m4:78: -1- AC_DEFUN([PKG_INSTALLDIR_COMPAT], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
3200
+ m4_pushdef([pkg_description],
3201
+ [pkg-config installation directory @<:@]pkg_default[@:>@])
3202
+ AC_ARG_WITH([pkgconfigdir],
3203
+ [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
3204
+ [with_pkgconfigdir=]pkg_default)
3205
+ AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
3206
+ m4_popdef([pkg_default])
3207
+ m4_popdef([pkg_description])
3208
+ ])
3209
+ m4trace:build-aux/m4/zw_alignment.m4:18: -1- AC_DEFUN([zw_C_ALIGNAS], [AC_REQUIRE([AC_PROG_CC])
3210
+ AC_CACHE_CHECK([how to control data alignment], [zw_cv_c_alignas],
3211
+ [AS_IF([test x$ac_prog_cc_stdc = xc11],
3212
+ [zw_cv_c_alignas=_Alignas],
3213
+ [AC_COMPILE_IFELSE(
3214
+ [AC_LANG_PROGRAM([[
3215
+ int __attribute__((__aligned__(8))) global;
3216
+ struct __attribute__((__aligned__(8))) aggregate { int x, y; };
3217
+ ]], [[
3218
+ int __attribute__((__aligned__(8))) local;
3219
+ ]])],
3220
+ [zw_cv_c_alignas=__attribute__],
3221
+ [zw_cv_c_alignas=unknown])
3222
+ ])
3223
+ ])
3224
+ AS_IF([test x$zw_cv_c_alignas = x_Alignas],
3225
+ [zw_c_alignas_expr="_Alignas(n)"],
3226
+ [test x$zw_cv_c_alignas = x__attribute__],
3227
+ [zw_c_alignas_expr="__attribute__((__aligned__(n)))"],
3228
+ [AC_MSG_FAILURE([could not find a way to control data alignment])])
3229
+ AC_DEFINE_UNQUOTED([alignas(n)], [$zw_c_alignas_expr],
3230
+ [Define as a type specifier which sets the alignment of a variable or type
3231
+ to N bytes. C11 alignas(TYPE) does not need to be supported.])
3232
+ ])
3233
+ m4trace:build-aux/m4/zw_alignment.m4:44: -1- AC_DEFUN([zw_C_ALIGNOF], [AC_REQUIRE([AC_PROG_CC])
3234
+ AC_CACHE_CHECK([how to query data alignment], [zw_cv_c_alignof],
3235
+ [AS_IF([test x$ac_prog_cc_stdc = xc11],
3236
+ [zw_cv_c_alignof=_Alignof],
3237
+ [AC_COMPILE_IFELSE(
3238
+ [AC_LANG_PROGRAM([[
3239
+ struct agg { int x, y; };
3240
+ extern const char align_int[__alignof__(int)];
3241
+ extern const char align_agg[__alignof__(struct agg)];
3242
+ ]], [[
3243
+ double d;
3244
+ char align_var[__alignof__(d)];
3245
+ ]])],
3246
+ [zw_cv_c_alignof=__alignof__],
3247
+ [zw_cv_c_alignof=unknown])
3248
+ ])
3249
+ ])
3250
+ AS_IF([test x$zw_cv_c_alignof = x_Alignof],
3251
+ [zw_c_alignof_expr="_Alignof(thing)"],
3252
+ [test x$zw_cv_c_alignof = x__alignof__],
3253
+ [zw_c_alignof_expr="__alignof__(thing)"],
3254
+ [AC_MSG_FAILURE([could not find a way to query data alignment])])
3255
+ AC_DEFINE_UNQUOTED([alignof(thing)], [$zw_c_alignof_expr],
3256
+ [Define as an expression which evaluates to the alignment of THING.
3257
+ Must be computed at compile time (an "integer constant expression").])
3258
+ ])
3259
+ m4trace:build-aux/m4/zw_alignment.m4:72: -1- AC_DEFUN([zw_C_MAX_ALIGN_T], [AC_REQUIRE([AC_PROG_CC])
3260
+ AC_REQUIRE([zw_C_ALIGNOF])
3261
+ AC_CACHE_CHECK([for max_align_t in stddef.h], [zw_cv_c_max_align_t],
3262
+ [AC_COMPILE_IFELSE(
3263
+ [AC_LANG_PROGRAM([[
3264
+ #include <stddef.h>
3265
+ ]], [[
3266
+ max_align_t var;
3267
+ return alignof(var);
3268
+ ]])],
3269
+ [zw_cv_c_max_align_t=yes],
3270
+ [zw_cv_c_max_align_t=no])
3271
+ ])
3272
+ AS_IF([test x$zw_cv_c_max_align_t = xyes],
3273
+ [AC_DEFINE([HAVE_MAX_ALIGN_T], 1,
3274
+ [Define if stddef.h provides max_align_t.])
3275
+ ])
3276
+ ])
3277
+ m4trace:build-aux/m4/zw_detect_asan.m4:18: -1- AC_DEFUN([zw_ASAN_IFELSE], [AC_REQUIRE([AC_PROG_EGREP]) AC_REQUIRE([LT_PATH_NM]) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
3278
+ [AS_IF([$NM conftest$EXEEXT | $EGREP _asan_ > /dev/null 2>&1],
3279
+ [$1], [$2])],
3280
+ [AC_MSG_ERROR([cannot link a trivial test program])])])
3281
+ m4trace:build-aux/m4/zw_endianness.m4:133: -1- AC_DEFUN([zw_C_ENDIANNESS], [
3282
+ AC_REQUIRE([AC_PROG_CC])
3283
+ AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
3284
+ AC_CHECK_HEADERS_ONCE([endian.h sys/endian.h sys/param.h])
3285
+ AC_CACHE_CHECK([for byte order macros],
3286
+ [ac_cv_c_byte_order_macros], [
3287
+ ac_cv_c_byte_order_macros=unknown
3288
+ m4_map([zw_C_ENDIANNESS_test_one], [zw_C_ENDIANNESS_options])])
3289
+
3290
+ AS_CASE([$ac_cv_c_byte_order_macros],
3291
+ m4_map_sep([zw_C_ENDIANNESS_case_one], [,], [zw_C_ENDIANNESS_options]),
3292
+ [AC_MSG_ERROR([unable to determine byte order at compile time])])
3293
+
3294
+ AC_DEFINE_UNQUOTED([ENDIANNESS_IS_BIG], [$zw_C_ENDIANNESS_IS_BIG],
3295
+ [Define as an @%:@if expression that is true when compiling for a big-endian CPU.])
3296
+ AC_DEFINE_UNQUOTED([ENDIANNESS_IS_LITTLE], [$zw_C_ENDIANNESS_IS_LIT],
3297
+ [Define as an @%:@if expression that is true when compiling for a little-endian CPU.])
3298
+ AC_DEFINE_UNQUOTED([ENDIANNESS_IS_PDP], [$zw_C_ENDIANNESS_IS_PDP],
3299
+ [Define as an @%:@if expression that is true when compiling for a PDP-endian CPU.])
3300
+ ])
3301
+ m4trace:build-aux/m4/zw_ld_wrap.m4:9: -1- AC_DEFUN([zw_PROG_LD_WRAP], [AC_REQUIRE([AC_PROG_CC])
3302
+ AC_CACHE_CHECK([for ld --wrap], [zw_cv_prog_ld_wrap],
3303
+ [save_LDFLAGS="$LDFLAGS"
3304
+ save_LIBS="$LIBS"
3305
+ LDFLAGS=""
3306
+ LIBS=""
3307
+ AC_COMPILE_IFELSE(
3308
+ [AC_LANG_SOURCE([[
3309
+ extern void bar(void);
3310
+ void foo(void) { bar(); }
3311
+ ]])],
3312
+ [mv conftest.$OBJEXT conftest2.$OBJEXT
3313
+ LDFLAGS="-Wl,--wrap,bar"
3314
+ LIBS="conftest2.$OBJEXT"
3315
+ AC_LINK_IFELSE(
3316
+ [AC_LANG_PROGRAM([[
3317
+ extern void foo(void);
3318
+ void __wrap_bar(void) {}
3319
+ ]], [[
3320
+ foo();
3321
+ ]])],
3322
+ [zw_cv_prog_ld_wrap=yes],
3323
+ [zw_cv_prog_ld_wrap=no])
3324
+ rm -f conftest2.$OBJEXT
3325
+ ],
3326
+ [zw_cv_prog_ld_wrap=no])
3327
+ LDFLAGS="$save_LDFLAGS"
3328
+ LIBS="$save_LIBS"])
3329
+ if test x$zw_cv_prog_ld_wrap = xyes; then
3330
+ have_ld_wrap=yes
3331
+ AC_DEFINE([HAVE_LD_WRAP], 1,
3332
+ [Define to 1 if -Wl,--wrap,SYMBOL can be used to intercept
3333
+ calls to SYMBOL at link time.])
3334
+ else
3335
+ have_ld_wrap=no
3336
+ fi
3337
+ AM_CONDITIONAL([HAVE_LD_WRAP], [test $have_ld_wrap = yes])
3338
+ ])
3339
+ m4trace:build-aux/m4/zw_prog_perl.m4:32: -1- AC_DEFUN([zw_PROG_PERL], [AC_PATH_PROG([PERL], [perl])
3340
+ AC_MSG_CHECKING([whether $PERL is version $1 or later])
3341
+ _AS_ECHO_LOG([$PERL -e 'use v$1;'])
3342
+ AS_IF(["$PERL" -e 'use v$1;' >&AS_MESSAGE_LOG_FD 2>&1],
3343
+ [AC_MSG_RESULT([yes])m4_ifnblank([$2], [
3344
+ $2])],
3345
+ [AC_MSG_RESULT([no])
3346
+ m4_default([$3], [AC_MSG_ERROR([Perl version $1 or later is required])])])])
3347
+ m4trace:build-aux/m4/zw_simple_warnings.m4:33: -1- AC_DEFUN([zw_SIMPLE_ENABLE_WARNINGS], [
3348
+ AC_ARG_ENABLE(
3349
+ [werror],
3350
+ AS_HELP_STRING(
3351
+ [--disable-werror],
3352
+ [do not treat all warnings as errors]
3353
+ ),
3354
+ [case "${enableval}" in
3355
+ yes) warnings_are_errors=true ;;
3356
+ no) warnings_are_errors=false ;;
3357
+ *) AC_MSG_ERROR([bad value ${enableval} for --enable-werror]) ;;
3358
+ esac],
3359
+ [warnings_are_errors=true]
3360
+ )
3361
+
3362
+ # Always pass -Werror=unknown-warning-option to get Clang to fail
3363
+ # on bad flags, otherwise they are always appended to the
3364
+ # warn_cflags variable, and Clang warns on them for every
3365
+ # compilation unit. If this is passed to GCC, it will explode, so
3366
+ # the flag must be enabled conditionally.
3367
+ AX_CHECK_COMPILE_FLAG([-Werror=unknown-warning-option],[
3368
+ ax_compiler_flags_test="-Werror=unknown-warning-option"
3369
+ ],[
3370
+ ax_compiler_flags_test=""
3371
+ ])
3372
+
3373
+ # Don't enable -pedantic if we don't have C11, or we may get junk
3374
+ # warnings about static_assert.
3375
+ ax_candidate_warnings="dnl
3376
+ -Wall dnl
3377
+ -Wextra dnl
3378
+ -Walloc-zero dnl
3379
+ -Walloca dnl
3380
+ -Wbad-function-cast dnl
3381
+ -Wcast-align dnl
3382
+ -Wcast-qual dnl
3383
+ -Wconversion dnl
3384
+ -Wformat=2 dnl
3385
+ -Wformat-overflow=2 dnl
3386
+ -Wformat-signedness dnl
3387
+ -Wformat-truncation=1 dnl
3388
+ -Wlogical-op dnl
3389
+ -Wmissing-declarations dnl
3390
+ -Wmissing-prototypes dnl
3391
+ -Wnested-externs dnl
3392
+ -Wnull-dereference dnl
3393
+ -Wold-style-definition dnl
3394
+ -Wpointer-arith dnl
3395
+ -Wrestrict dnl
3396
+ -Wshadow dnl
3397
+ -Wstrict-overflow=2 dnl
3398
+ -Wstrict-prototypes dnl
3399
+ -Wundef dnl
3400
+ -Wvla dnl
3401
+ -Wwrite-strings dnl
3402
+ "
3403
+ if test x$ac_prog_cc_stdc = xc11; then
3404
+ ax_candidate_warnings="$ax_candidate_warnings -Wpedantic"
3405
+ fi
3406
+ if test x$warnings_are_errors = xtrue; then
3407
+ ax_candidate_warnings="$ax_candidate_warnings -Werror"
3408
+ fi
3409
+
3410
+ # If we are building for OSX, turn -Wdeprecated-declarations off.
3411
+ # Apple is a little too trigger-happy with deprecations.
3412
+ case "$host_os" in
3413
+ (*darwin*)
3414
+ ax_candidate_warnings="$ax_candidate_warnings -Wno-deprecated-declarations"
3415
+ ;;
3416
+ esac
3417
+
3418
+ AX_APPEND_COMPILE_FLAGS(
3419
+ [$ax_candidate_warnings], [WARN_CFLAGS],
3420
+ [$ax_compiler_flags_test])
3421
+
3422
+ AC_SUBST(WARN_CFLAGS)
3423
+
3424
+ if test $cross_compiling = yes; then
3425
+ # Repeat the above logic for the build compiler.
3426
+
3427
+ save_cross_compiling=$cross_compiling
3428
+ save_ac_tool_prefix=$ac_tool_prefix
3429
+ save_CC="$CC"
3430
+ save_CFLAGS="$CFLAGS"
3431
+ save_CPPFLAGS="$CPPFLAGS"
3432
+ save_LDFLAGS="$LDFLAGS"
3433
+
3434
+ cross_compiling=no
3435
+ ac_tool_prefix=
3436
+ CC="$CC_FOR_BUILD"
3437
+ CFLAGS="$CFLAGS_FOR_BUILD"
3438
+ CPPFLAGS="$CPPFLAGS_FOR_BUILD"
3439
+ LDFLAGS="$LDFLAGS_FOR_BUILD"
3440
+
3441
+ pushdef([_AC_LANG_ABBREV],[build_c])
3442
+
3443
+ AX_CHECK_COMPILE_FLAG([-Werror=unknown-warning-option],[
3444
+ ax_compiler_flags_test="-Werror=unknown-warning-option"
3445
+ ],[
3446
+ ax_compiler_flags_test=""
3447
+ ])
3448
+ AX_APPEND_COMPILE_FLAGS(
3449
+ [$ax_candidate_warnings], [WARN_CFLAGS_FOR_BUILD],
3450
+ [$ax_compiler_flags_test])
3451
+
3452
+ popdef([_AC_LANG_ABBREV])
3453
+
3454
+ AC_SUBST(WARN_CFLAGS_FOR_BUILD)
3455
+
3456
+ cross_compiling=$save_cross_compiling
3457
+ ac_tool_prefix=$save_ac_tool_prefix
3458
+ CC="$save_CC"
3459
+ CFLAGS="$save_CFLAGS"
3460
+ CPPFLAGS="$save_CPPFLAGS"
3461
+ LDFLAGS="$save_LDFLAGS"
3462
+ fi # cross_compiling
3463
+ ])
3464
+ m4trace:build-aux/m4/zw_static_assert.m4:15: -1- AC_DEFUN([zw_C_STATIC_ASSERT], [AC_REQUIRE([AC_PROG_CC])
3465
+ AC_CACHE_CHECK([for static_assert in assert.h],
3466
+ [zw_cv_c_assert_h_static_assert],
3467
+ [AC_COMPILE_IFELSE(
3468
+ [AC_LANG_PROGRAM([[
3469
+ #undef NDEBUG
3470
+ #include <assert.h>
3471
+ static_assert(2 + 2 == 4, "arithmetic does not work");
3472
+ ]], [[
3473
+ static_assert(sizeof (char) == 1, "sizeof does not work");
3474
+ ]])],
3475
+ [static_assert_true=yes],
3476
+ [static_assert_true=no])
3477
+ AC_COMPILE_IFELSE(
3478
+ [AC_LANG_PROGRAM([[
3479
+ #undef NDEBUG
3480
+ #include <assert.h>
3481
+ static_assert(2 * 2 == 7, "this assertion should fail");
3482
+ ]])],
3483
+ [static_assert_false=no],
3484
+ [static_assert_false=yes])
3485
+ AS_IF([test $static_assert_false$static_assert_true = yesyes],
3486
+ [zw_cv_c_assert_h_static_assert=yes],
3487
+ [zw_cv_c_assert_h_static_assert=no])])
3488
+ AS_IF([test $zw_cv_c_assert_h_static_assert = yes],
3489
+ [AC_DEFINE([HAVE_STATIC_ASSERT_IN_ASSERT_H], 1,
3490
+ [Define if <assert.h> defines static_assert.])],
3491
+ [AC_CACHE_CHECK([for _Static_assert],
3492
+ [zw_cv_c__Static_assert],
3493
+ [AS_IF([test x$ac_prog_cc_stdc = xc11],
3494
+ [zw_cv_c__Static_assert=yes],
3495
+ [AC_COMPILE_IFELSE(
3496
+ [AC_LANG_PROGRAM([[
3497
+ _Static_assert(2 + 2 == 4, "arithmetic does not work");
3498
+ ]], [[
3499
+ _Static_assert(sizeof (char) == 1, "sizeof does not work");
3500
+ ]])],
3501
+ [_Static_assert_true=yes],
3502
+ [_Static_assert_true=no])
3503
+ AC_COMPILE_IFELSE(
3504
+ [AC_LANG_PROGRAM([[
3505
+ _Static_assert(2 * 2 == 7, "this assertion should fail");
3506
+ ]])],
3507
+ [_Static_assert_false=no],
3508
+ [_Static_assert_false=yes])
3509
+ AS_IF([test $static_assert_false$static_assert_true = yesyes],
3510
+ [zw_cv_c__Static_assert=yes],
3511
+ [zw_cv_c__Static_assert=no])])])
3512
+ AS_IF([test $zw_cv_c__Static_assert = yes],
3513
+ [AC_DEFINE([HAVE__STATIC_ASSERT], 1,
3514
+ [Define if the compiler supports the _Static_assert intrinsic.])])
3515
+ ])
3516
+ ])
3517
+ m4trace:configure.ac:2: -1- m4_include([build-aux/m4/zw_automodern.m4])
3518
+ m4trace:configure.ac:3: -1- m4_pattern_forbid([^_?A[CHUM]_])
3519
+ m4trace:configure.ac:3: -1- m4_pattern_forbid([_AC_])
3520
+ m4trace:configure.ac:3: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section 'AC_LIBOBJ vs LIBOBJS'])
3521
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^AS_FLAGS$])
3522
+ m4trace:configure.ac:3: -1- m4_pattern_forbid([^_?m4_])
3523
+ m4trace:configure.ac:3: -1- m4_pattern_forbid([^dnl$])
3524
+ m4trace:configure.ac:3: -1- m4_pattern_forbid([^_?AS_])
3525
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^SHELL$])
3526
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PATH_SEPARATOR$])
3527
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_NAME$])
3528
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
3529
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_VERSION$])
3530
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_STRING$])
3531
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
3532
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_URL$])
3533
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^exec_prefix$])
3534
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^prefix$])
3535
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^program_transform_name$])
3536
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^bindir$])
3537
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^sbindir$])
3538
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^libexecdir$])
3539
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^datarootdir$])
3540
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^datadir$])
3541
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^sysconfdir$])
3542
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^sharedstatedir$])
3543
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^localstatedir$])
3544
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^runstatedir$])
3545
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^includedir$])
3546
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^oldincludedir$])
3547
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^docdir$])
3548
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^infodir$])
3549
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^htmldir$])
3550
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^dvidir$])
3551
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^pdfdir$])
3552
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^psdir$])
3553
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^libdir$])
3554
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^localedir$])
3555
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^mandir$])
3556
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_NAME$])
3557
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
3558
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_VERSION$])
3559
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_STRING$])
3560
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
3561
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_URL$])
3562
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^DEFS$])
3563
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^ECHO_C$])
3564
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^ECHO_N$])
3565
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^ECHO_T$])
3566
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^LIBS$])
3567
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^build_alias$])
3568
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^host_alias$])
3569
+ m4trace:configure.ac:3: -1- m4_pattern_allow([^target_alias$])
3570
+ m4trace:configure.ac:8: -1- AC_CONFIG_MACRO_DIR([build-aux/m4])
3571
+ m4trace:configure.ac:8: -1- AC_CONFIG_MACRO_DIR_TRACE([build-aux/m4])
3572
+ m4trace:configure.ac:16: -1- AM_INIT_AUTOMAKE([tar-v7])
3573
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
3574
+ m4trace:configure.ac:16: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
3575
+ m4trace:configure.ac:16: -1- AM_AUTOMAKE_VERSION([1.18])
3576
+ m4trace:configure.ac:16: -1- _AM_AUTOCONF_VERSION([2.72])
3577
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
3578
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
3579
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_DATA$])
3580
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__isrc$])
3581
+ m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([am__isrc])
3582
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^CYGPATH_W$])
3583
+ m4trace:configure.ac:16: -1- _AM_SET_OPTIONS([tar-v7])
3584
+ m4trace:configure.ac:16: -1- _AM_SET_OPTION([tar-v7])
3585
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([tar-v7])
3586
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE$])
3587
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^VERSION$])
3588
+ m4trace:configure.ac:16: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
3589
+ AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
3590
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([no-define])
3591
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE$])
3592
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^VERSION$])
3593
+ m4trace:configure.ac:16: -1- AM_SANITY_CHECK
3594
+ m4trace:configure.ac:16: -1- _AM_FILESYSTEM_TIMESTAMP_RESOLUTION
3595
+ m4trace:configure.ac:16: -1- _AM_SLEEP_FRACTIONAL_SECONDS
3596
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
3597
+ m4trace:configure.ac:16: -1- AM_MISSING_HAS_RUN
3598
+ m4trace:configure.ac:16: -1- AM_AUX_DIR_EXPAND
3599
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^ACLOCAL$])
3600
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
3601
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AUTOCONF$])
3602
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
3603
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AUTOMAKE$])
3604
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
3605
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AUTOHEADER$])
3606
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
3607
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^MAKEINFO$])
3608
+ m4trace:configure.ac:16: -1- AM_PROG_INSTALL_SH
3609
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^install_sh$])
3610
+ m4trace:configure.ac:16: -1- AM_PROG_INSTALL_STRIP
3611
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^STRIP$])
3612
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
3613
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^MKDIR_P$])
3614
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^mkdir_p$])
3615
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AWK$])
3616
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^SET_MAKE$])
3617
+ m4trace:configure.ac:16: -1- AM_SET_LEADING_DOT
3618
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__leading_dot$])
3619
+ m4trace:configure.ac:16: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
3620
+ [_AM_IF_OPTION([tar-v7], [_AM_PROG_TAR([v7])],
3621
+ [_AM_PROG_TAR([ustar])])])])
3622
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([tar-ustar])
3623
+ m4trace:configure.ac:16: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_IF_OPTION([tar-v7], [_AM_PROG_TAR([v7])],
3624
+ [_AM_PROG_TAR([ustar])])])
3625
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([tar-pax])
3626
+ m4trace:configure.ac:16: -1- _AM_IF_OPTION([tar-v7], [_AM_PROG_TAR([v7])], [_AM_PROG_TAR([ustar])])
3627
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([tar-v7])
3628
+ m4trace:configure.ac:16: -1- _AM_PROG_TAR([v7])
3629
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AMTAR$])
3630
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__tar$])
3631
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__untar$])
3632
+ m4trace:configure.ac:16: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
3633
+ [_AM_DEPENDENCIES([CC])],
3634
+ [m4_define([AC_PROG_CC],
3635
+ m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
3636
+ AC_PROVIDE_IFELSE([AC_PROG_CXX],
3637
+ [_AM_DEPENDENCIES([CXX])],
3638
+ [m4_define([AC_PROG_CXX],
3639
+ m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
3640
+ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
3641
+ [_AM_DEPENDENCIES([OBJC])],
3642
+ [m4_define([AC_PROG_OBJC],
3643
+ m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
3644
+ AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
3645
+ [_AM_DEPENDENCIES([OBJCXX])],
3646
+ [m4_define([AC_PROG_OBJCXX],
3647
+ m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
3648
+ ])
3649
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([no-dependencies])
3650
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^CTAGS$])
3651
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^ETAGS$])
3652
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^CSCOPE$])
3653
+ m4trace:configure.ac:16: -1- _AM_SILENT_RULES
3654
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_V$])
3655
+ m4trace:configure.ac:16: -1- AM_SUBST_NOTMAKE([AM_V])
3656
+ m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([AM_V])
3657
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_DEFAULT_V$])
3658
+ m4trace:configure.ac:16: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
3659
+ m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
3660
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
3661
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_BACKSLASH$])
3662
+ m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
3663
+ m4trace:configure.ac:16: -1- _AM_PROG_RM_F
3664
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__rm_f_notfound$])
3665
+ m4trace:configure.ac:16: -1- _AM_PROG_XARGS_N
3666
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__xargs_n$])
3667
+ m4trace:configure.ac:26: -1- m4_pattern_allow([PKG_INSTALLDIR])
3668
+ m4trace:configure.ac:27: -1- PKG_PROG_PKG_CONFIG_COMPAT([0.27], [PKG_CONFIG=false])
3669
+ m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$])
3670
+ m4trace:configure.ac:27: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
3671
+ m4trace:configure.ac:27: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
3672
+ m4trace:configure.ac:27: -1- m4_pattern_allow([^PKG_CONFIG$])
3673
+ m4trace:configure.ac:27: -1- m4_pattern_allow([^PKG_CONFIG_PATH$])
3674
+ m4trace:configure.ac:27: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
3675
+ m4trace:configure.ac:27: -1- m4_pattern_allow([^PKG_CONFIG$])
3676
+ m4trace:configure.ac:28: -1- PKG_INSTALLDIR
3677
+ m4trace:configure.ac:28: -1- m4_pattern_allow([^pkgconfigdir$])
3678
+ m4trace:configure.ac:28: -1- PKG_INSTALLDIR_COMPAT
3679
+ m4trace:configure.ac:28: -1- m4_pattern_allow([^pkgconfigdir$])
3680
+ m4trace:configure.ac:33: -1- m4_pattern_allow([^build$])
3681
+ m4trace:configure.ac:33: -1- m4_pattern_allow([^build_cpu$])
3682
+ m4trace:configure.ac:33: -1- m4_pattern_allow([^build_vendor$])
3683
+ m4trace:configure.ac:33: -1- m4_pattern_allow([^build_os$])
3684
+ m4trace:configure.ac:33: -1- m4_pattern_allow([^host$])
3685
+ m4trace:configure.ac:33: -1- m4_pattern_allow([^host_cpu$])
3686
+ m4trace:configure.ac:33: -1- m4_pattern_allow([^host_vendor$])
3687
+ m4trace:configure.ac:33: -1- m4_pattern_allow([^host_os$])
3688
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^CC$])
3689
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^CFLAGS$])
3690
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^LDFLAGS$])
3691
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^LIBS$])
3692
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^CPPFLAGS$])
3693
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^CC$])
3694
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^CC$])
3695
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^CC$])
3696
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^CC$])
3697
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^ac_ct_CC$])
3698
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^CC$])
3699
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^EXEEXT$])
3700
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^OBJEXT$])
3701
+ m4trace:configure.ac:34: -1- _AM_PROG_CC_C_O
3702
+ m4trace:configure.ac:34: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
3703
+ m4trace:configure.ac:34: -1- _AM_DEPENDENCIES([CC])
3704
+ m4trace:configure.ac:34: -1- AM_SET_DEPDIR
3705
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^DEPDIR$])
3706
+ m4trace:configure.ac:34: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
3707
+ m4trace:configure.ac:34: -1- AM_MAKE_INCLUDE
3708
+ m4trace:configure.ac:34: -1- AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
3709
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^am__include$])
3710
+ m4trace:configure.ac:34: -1- AM_DEP_TRACK
3711
+ m4trace:configure.ac:34: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
3712
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^AMDEP_TRUE$])
3713
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^AMDEP_FALSE$])
3714
+ m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
3715
+ m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
3716
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
3717
+ m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
3718
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^am__nodep$])
3719
+ m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([am__nodep])
3720
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^CCDEPMODE$])
3721
+ m4trace:configure.ac:34: -1- AM_CONDITIONAL([am__fastdepCC], [
3722
+ test "x$enable_dependency_tracking" != xno \
3723
+ && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
3724
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
3725
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
3726
+ m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
3727
+ m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
3728
+ m4trace:configure.ac:42: -1- m4_pattern_allow([^CPP$])
3729
+ m4trace:configure.ac:42: -1- m4_pattern_allow([^CPPFLAGS$])
3730
+ m4trace:configure.ac:42: -1- m4_pattern_allow([^CPP$])
3731
+ m4trace:configure.ac:43: -1- m4_pattern_allow([^SET_MAKE$])
3732
+ m4trace:configure.ac:44: -1- m4_pattern_allow([^LN_S$])
3733
+ m4trace:configure.ac:45: -1- zw_PROG_PERL([5.14.0])
3734
+ m4trace:configure.ac:45: -1- m4_pattern_allow([^PERL$])
3735
+ m4trace:configure.ac:46: -1- m4_pattern_allow([^GPG2$])
3736
+ m4trace:configure.ac:47: -1- m4_pattern_allow([^SHA256SUM$])
3737
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_stdio_h], [m4_divert_text([INIT_PREPARE],
3738
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3739
+ [" stdio.h ]AS_TR_SH([stdio.h]) AS_TR_CPP([HAVE_stdio.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3740
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_stdlib_h], [m4_divert_text([INIT_PREPARE],
3741
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3742
+ [" stdlib.h ]AS_TR_SH([stdlib.h]) AS_TR_CPP([HAVE_stdlib.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3743
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_string_h], [m4_divert_text([INIT_PREPARE],
3744
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3745
+ [" string.h ]AS_TR_SH([string.h]) AS_TR_CPP([HAVE_string.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3746
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_inttypes_h], [m4_divert_text([INIT_PREPARE],
3747
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3748
+ [" inttypes.h ]AS_TR_SH([inttypes.h]) AS_TR_CPP([HAVE_inttypes.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3749
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_stdint_h], [m4_divert_text([INIT_PREPARE],
3750
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3751
+ [" stdint.h ]AS_TR_SH([stdint.h]) AS_TR_CPP([HAVE_stdint.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3752
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_strings_h], [m4_divert_text([INIT_PREPARE],
3753
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3754
+ [" strings.h ]AS_TR_SH([strings.h]) AS_TR_CPP([HAVE_strings.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3755
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_sys_stat_h], [m4_divert_text([INIT_PREPARE],
3756
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3757
+ [" sys/stat.h ]AS_TR_SH([sys/stat.h]) AS_TR_CPP([HAVE_sys/stat.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3758
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_sys_types_h], [m4_divert_text([INIT_PREPARE],
3759
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3760
+ [" sys/types.h ]AS_TR_SH([sys/types.h]) AS_TR_CPP([HAVE_sys/types.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3761
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_unistd_h], [m4_divert_text([INIT_PREPARE],
3762
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3763
+ [" unistd.h ]AS_TR_SH([unistd.h]) AS_TR_CPP([HAVE_unistd.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3764
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^STDC_HEADERS$])
3765
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_wchar_h], [m4_divert_text([INIT_PREPARE],
3766
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3767
+ [" wchar.h ]AS_TR_SH([wchar.h]) AS_TR_CPP([HAVE_wchar.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3768
+ m4trace:configure.ac:49: -1- AC_DEFUN([_AC_Header_minix_config_h], [m4_divert_text([INIT_PREPARE],
3769
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3770
+ [" minix/config.h ]AS_TR_SH([minix/config.h]) AS_TR_CPP([HAVE_minix/config.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3771
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_ALL_SOURCE$])
3772
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_DARWIN_C_SOURCE$])
3773
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_GNU_SOURCE$])
3774
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_HPUX_ALT_XOPEN_SOCKET_API$])
3775
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_NETBSD_SOURCE$])
3776
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_OPENBSD_SOURCE$])
3777
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_POSIX_PTHREAD_SEMANTICS$])
3778
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^__STDC_WANT_IEC_60559_ATTRIBS_EXT__$])
3779
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^__STDC_WANT_IEC_60559_BFP_EXT__$])
3780
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^__STDC_WANT_IEC_60559_DFP_EXT__$])
3781
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^__STDC_WANT_IEC_60559_EXT__$])
3782
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^__STDC_WANT_IEC_60559_FUNCS_EXT__$])
3783
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^__STDC_WANT_IEC_60559_TYPES_EXT__$])
3784
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^__STDC_WANT_LIB_EXT2__$])
3785
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^__STDC_WANT_MATH_SPEC_FUNCS__$])
3786
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_TANDEM_SOURCE$])
3787
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_MINIX$])
3788
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_POSIX_SOURCE$])
3789
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_POSIX_1_SOURCE$])
3790
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^__EXTENSIONS__$])
3791
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_XOPEN_SOURCE$])
3792
+ m4trace:configure.ac:50: -1- m4_pattern_allow([^_FILE_OFFSET_BITS$])
3793
+ m4trace:configure.ac:50: -1- m4_pattern_allow([^_LARGE_FILES$])
3794
+ m4trace:configure.ac:50: -1- m4_pattern_allow([^_TIME_BITS$])
3795
+ m4trace:configure.ac:50: -1- m4_pattern_allow([^__MINGW_USE_VC2005_COMPAT$])
3796
+ m4trace:configure.ac:51: -1- zw_SIMPLE_ENABLE_WARNINGS
3797
+ m4trace:configure.ac:51: -1- AX_CHECK_COMPILE_FLAG([-Werror=unknown-warning-option], [
3798
+ ax_compiler_flags_test="-Werror=unknown-warning-option"
3799
+ ], [
3800
+ ax_compiler_flags_test=""
3801
+ ])
3802
+ m4trace:configure.ac:51: -1- AX_APPEND_COMPILE_FLAGS([$ax_candidate_warnings], [WARN_CFLAGS], [$ax_compiler_flags_test])
3803
+ m4trace:configure.ac:51: -1- AX_REQUIRE_DEFINED([AX_CHECK_COMPILE_FLAG])
3804
+ m4trace:configure.ac:51: -1- AX_REQUIRE_DEFINED([AX_APPEND_FLAG])
3805
+ m4trace:configure.ac:51: -1- AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [WARN_CFLAGS])], [], [$ax_compiler_flags_test], [])
3806
+ m4trace:configure.ac:51: -1- AX_APPEND_FLAG([$flag], [WARN_CFLAGS])
3807
+ m4trace:configure.ac:51: -1- m4_pattern_allow([^WARN_CFLAGS$])
3808
+ m4trace:configure.ac:51: -1- AX_CHECK_COMPILE_FLAG([-Werror=unknown-warning-option], [
3809
+ ax_compiler_flags_test="-Werror=unknown-warning-option"
3810
+ ], [
3811
+ ax_compiler_flags_test=""
3812
+ ])
3813
+ m4trace:configure.ac:51: -1- AX_APPEND_COMPILE_FLAGS([$ax_candidate_warnings], [WARN_CFLAGS_FOR_BUILD], [$ax_compiler_flags_test])
3814
+ m4trace:configure.ac:51: -1- AX_REQUIRE_DEFINED([AX_CHECK_COMPILE_FLAG])
3815
+ m4trace:configure.ac:51: -1- AX_REQUIRE_DEFINED([AX_APPEND_FLAG])
3816
+ m4trace:configure.ac:51: -1- AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [WARN_CFLAGS_FOR_BUILD])], [], [$ax_compiler_flags_test], [])
3817
+ m4trace:configure.ac:51: -1- AX_APPEND_FLAG([$flag], [WARN_CFLAGS_FOR_BUILD])
3818
+ m4trace:configure.ac:51: -1- m4_pattern_allow([^WARN_CFLAGS_FOR_BUILD$])
3819
+ m4trace:configure.ac:52: -1- LT_INIT
3820
+ m4trace:configure.ac:52: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
3821
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
3822
+ m4trace:configure.ac:52: -1- LTOPTIONS_VERSION
3823
+ m4trace:configure.ac:52: -1- LTSUGAR_VERSION
3824
+ m4trace:configure.ac:52: -1- LTVERSION_VERSION
3825
+ m4trace:configure.ac:52: -1- LTOBSOLETE_VERSION
3826
+ m4trace:configure.ac:52: -1- _LT_PROG_LTMAIN
3827
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^LIBTOOL$])
3828
+ m4trace:configure.ac:52: -1- _LT_PREPARE_SED_QUOTE_VARS
3829
+ m4trace:configure.ac:52: -1- _LT_PROG_ECHO_BACKSLASH
3830
+ m4trace:configure.ac:52: -1- LT_PATH_LD
3831
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^SED$])
3832
+ m4trace:configure.ac:52: -1- AC_PROG_EGREP
3833
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^GREP$])
3834
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^EGREP$])
3835
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^FGREP$])
3836
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^GREP$])
3837
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^LD$])
3838
+ m4trace:configure.ac:52: -1- LT_PATH_NM
3839
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^DUMPBIN$])
3840
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
3841
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^DUMPBIN$])
3842
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^NM$])
3843
+ m4trace:configure.ac:52: -1- LT_CMD_MAX_LEN
3844
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^FILECMD$])
3845
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^OBJDUMP$])
3846
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^OBJDUMP$])
3847
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^DLLTOOL$])
3848
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^DLLTOOL$])
3849
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^AR$])
3850
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^ac_ct_AR$])
3851
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^STRIP$])
3852
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^RANLIB$])
3853
+ m4trace:configure.ac:52: -1- _LT_WITH_SYSROOT
3854
+ m4trace:configure.ac:52: -1- m4_pattern_allow([LT_OBJDIR])
3855
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^LT_OBJDIR$])
3856
+ m4trace:configure.ac:52: -1- _LT_CC_BASENAME([$compiler])
3857
+ m4trace:configure.ac:52: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
3858
+ m4trace:configure.ac:52: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
3859
+ m4trace:configure.ac:52: -1- LT_SUPPORTED_TAG([CC])
3860
+ m4trace:configure.ac:52: -1- _LT_COMPILER_BOILERPLATE
3861
+ m4trace:configure.ac:52: -1- _LT_LINKER_BOILERPLATE
3862
+ m4trace:configure.ac:52: -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"])
3863
+ m4trace:configure.ac:52: -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
3864
+ "" | " "*) ;;
3865
+ *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
3866
+ esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
3867
+ _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
3868
+ m4trace:configure.ac:52: -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, )=])
3869
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^MANIFEST_TOOL$])
3870
+ m4trace:configure.ac:52: -1- _LT_DLL_DEF_P([$export_symbols])
3871
+ m4trace:configure.ac:52: -1- _LT_DLL_DEF_P([$export_symbols])
3872
+ m4trace:configure.ac:52: -1- _LT_REQUIRED_DARWIN_CHECKS
3873
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^DSYMUTIL$])
3874
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^NMEDIT$])
3875
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^LIPO$])
3876
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^OTOOL$])
3877
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^OTOOL64$])
3878
+ m4trace:configure.ac:52: -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'])
3879
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
3880
+ m4trace:configure.ac:52: -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
3881
+ "" | " "*) ;;
3882
+ *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
3883
+ esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
3884
+ _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
3885
+ m4trace:configure.ac:52: -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, )=])
3886
+ m4trace:configure.ac:52: -1- LT_SYS_DLOPEN_SELF
3887
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
3888
+ m4trace:configure.ac:56: -1- LT_SYS_SYMBOL_USCORE
3889
+ m4trace:configure.ac:56: -1- m4_pattern_allow([^sys_symbol_underscore$])
3890
+ m4trace:configure.ac:62: -1- m4_pattern_allow([^SYMBOL_PREFIX$])
3891
+ m4trace:configure.ac:78: -1- m4_pattern_allow([^HAVE_CPP_dD$])
3892
+ m4trace:configure.ac:82: -1- zw_ASAN_IFELSE([ac_cv_c_address_sanitizer=yes], [ac_cv_c_address_sanitizer=no])
3893
+ m4trace:configure.ac:88: -1- m4_pattern_allow([^XCRYPT_USE_ASAN$])
3894
+ m4trace:configure.ac:95: -1- AC_DEFUN([_AC_Header_fcntl_h], [m4_divert_text([INIT_PREPARE],
3895
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3896
+ [" fcntl.h ]AS_TR_SH([fcntl.h]) AS_TR_CPP([HAVE_fcntl.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3897
+ m4trace:configure.ac:95: -1- AC_DEFUN([_AC_Header_stdbool_h], [m4_divert_text([INIT_PREPARE],
3898
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3899
+ [" stdbool.h ]AS_TR_SH([stdbool.h]) AS_TR_CPP([HAVE_stdbool.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3900
+ m4trace:configure.ac:95: -1- AC_DEFUN([_AC_Header_ucontext_h], [m4_divert_text([INIT_PREPARE],
3901
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3902
+ [" ucontext.h ]AS_TR_SH([ucontext.h]) AS_TR_CPP([HAVE_ucontext.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3903
+ m4trace:configure.ac:95: -1- AC_DEFUN([_AC_Header_sys_cdefs_h], [m4_divert_text([INIT_PREPARE],
3904
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3905
+ [" sys/cdefs.h ]AS_TR_SH([sys/cdefs.h]) AS_TR_CPP([HAVE_sys/cdefs.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3906
+ m4trace:configure.ac:95: -1- AC_DEFUN([_AC_Header_sys_random_h], [m4_divert_text([INIT_PREPARE],
3907
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3908
+ [" sys/random.h ]AS_TR_SH([sys/random.h]) AS_TR_CPP([HAVE_sys/random.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3909
+ m4trace:configure.ac:95: -1- AC_DEFUN([_AC_Header_sys_syscall_h], [m4_divert_text([INIT_PREPARE],
3910
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3911
+ [" sys/syscall.h ]AS_TR_SH([sys/syscall.h]) AS_TR_CPP([HAVE_sys/syscall.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3912
+ m4trace:configure.ac:95: -1- AC_DEFUN([_AC_Header_valgrind_valgrind_h], [m4_divert_text([INIT_PREPARE],
3913
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3914
+ [" valgrind/valgrind.h ]AS_TR_SH([valgrind/valgrind.h]) AS_TR_CPP([HAVE_valgrind/valgrind.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3915
+ m4trace:configure.ac:141: -1- m4_pattern_allow([^HAVE_SYS_CDEFS_BEGIN_END_DECLS$])
3916
+ m4trace:configure.ac:145: -1- m4_pattern_allow([^HAVE_SYS_CDEFS_THROW$])
3917
+ m4trace:configure.ac:150: -1- zw_C_ALIGNAS
3918
+ m4trace:configure.ac:150: -1- m4_pattern_allow([^alignas$])
3919
+ m4trace:configure.ac:151: -1- zw_C_ALIGNOF
3920
+ m4trace:configure.ac:151: -1- m4_pattern_allow([^alignof$])
3921
+ m4trace:configure.ac:152: -1- zw_C_MAX_ALIGN_T
3922
+ m4trace:configure.ac:152: -1- m4_pattern_allow([^HAVE_MAX_ALIGN_T$])
3923
+ m4trace:configure.ac:153: -1- zw_C_ENDIANNESS
3924
+ m4trace:configure.ac:153: -1- AC_DEFUN([_AC_Header_endian_h], [m4_divert_text([INIT_PREPARE],
3925
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3926
+ [" endian.h ]AS_TR_SH([endian.h]) AS_TR_CPP([HAVE_endian.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3927
+ m4trace:configure.ac:153: -1- AC_DEFUN([_AC_Header_sys_endian_h], [m4_divert_text([INIT_PREPARE],
3928
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3929
+ [" sys/endian.h ]AS_TR_SH([sys/endian.h]) AS_TR_CPP([HAVE_sys/endian.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3930
+ m4trace:configure.ac:153: -1- AC_DEFUN([_AC_Header_sys_param_h], [m4_divert_text([INIT_PREPARE],
3931
+ [AS_VAR_APPEND([ac_header_]]_AC_LANG_ABBREV[[_list],
3932
+ [" sys/param.h ]AS_TR_SH([sys/param.h]) AS_TR_CPP([HAVE_sys/param.h])["])])_AC_HEADERS_EXPANSION(_AC_LANG_ABBREV)])
3933
+ m4trace:configure.ac:153: -1- m4_pattern_allow([^ENDIANNESS_IS_BIG$])
3934
+ m4trace:configure.ac:153: -1- m4_pattern_allow([^ENDIANNESS_IS_LITTLE$])
3935
+ m4trace:configure.ac:153: -1- m4_pattern_allow([^ENDIANNESS_IS_PDP$])
3936
+ m4trace:configure.ac:154: -1- zw_C_STATIC_ASSERT
3937
+ m4trace:configure.ac:154: -1- m4_pattern_allow([^HAVE_STATIC_ASSERT_IN_ASSERT_H$])
3938
+ m4trace:configure.ac:154: -1- m4_pattern_allow([^HAVE__STATIC_ASSERT$])
3939
+ m4trace:configure.ac:155: -1- zw_PROG_LD_WRAP
3940
+ m4trace:configure.ac:155: -1- m4_pattern_allow([^HAVE_LD_WRAP$])
3941
+ m4trace:configure.ac:155: -1- AM_CONDITIONAL([HAVE_LD_WRAP], [test $have_ld_wrap = yes])
3942
+ m4trace:configure.ac:155: -1- m4_pattern_allow([^HAVE_LD_WRAP_TRUE$])
3943
+ m4trace:configure.ac:155: -1- m4_pattern_allow([^HAVE_LD_WRAP_FALSE$])
3944
+ m4trace:configure.ac:155: -1- _AM_SUBST_NOTMAKE([HAVE_LD_WRAP_TRUE])
3945
+ m4trace:configure.ac:155: -1- _AM_SUBST_NOTMAKE([HAVE_LD_WRAP_FALSE])
3946
+ m4trace:configure.ac:156: -1- AX_CHECK_VSCRIPT
3947
+ m4trace:configure.ac:156: -1- _AX_CHECK_VSCRIPT([--version-script], [show], [
3948
+ ax_cv_check_vscript_flag=--version-script
3949
+ ])
3950
+ m4trace:configure.ac:156: -1- _AX_CHECK_VSCRIPT([-M], [show], [ax_cv_check_vscript_flag=-M])
3951
+ m4trace:configure.ac:156: -1- _AX_CHECK_VSCRIPT([$ax_cv_check_vscript_flag], [show], [ax_cv_check_vscript_flag=unsupported], [yes])
3952
+ m4trace:configure.ac:156: -1- _AX_CHECK_VSCRIPT([$ax_cv_check_vscript_flag], [sh*], [
3953
+ ax_cv_check_vscript_complex_wildcards=yes])
3954
+ m4trace:configure.ac:156: -1- m4_pattern_allow([^VSCRIPT_LDFLAGS$])
3955
+ m4trace:configure.ac:156: -1- AM_CONDITIONAL([HAVE_VSCRIPT], [test x$ax_check_vscript_flag != x])
3956
+ m4trace:configure.ac:156: -1- m4_pattern_allow([^HAVE_VSCRIPT_TRUE$])
3957
+ m4trace:configure.ac:156: -1- m4_pattern_allow([^HAVE_VSCRIPT_FALSE$])
3958
+ m4trace:configure.ac:156: -1- _AM_SUBST_NOTMAKE([HAVE_VSCRIPT_TRUE])
3959
+ m4trace:configure.ac:156: -1- _AM_SUBST_NOTMAKE([HAVE_VSCRIPT_FALSE])
3960
+ m4trace:configure.ac:156: -1- AM_CONDITIONAL([HAVE_VSCRIPT_COMPLEX], [test x$ax_check_vscript_complex_wildcards = xyes])
3961
+ m4trace:configure.ac:156: -1- m4_pattern_allow([^HAVE_VSCRIPT_COMPLEX_TRUE$])
3962
+ m4trace:configure.ac:156: -1- m4_pattern_allow([^HAVE_VSCRIPT_COMPLEX_FALSE$])
3963
+ m4trace:configure.ac:156: -1- _AM_SUBST_NOTMAKE([HAVE_VSCRIPT_COMPLEX_TRUE])
3964
+ m4trace:configure.ac:156: -1- _AM_SUBST_NOTMAKE([HAVE_VSCRIPT_COMPLEX_FALSE])
3965
+ m4trace:configure.ac:157: -1- AX_GCC_FUNC_ATTRIBUTE([symver])
3966
+ m4trace:configure.ac:157: -1- m4_pattern_allow([^HAVE_FUNC_ATTRIBUTE_SYMVER$])
3967
+ m4trace:configure.ac:180: -1- m4_pattern_allow([^UNDEF_FLAG$])
3968
+ m4trace:configure.ac:197: -1- m4_pattern_allow([^TEXT_RELOC_FLAG$])
3969
+ m4trace:configure.ac:214: -1- m4_pattern_allow([^RELRO_FLAG$])
3970
+ m4trace:configure.ac:231: -1- m4_pattern_allow([^BINDNOW_FLAG$])
3971
+ m4trace:configure.ac:235: -1- AX_APPEND_COMPILE_FLAGS([-fno-plt], [OPTI_FLAGS], [$WARN_CFLAGS])
3972
+ m4trace:configure.ac:235: -1- AX_REQUIRE_DEFINED([AX_CHECK_COMPILE_FLAG])
3973
+ m4trace:configure.ac:235: -1- AX_REQUIRE_DEFINED([AX_APPEND_FLAG])
3974
+ m4trace:configure.ac:235: -1- AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [OPTI_FLAGS])], [], [$WARN_CFLAGS], [])
3975
+ m4trace:configure.ac:235: -1- AX_APPEND_FLAG([$flag], [OPTI_FLAGS])
3976
+ m4trace:configure.ac:238: -1- m4_pattern_allow([^OPTI_FLAGS$])
3977
+ m4trace:configure.ac:241: -1- AC_DEFUN([_AC_Func_arc4random_buf], [m4_divert_text([INIT_PREPARE],
3978
+ [AS_VAR_APPEND([ac_func_]]_AC_LANG_ABBREV[[_list],
3979
+ [" arc4random_buf ]AS_TR_CPP([HAVE_arc4random_buf])["])])_AC_FUNCS_EXPANSION(_AC_LANG_ABBREV)])
3980
+ m4trace:configure.ac:241: -1- AC_DEFUN([_AC_Func_explicit_bzero], [m4_divert_text([INIT_PREPARE],
3981
+ [AS_VAR_APPEND([ac_func_]]_AC_LANG_ABBREV[[_list],
3982
+ [" explicit_bzero ]AS_TR_CPP([HAVE_explicit_bzero])["])])_AC_FUNCS_EXPANSION(_AC_LANG_ABBREV)])
3983
+ m4trace:configure.ac:241: -1- AC_DEFUN([_AC_Func_explicit_memset], [m4_divert_text([INIT_PREPARE],
3984
+ [AS_VAR_APPEND([ac_func_]]_AC_LANG_ABBREV[[_list],
3985
+ [" explicit_memset ]AS_TR_CPP([HAVE_explicit_memset])["])])_AC_FUNCS_EXPANSION(_AC_LANG_ABBREV)])
3986
+ m4trace:configure.ac:241: -1- AC_DEFUN([_AC_Func_getentropy], [m4_divert_text([INIT_PREPARE],
3987
+ [AS_VAR_APPEND([ac_func_]]_AC_LANG_ABBREV[[_list],
3988
+ [" getentropy ]AS_TR_CPP([HAVE_getentropy])["])])_AC_FUNCS_EXPANSION(_AC_LANG_ABBREV)])
3989
+ m4trace:configure.ac:241: -1- AC_DEFUN([_AC_Func_getrandom], [m4_divert_text([INIT_PREPARE],
3990
+ [AS_VAR_APPEND([ac_func_]]_AC_LANG_ABBREV[[_list],
3991
+ [" getrandom ]AS_TR_CPP([HAVE_getrandom])["])])_AC_FUNCS_EXPANSION(_AC_LANG_ABBREV)])
3992
+ m4trace:configure.ac:241: -1- AC_DEFUN([_AC_Func_memset_explicit], [m4_divert_text([INIT_PREPARE],
3993
+ [AS_VAR_APPEND([ac_func_]]_AC_LANG_ABBREV[[_list],
3994
+ [" memset_explicit ]AS_TR_CPP([HAVE_memset_explicit])["])])_AC_FUNCS_EXPANSION(_AC_LANG_ABBREV)])
3995
+ m4trace:configure.ac:241: -1- AC_DEFUN([_AC_Func_memset_s], [m4_divert_text([INIT_PREPARE],
3996
+ [AS_VAR_APPEND([ac_func_]]_AC_LANG_ABBREV[[_list],
3997
+ [" memset_s ]AS_TR_CPP([HAVE_memset_s])["])])_AC_FUNCS_EXPANSION(_AC_LANG_ABBREV)])
3998
+ m4trace:configure.ac:241: -1- AC_DEFUN([_AC_Func_open64], [m4_divert_text([INIT_PREPARE],
3999
+ [AS_VAR_APPEND([ac_func_]]_AC_LANG_ABBREV[[_list],
4000
+ [" open64 ]AS_TR_CPP([HAVE_open64])["])])_AC_FUNCS_EXPANSION(_AC_LANG_ABBREV)])
4001
+ m4trace:configure.ac:241: -1- AC_DEFUN([_AC_Func_syscall], [m4_divert_text([INIT_PREPARE],
4002
+ [AS_VAR_APPEND([ac_func_]]_AC_LANG_ABBREV[[_list],
4003
+ [" syscall ]AS_TR_CPP([HAVE_syscall])["])])_AC_FUNCS_EXPANSION(_AC_LANG_ABBREV)])
4004
+ m4trace:configure.ac:255: -1- AX_VALGRIND_DFLT([drd], [off])
4005
+ m4trace:configure.ac:256: -1- AX_VALGRIND_DFLT([helgrind], [off])
4006
+ m4trace:configure.ac:259: -1- AX_VALGRIND_DFLT([sgcheck], [off])
4007
+ m4trace:configure.ac:262: -1- AX_VALGRIND_CHECK([])
4008
+ m4trace:configure.ac:262: -1- AM_EXTRA_RECURSIVE_TARGETS([check-valgrind])
4009
+ m4trace:configure.ac:262: -1- AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-memcheck])
4010
+ m4trace:configure.ac:262: -1- AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-helgrind])
4011
+ m4trace:configure.ac:262: -1- AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-drd])
4012
+ m4trace:configure.ac:262: -1- AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-sgcheck])
4013
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^VALGRIND$])
4014
+ m4trace:configure.ac:262: -1- AM_CONDITIONAL([VALGRIND_ENABLED], [test "$enable_valgrind" = "yes"])
4015
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^VALGRIND_ENABLED_TRUE$])
4016
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^VALGRIND_ENABLED_FALSE$])
4017
+ m4trace:configure.ac:262: -1- _AM_SUBST_NOTMAKE([VALGRIND_ENABLED_TRUE])
4018
+ m4trace:configure.ac:262: -1- _AM_SUBST_NOTMAKE([VALGRIND_ENABLED_FALSE])
4019
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^VALGRIND_ENABLED$])
4020
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^ENABLE_VALGRIND_memcheck$])
4021
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^ENABLE_VALGRIND_helgrind$])
4022
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^ENABLE_VALGRIND_drd$])
4023
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^ENABLE_VALGRIND_sgcheck$])
4024
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^valgrind_tools$])
4025
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^valgrind_enabled_tools$])
4026
+ m4trace:configure.ac:262: -1- m4_pattern_allow([^VALGRIND_CHECK_RULES$])
4027
+ m4trace:configure.ac:262: -1- _AM_SUBST_NOTMAKE([VALGRIND_CHECK_RULES])
4028
+ m4trace:configure.ac:287: -1- m4_pattern_allow([^PYTHON$])
4029
+ m4trace:configure.ac:288: -1- AM_CONDITIONAL([ENABLE_KA_TABLE_GEN], [test x"$PYTHON" != "xfalse"])
4030
+ m4trace:configure.ac:288: -1- m4_pattern_allow([^ENABLE_KA_TABLE_GEN_TRUE$])
4031
+ m4trace:configure.ac:288: -1- m4_pattern_allow([^ENABLE_KA_TABLE_GEN_FALSE$])
4032
+ m4trace:configure.ac:288: -1- _AM_SUBST_NOTMAKE([ENABLE_KA_TABLE_GEN_TRUE])
4033
+ m4trace:configure.ac:288: -1- _AM_SUBST_NOTMAKE([ENABLE_KA_TABLE_GEN_FALSE])
4034
+ m4trace:configure.ac:316: -1- m4_pattern_allow([^USE_SWAPCONTEXT$])
4035
+ m4trace:configure.ac:338: -1- m4_pattern_allow([^ENABLE_FAILURE_TOKENS$])
4036
+ m4trace:configure.ac:390: -1- m4_pattern_allow([^COMPAT_ABI$])
4037
+ m4trace:configure.ac:439: -1- m4_pattern_allow([^hashes_enabled$])
4038
+ m4trace:configure.ac:466: -1- m4_pattern_allow([^ENABLE_OBSOLETE_API_ENOSYS$])
4039
+ m4trace:configure.ac:508: -1- m4_pattern_allow([^SYMVER_FLOOR$])
4040
+ m4trace:configure.ac:509: -1- m4_pattern_allow([^SYMVER_MIN$])
4041
+ m4trace:configure.ac:516: -1- m4_pattern_allow([^HAVE_SYMVER$])
4042
+ m4trace:configure.ac:523: -1- m4_pattern_allow([^SYMVER_FLOOR$])
4043
+ m4trace:configure.ac:527: -1- m4_pattern_allow([^ENABLE_OBSOLETE_API$])
4044
+ m4trace:configure.ac:531: -1- AM_CONDITIONAL([ENABLE_OBSOLETE_API], [test $enable_obsolete_api = 1])
4045
+ m4trace:configure.ac:531: -1- m4_pattern_allow([^ENABLE_OBSOLETE_API_TRUE$])
4046
+ m4trace:configure.ac:531: -1- m4_pattern_allow([^ENABLE_OBSOLETE_API_FALSE$])
4047
+ m4trace:configure.ac:531: -1- _AM_SUBST_NOTMAKE([ENABLE_OBSOLETE_API_TRUE])
4048
+ m4trace:configure.ac:531: -1- _AM_SUBST_NOTMAKE([ENABLE_OBSOLETE_API_FALSE])
4049
+ m4trace:configure.ac:532: -1- AM_CONDITIONAL([ENABLE_COMPAT_SUSE], [test $enable_compat_suse = 1])
4050
+ m4trace:configure.ac:532: -1- m4_pattern_allow([^ENABLE_COMPAT_SUSE_TRUE$])
4051
+ m4trace:configure.ac:532: -1- m4_pattern_allow([^ENABLE_COMPAT_SUSE_FALSE$])
4052
+ m4trace:configure.ac:532: -1- _AM_SUBST_NOTMAKE([ENABLE_COMPAT_SUSE_TRUE])
4053
+ m4trace:configure.ac:532: -1- _AM_SUBST_NOTMAKE([ENABLE_COMPAT_SUSE_FALSE])
4054
+ m4trace:configure.ac:533: -1- AM_CONDITIONAL([ENABLE_XCRYPT_COMPAT_FILES], [test $enable_xcrypt_compat_files = 1])
4055
+ m4trace:configure.ac:533: -1- m4_pattern_allow([^ENABLE_XCRYPT_COMPAT_FILES_TRUE$])
4056
+ m4trace:configure.ac:533: -1- m4_pattern_allow([^ENABLE_XCRYPT_COMPAT_FILES_FALSE$])
4057
+ m4trace:configure.ac:533: -1- _AM_SUBST_NOTMAKE([ENABLE_XCRYPT_COMPAT_FILES_TRUE])
4058
+ m4trace:configure.ac:533: -1- _AM_SUBST_NOTMAKE([ENABLE_XCRYPT_COMPAT_FILES_FALSE])
4059
+ m4trace:configure.ac:537: -1- AM_CONDITIONAL([ENABLE_STATIC], [test $enable_static = yes])
4060
+ m4trace:configure.ac:537: -1- m4_pattern_allow([^ENABLE_STATIC_TRUE$])
4061
+ m4trace:configure.ac:537: -1- m4_pattern_allow([^ENABLE_STATIC_FALSE$])
4062
+ m4trace:configure.ac:537: -1- _AM_SUBST_NOTMAKE([ENABLE_STATIC_TRUE])
4063
+ m4trace:configure.ac:537: -1- _AM_SUBST_NOTMAKE([ENABLE_STATIC_FALSE])
4064
+ m4trace:configure.ac:538: -1- AM_CONDITIONAL([ENABLE_SHARED], [test $enable_shared = yes])
4065
+ m4trace:configure.ac:538: -1- m4_pattern_allow([^ENABLE_SHARED_TRUE$])
4066
+ m4trace:configure.ac:538: -1- m4_pattern_allow([^ENABLE_SHARED_FALSE$])
4067
+ m4trace:configure.ac:538: -1- _AM_SUBST_NOTMAKE([ENABLE_SHARED_TRUE])
4068
+ m4trace:configure.ac:538: -1- _AM_SUBST_NOTMAKE([ENABLE_SHARED_FALSE])
4069
+ m4trace:configure.ac:541: -1- AM_CONDITIONAL([CROSS_COMPILING], [test $cross_compiling = yes])
4070
+ m4trace:configure.ac:541: -1- m4_pattern_allow([^CROSS_COMPILING_TRUE$])
4071
+ m4trace:configure.ac:541: -1- m4_pattern_allow([^CROSS_COMPILING_FALSE$])
4072
+ m4trace:configure.ac:541: -1- _AM_SUBST_NOTMAKE([CROSS_COMPILING_TRUE])
4073
+ m4trace:configure.ac:541: -1- _AM_SUBST_NOTMAKE([CROSS_COMPILING_FALSE])
4074
+ m4trace:configure.ac:544: -1- m4_pattern_allow([^XCRYPT_VERSION_MAJOR$])
4075
+ m4trace:configure.ac:547: -1- m4_pattern_allow([^XCRYPT_VERSION_MINOR$])
4076
+ m4trace:configure.ac:549: -1- m4_pattern_allow([^LIB@&t@OBJS$])
4077
+ m4trace:configure.ac:549: -1- m4_pattern_allow([^LTLIBOBJS$])
4078
+ m4trace:configure.ac:549: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
4079
+ m4trace:configure.ac:549: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
4080
+ m4trace:configure.ac:549: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
4081
+ m4trace:configure.ac:549: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
4082
+ m4trace:configure.ac:549: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
4083
+ m4trace:configure.ac:549: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
4084
+ m4trace:configure.ac:549: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
4085
+ m4trace:configure.ac:549: -1- AM_RUN_LOG([cd "$am_dirpart" \
4086
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
4087
+ | $MAKE -f - am--depfiles])
4088
+ m4trace:configure.ac:549: -1- _LT_PROG_LTMAIN