nutcracker 0.3.0.12 → 0.4.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +5 -13
  2. data/README.md +3 -3
  3. data/Rakefile +12 -10
  4. data/ext/nutcracker/Makefile.in +215 -162
  5. data/ext/nutcracker/README.md +16 -4
  6. data/ext/nutcracker/aclocal.m4 +432 -254
  7. data/ext/nutcracker/{contrib/yaml-0.1.4/configure → autom4te.cache/output.0} +11367 -4545
  8. data/ext/nutcracker/autom4te.cache/output.1 +19907 -0
  9. data/ext/nutcracker/autom4te.cache/output.2 +19907 -0
  10. data/ext/nutcracker/autom4te.cache/requests +518 -0
  11. data/ext/nutcracker/autom4te.cache/traces.0 +2715 -0
  12. data/ext/nutcracker/autom4te.cache/traces.1 +967 -0
  13. data/ext/nutcracker/autom4te.cache/traces.2 +2715 -0
  14. data/ext/nutcracker/config/compile +347 -0
  15. data/ext/nutcracker/config/config.guess +116 -78
  16. data/ext/nutcracker/config/config.sub +65 -45
  17. data/ext/nutcracker/config/depcomp +295 -192
  18. data/ext/nutcracker/config/install-sh +7 -7
  19. data/ext/nutcracker/config/ltmain.sh +15 -20
  20. data/ext/nutcracker/config/missing +149 -265
  21. data/ext/nutcracker/configure +493 -367
  22. data/ext/nutcracker/contrib/Makefile.in +158 -116
  23. data/ext/nutcracker/extconf.rb +0 -1
  24. data/ext/nutcracker/m4/libtool.m4 +4 -23
  25. data/ext/nutcracker/m4/ltoptions.m4 +0 -0
  26. data/ext/nutcracker/m4/ltsugar.m4 +0 -0
  27. data/ext/nutcracker/m4/ltversion.m4 +0 -0
  28. data/ext/nutcracker/m4/lt~obsolete.m4 +0 -0
  29. data/ext/nutcracker/notes/recommendation.md +1 -1
  30. data/ext/nutcracker/notes/redis.md +35 -3
  31. data/ext/nutcracker/scripts/benchmark-mget.py +43 -0
  32. data/ext/nutcracker/scripts/nutcracker.spec +61 -3
  33. data/ext/nutcracker/scripts/redis-check.sh +43 -0
  34. data/ext/nutcracker/src/Makefile.in +205 -142
  35. data/ext/nutcracker/src/event/Makefile.in +164 -66
  36. data/ext/nutcracker/src/hashkit/Makefile.in +164 -66
  37. data/ext/nutcracker/src/nc_conf.c +2 -0
  38. data/ext/nutcracker/src/nc_connection.c +31 -0
  39. data/ext/nutcracker/src/nc_connection.h +3 -0
  40. data/ext/nutcracker/src/nc_core.c +38 -2
  41. data/ext/nutcracker/src/nc_core.h +11 -0
  42. data/ext/nutcracker/src/nc_log.c +90 -12
  43. data/ext/nutcracker/src/nc_log.h +11 -0
  44. data/ext/nutcracker/src/nc_mbuf.h +1 -1
  45. data/ext/nutcracker/src/nc_message.c +162 -116
  46. data/ext/nutcracker/src/nc_message.h +161 -129
  47. data/ext/nutcracker/src/nc_proxy.c +34 -4
  48. data/ext/nutcracker/src/nc_request.c +158 -32
  49. data/ext/nutcracker/src/nc_server.c +59 -5
  50. data/ext/nutcracker/src/nc_server.h +1 -0
  51. data/ext/nutcracker/src/nc_signal.c +2 -2
  52. data/ext/nutcracker/src/nc_stats.c +21 -0
  53. data/ext/nutcracker/src/nc_stats.h +28 -26
  54. data/ext/nutcracker/src/nc_string.c +176 -1
  55. data/ext/nutcracker/src/nc_string.h +26 -0
  56. data/ext/nutcracker/src/nc_util.c +12 -0
  57. data/ext/nutcracker/src/nc_util.h +1 -0
  58. data/ext/nutcracker/src/proto/Makefile.in +164 -66
  59. data/ext/nutcracker/src/proto/nc_memcache.c +279 -88
  60. data/ext/nutcracker/src/proto/nc_proto.h +3 -4
  61. data/ext/nutcracker/src/proto/nc_redis.c +561 -134
  62. data/lib/nutcracker/version.rb +1 -1
  63. metadata +31 -67
  64. data/ext/nutcracker/contrib/yaml-0.1.4/LICENSE +0 -19
  65. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.am +0 -20
  66. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.in +0 -736
  67. data/ext/nutcracker/contrib/yaml-0.1.4/README +0 -27
  68. data/ext/nutcracker/contrib/yaml-0.1.4/aclocal.m4 +0 -956
  69. data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in +0 -80
  70. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.guess +0 -1561
  71. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.sub +0 -1686
  72. data/ext/nutcracker/contrib/yaml-0.1.4/config/depcomp +0 -630
  73. data/ext/nutcracker/contrib/yaml-0.1.4/config/install-sh +0 -520
  74. data/ext/nutcracker/contrib/yaml-0.1.4/config/ltmain.sh +0 -8406
  75. data/ext/nutcracker/contrib/yaml-0.1.4/config/missing +0 -376
  76. data/ext/nutcracker/contrib/yaml-0.1.4/configure.ac +0 -75
  77. data/ext/nutcracker/contrib/yaml-0.1.4/doc/doxygen.cfg +0 -222
  78. data/ext/nutcracker/contrib/yaml-0.1.4/include/yaml.h +0 -1971
  79. data/ext/nutcracker/contrib/yaml-0.1.4/m4/libtool.m4 +0 -7357
  80. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltoptions.m4 +0 -368
  81. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltsugar.m4 +0 -123
  82. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltversion.m4 +0 -23
  83. data/ext/nutcracker/contrib/yaml-0.1.4/m4/lt~obsolete.m4 +0 -92
  84. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.am +0 -4
  85. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.in +0 -484
  86. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.c +0 -1392
  87. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.c +0 -394
  88. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.c +0 -2329
  89. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.c +0 -432
  90. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.c +0 -1374
  91. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.c +0 -465
  92. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.c +0 -3570
  93. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.c +0 -141
  94. data/ext/nutcracker/contrib/yaml-0.1.4/src/yaml_private.h +0 -640
  95. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.am +0 -8
  96. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.in +0 -675
  97. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.c +0 -800
  98. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.c +0 -1130
  99. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.c +0 -217
  100. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.c +0 -202
  101. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.c +0 -311
  102. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.c +0 -327
  103. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.c +0 -63
  104. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.c +0 -63
  105. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.c +0 -63
  106. data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-reader.c +0 -354
  107. data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-version.c +0 -29
@@ -0,0 +1,2715 @@
1
+ m4trace:/usr/local/share/aclocal/argz.m4:76: -1- AC_DEFUN([gl_FUNC_ARGZ], [gl_PREREQ_ARGZ
2
+
3
+ AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
4
+
5
+ AC_CHECK_TYPES([error_t],
6
+ [],
7
+ [AC_DEFINE([error_t], [int],
8
+ [Define to a type to use for `error_t' if it is not otherwise available.])
9
+ AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
10
+ does not typedef error_t.])],
11
+ [#if defined(HAVE_ARGZ_H)
12
+ # include <argz.h>
13
+ #endif])
14
+
15
+ ARGZ_H=
16
+ AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
17
+ argz_next argz_stringify], [], [ARGZ_H=argz.h; AC_LIBOBJ([argz])])
18
+
19
+ dnl if have system argz functions, allow forced use of
20
+ dnl libltdl-supplied implementation (and default to do so
21
+ dnl on "known bad" systems). Could use a runtime check, but
22
+ dnl (a) detecting malloc issues is notoriously unreliable
23
+ dnl (b) only known system that declares argz functions,
24
+ dnl provides them, yet they are broken, is cygwin
25
+ dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
26
+ dnl So, it's more straightforward simply to special case
27
+ dnl this for known bad systems.
28
+ AS_IF([test -z "$ARGZ_H"],
29
+ [AC_CACHE_CHECK(
30
+ [if argz actually works],
31
+ [lt_cv_sys_argz_works],
32
+ [[case $host_os in #(
33
+ *cygwin*)
34
+ lt_cv_sys_argz_works=no
35
+ if test "$cross_compiling" != no; then
36
+ lt_cv_sys_argz_works="guessing no"
37
+ else
38
+ lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
39
+ save_IFS=$IFS
40
+ IFS=-.
41
+ set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
42
+ IFS=$save_IFS
43
+ lt_os_major=${2-0}
44
+ lt_os_minor=${3-0}
45
+ lt_os_micro=${4-0}
46
+ if test "$lt_os_major" -gt 1 \
47
+ || { test "$lt_os_major" -eq 1 \
48
+ && { test "$lt_os_minor" -gt 5 \
49
+ || { test "$lt_os_minor" -eq 5 \
50
+ && test "$lt_os_micro" -gt 24; }; }; }; then
51
+ lt_cv_sys_argz_works=yes
52
+ fi
53
+ fi
54
+ ;; #(
55
+ *) lt_cv_sys_argz_works=yes ;;
56
+ esac]])
57
+ AS_IF([test "$lt_cv_sys_argz_works" = yes],
58
+ [AC_DEFINE([HAVE_WORKING_ARGZ], 1,
59
+ [This value is set to 1 to indicate that the system argz facility works])],
60
+ [ARGZ_H=argz.h
61
+ AC_LIBOBJ([argz])])])
62
+
63
+ AC_SUBST([ARGZ_H])
64
+ ])
65
+ m4trace:/usr/local/share/aclocal/argz.m4:79: -1- AC_DEFUN([gl_PREREQ_ARGZ], [:])
66
+ m4trace:/usr/local/share/aclocal/ltdl.m4:19: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
67
+ _$0($*)
68
+ ])
69
+ m4trace:/usr/local/share/aclocal/ltdl.m4:77: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
70
+ dnl Although the argument is deprecated and no longer documented,
71
+ dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
72
+ dnl here make sure it is the same as any other declaration of libltdl's
73
+ dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
74
+ dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
75
+ m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
76
+ _$0()
77
+ ])
78
+ m4trace:/usr/local/share/aclocal/ltdl.m4:83: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
79
+ _LTDL_CONVENIENCE])
80
+ m4trace:/usr/local/share/aclocal/ltdl.m4:83: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
81
+ You should run autoupdate.])dnl
82
+ _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
83
+ _LTDL_CONVENIENCE])
84
+ m4trace:/usr/local/share/aclocal/ltdl.m4:133: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
85
+ dnl Although the argument is deprecated and no longer documented,
86
+ dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
87
+ dnl here make sure it is the same as any other declaration of libltdl's
88
+ dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
89
+ dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
90
+ m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
91
+ _$0()
92
+ ])
93
+ m4trace:/usr/local/share/aclocal/ltdl.m4:139: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
94
+ _LTDL_INSTALLABLE])
95
+ m4trace:/usr/local/share/aclocal/ltdl.m4:139: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
96
+ You should run autoupdate.])dnl
97
+ _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
98
+ _LTDL_INSTALLABLE])
99
+ m4trace:/usr/local/share/aclocal/ltdl.m4:216: -1- AC_DEFUN([_LT_LIBOBJ], [
100
+ m4_pattern_allow([^_LT_LIBOBJS$])
101
+ _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
102
+ ])
103
+ m4trace:/usr/local/share/aclocal/ltdl.m4:349: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
104
+ _LT_SET_OPTIONS([$0], [$1])
105
+
106
+ dnl We need to keep our own list of libobjs separate from our parent project,
107
+ dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
108
+ dnl we look for our own LIBOBJs.
109
+ m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
110
+ m4_pushdef([AC_LIBSOURCES])
111
+
112
+ dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
113
+ m4_if(_LTDL_MODE, [],
114
+ [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
115
+ m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
116
+ [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
117
+
118
+ AC_ARG_WITH([included_ltdl],
119
+ [AS_HELP_STRING([--with-included-ltdl],
120
+ [use the GNU ltdl sources included here])])
121
+
122
+ if test "x$with_included_ltdl" != xyes; then
123
+ # We are not being forced to use the included libltdl sources, so
124
+ # decide whether there is a useful installed version we can use.
125
+ AC_CHECK_HEADER([ltdl.h],
126
+ [AC_CHECK_DECL([lt_dlinterface_register],
127
+ [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
128
+ [with_included_ltdl=no],
129
+ [with_included_ltdl=yes])],
130
+ [with_included_ltdl=yes],
131
+ [AC_INCLUDES_DEFAULT
132
+ #include <ltdl.h>])],
133
+ [with_included_ltdl=yes],
134
+ [AC_INCLUDES_DEFAULT]
135
+ )
136
+ fi
137
+
138
+ dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
139
+ dnl was called yet, then for old times' sake, we assume libltdl is in an
140
+ dnl eponymous directory:
141
+ AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
142
+
143
+ AC_ARG_WITH([ltdl_include],
144
+ [AS_HELP_STRING([--with-ltdl-include=DIR],
145
+ [use the ltdl headers installed in DIR])])
146
+
147
+ if test -n "$with_ltdl_include"; then
148
+ if test -f "$with_ltdl_include/ltdl.h"; then :
149
+ else
150
+ AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include'])
151
+ fi
152
+ else
153
+ with_ltdl_include=no
154
+ fi
155
+
156
+ AC_ARG_WITH([ltdl_lib],
157
+ [AS_HELP_STRING([--with-ltdl-lib=DIR],
158
+ [use the libltdl.la installed in DIR])])
159
+
160
+ if test -n "$with_ltdl_lib"; then
161
+ if test -f "$with_ltdl_lib/libltdl.la"; then :
162
+ else
163
+ AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib'])
164
+ fi
165
+ else
166
+ with_ltdl_lib=no
167
+ fi
168
+
169
+ case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
170
+ ,yes,no,no,)
171
+ m4_case(m4_default(_LTDL_TYPE, [convenience]),
172
+ [convenience], [_LTDL_CONVENIENCE],
173
+ [installable], [_LTDL_INSTALLABLE],
174
+ [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
175
+ ;;
176
+ ,no,no,no,)
177
+ # If the included ltdl is not to be used, then use the
178
+ # preinstalled libltdl we found.
179
+ AC_DEFINE([HAVE_LTDL], [1],
180
+ [Define this if a modern libltdl is already installed])
181
+ LIBLTDL=-lltdl
182
+ LTDLDEPS=
183
+ LTDLINCL=
184
+ ;;
185
+ ,no*,no,*)
186
+ AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together])
187
+ ;;
188
+ *) with_included_ltdl=no
189
+ LIBLTDL="-L$with_ltdl_lib -lltdl"
190
+ LTDLDEPS=
191
+ LTDLINCL="-I$with_ltdl_include"
192
+ ;;
193
+ esac
194
+ INCLTDL="$LTDLINCL"
195
+
196
+ # Report our decision...
197
+ AC_MSG_CHECKING([where to find libltdl headers])
198
+ AC_MSG_RESULT([$LTDLINCL])
199
+ AC_MSG_CHECKING([where to find libltdl library])
200
+ AC_MSG_RESULT([$LIBLTDL])
201
+
202
+ _LTDL_SETUP
203
+
204
+ dnl restore autoconf definition.
205
+ m4_popdef([AC_LIBOBJ])
206
+ m4_popdef([AC_LIBSOURCES])
207
+
208
+ AC_CONFIG_COMMANDS_PRE([
209
+ _ltdl_libobjs=
210
+ _ltdl_ltlibobjs=
211
+ if test -n "$_LT_LIBOBJS"; then
212
+ # Remove the extension.
213
+ _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
214
+ for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
215
+ _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
216
+ _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
217
+ done
218
+ fi
219
+ AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
220
+ AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
221
+ ])
222
+
223
+ # Only expand once:
224
+ m4_define([LTDL_INIT])
225
+ ])
226
+ m4trace:/usr/local/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
227
+ m4trace:/usr/local/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
228
+ You should run autoupdate.])dnl
229
+ LTDL_INIT($@)])
230
+ m4trace:/usr/local/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
231
+ m4trace:/usr/local/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
232
+ You should run autoupdate.])dnl
233
+ LTDL_INIT($@)])
234
+ m4trace:/usr/local/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
235
+ m4trace:/usr/local/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
236
+ You should run autoupdate.])dnl
237
+ LTDL_INIT($@)])
238
+ m4trace:/usr/local/share/aclocal/ltdl.m4:421: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
239
+ AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
240
+ AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
241
+ AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
242
+ AC_REQUIRE([LT_LIB_DLLOAD])dnl
243
+ AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
244
+ AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
245
+ AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
246
+ AC_REQUIRE([gl_FUNC_ARGZ])dnl
247
+
248
+ m4_require([_LT_CHECK_OBJDIR])dnl
249
+ m4_require([_LT_HEADER_DLFCN])dnl
250
+ m4_require([_LT_CHECK_DLPREOPEN])dnl
251
+ m4_require([_LT_DECL_SED])dnl
252
+
253
+ dnl Don't require this, or it will be expanded earlier than the code
254
+ dnl that sets the variables it relies on:
255
+ _LT_ENABLE_INSTALL
256
+
257
+ dnl _LTDL_MODE specific code must be called at least once:
258
+ _LTDL_MODE_DISPATCH
259
+
260
+ # In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
261
+ # the user used. This is so that ltdl.h can pick up the parent projects
262
+ # config.h file, The first file in AC_CONFIG_HEADERS must contain the
263
+ # definitions required by ltdl.c.
264
+ # FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
265
+ AC_CONFIG_COMMANDS_PRE([dnl
266
+ m4_pattern_allow([^LT_CONFIG_H$])dnl
267
+ m4_ifset([AH_HEADER],
268
+ [LT_CONFIG_H=AH_HEADER],
269
+ [m4_ifset([AC_LIST_HEADERS],
270
+ [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[ ]]*,,;s,[[ :]].*$,,'`],
271
+ [])])])
272
+ AC_SUBST([LT_CONFIG_H])
273
+
274
+ AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
275
+ [], [], [AC_INCLUDES_DEFAULT])
276
+
277
+ AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
278
+ AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
279
+
280
+ m4_pattern_allow([LT_LIBEXT])dnl
281
+ AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
282
+
283
+ name=
284
+ eval "lt_libprefix=\"$libname_spec\""
285
+ m4_pattern_allow([LT_LIBPREFIX])dnl
286
+ AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
287
+
288
+ name=ltdl
289
+ eval "LTDLOPEN=\"$libname_spec\""
290
+ AC_SUBST([LTDLOPEN])
291
+ ])
292
+ m4trace:/usr/local/share/aclocal/ltdl.m4:539: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
293
+ AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
294
+ [lt_cv_sys_dlopen_deplibs],
295
+ [# PORTME does your system automatically load deplibs for dlopen?
296
+ # or its logical equivalent (e.g. shl_load for HP-UX < 11)
297
+ # For now, we just catch OSes we know something about -- in the
298
+ # future, we'll try test this programmatically.
299
+ lt_cv_sys_dlopen_deplibs=unknown
300
+ case $host_os in
301
+ aix3*|aix4.1.*|aix4.2.*)
302
+ # Unknown whether this is true for these versions of AIX, but
303
+ # we want this `case' here to explicitly catch those versions.
304
+ lt_cv_sys_dlopen_deplibs=unknown
305
+ ;;
306
+ aix[[4-9]]*)
307
+ lt_cv_sys_dlopen_deplibs=yes
308
+ ;;
309
+ amigaos*)
310
+ case $host_cpu in
311
+ powerpc)
312
+ lt_cv_sys_dlopen_deplibs=no
313
+ ;;
314
+ esac
315
+ ;;
316
+ darwin*)
317
+ # Assuming the user has installed a libdl from somewhere, this is true
318
+ # If you are looking for one http://www.opendarwin.org/projects/dlcompat
319
+ lt_cv_sys_dlopen_deplibs=yes
320
+ ;;
321
+ freebsd* | dragonfly*)
322
+ lt_cv_sys_dlopen_deplibs=yes
323
+ ;;
324
+ gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
325
+ # GNU and its variants, using gnu ld.so (Glibc)
326
+ lt_cv_sys_dlopen_deplibs=yes
327
+ ;;
328
+ hpux10*|hpux11*)
329
+ lt_cv_sys_dlopen_deplibs=yes
330
+ ;;
331
+ interix*)
332
+ lt_cv_sys_dlopen_deplibs=yes
333
+ ;;
334
+ irix[[12345]]*|irix6.[[01]]*)
335
+ # Catch all versions of IRIX before 6.2, and indicate that we don't
336
+ # know how it worked for any of those versions.
337
+ lt_cv_sys_dlopen_deplibs=unknown
338
+ ;;
339
+ irix*)
340
+ # The case above catches anything before 6.2, and it's known that
341
+ # at 6.2 and later dlopen does load deplibs.
342
+ lt_cv_sys_dlopen_deplibs=yes
343
+ ;;
344
+ netbsd*)
345
+ lt_cv_sys_dlopen_deplibs=yes
346
+ ;;
347
+ openbsd*)
348
+ lt_cv_sys_dlopen_deplibs=yes
349
+ ;;
350
+ osf[[1234]]*)
351
+ # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
352
+ # it did *not* use an RPATH in a shared library to find objects the
353
+ # library depends on, so we explicitly say `no'.
354
+ lt_cv_sys_dlopen_deplibs=no
355
+ ;;
356
+ osf5.0|osf5.0a|osf5.1)
357
+ # dlopen *does* load deplibs and with the right loader patch applied
358
+ # it even uses RPATH in a shared library to search for shared objects
359
+ # that the library depends on, but there's no easy way to know if that
360
+ # patch is installed. Since this is the case, all we can really
361
+ # say is unknown -- it depends on the patch being installed. If
362
+ # it is, this changes to `yes'. Without it, it would be `no'.
363
+ lt_cv_sys_dlopen_deplibs=unknown
364
+ ;;
365
+ osf*)
366
+ # the two cases above should catch all versions of osf <= 5.1. Read
367
+ # the comments above for what we know about them.
368
+ # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
369
+ # is used to find them so we can finally say `yes'.
370
+ lt_cv_sys_dlopen_deplibs=yes
371
+ ;;
372
+ qnx*)
373
+ lt_cv_sys_dlopen_deplibs=yes
374
+ ;;
375
+ solaris*)
376
+ lt_cv_sys_dlopen_deplibs=yes
377
+ ;;
378
+ sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
379
+ libltdl_cv_sys_dlopen_deplibs=yes
380
+ ;;
381
+ esac
382
+ ])
383
+ if test "$lt_cv_sys_dlopen_deplibs" != yes; then
384
+ AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
385
+ [Define if the OS needs help to load dependent libraries for dlopen().])
386
+ fi
387
+ ])
388
+ m4trace:/usr/local/share/aclocal/ltdl.m4:542: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
389
+ m4trace:/usr/local/share/aclocal/ltdl.m4:542: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
390
+ You should run autoupdate.])dnl
391
+ m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
392
+ m4trace:/usr/local/share/aclocal/ltdl.m4:569: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
393
+ AC_CACHE_CHECK([which extension is used for runtime loadable modules],
394
+ [libltdl_cv_shlibext],
395
+ [
396
+ module=yes
397
+ eval libltdl_cv_shlibext=$shrext_cmds
398
+ module=no
399
+ eval libltdl_cv_shrext=$shrext_cmds
400
+ ])
401
+ if test -n "$libltdl_cv_shlibext"; then
402
+ m4_pattern_allow([LT_MODULE_EXT])dnl
403
+ AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
404
+ [Define to the extension used for runtime loadable modules, say, ".so".])
405
+ fi
406
+ if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then
407
+ m4_pattern_allow([LT_SHARED_EXT])dnl
408
+ AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"],
409
+ [Define to the shared library suffix, say, ".dylib".])
410
+ fi
411
+ ])
412
+ m4trace:/usr/local/share/aclocal/ltdl.m4:572: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
413
+ m4trace:/usr/local/share/aclocal/ltdl.m4:572: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
414
+ You should run autoupdate.])dnl
415
+ m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
416
+ m4trace:/usr/local/share/aclocal/ltdl.m4:588: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
417
+ AC_CACHE_CHECK([which variable specifies run-time module search path],
418
+ [lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"])
419
+ if test -n "$lt_cv_module_path_var"; then
420
+ m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
421
+ AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
422
+ [Define to the name of the environment variable that determines the run-time module search path.])
423
+ fi
424
+ ])
425
+ m4trace:/usr/local/share/aclocal/ltdl.m4:591: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
426
+ m4trace:/usr/local/share/aclocal/ltdl.m4:591: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
427
+ You should run autoupdate.])dnl
428
+ m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
429
+ m4trace:/usr/local/share/aclocal/ltdl.m4:616: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
430
+ AC_CACHE_CHECK([for the default library search path],
431
+ [lt_cv_sys_dlsearch_path],
432
+ [lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"])
433
+ if test -n "$lt_cv_sys_dlsearch_path"; then
434
+ sys_dlsearch_path=
435
+ for dir in $lt_cv_sys_dlsearch_path; do
436
+ if test -z "$sys_dlsearch_path"; then
437
+ sys_dlsearch_path="$dir"
438
+ else
439
+ sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir"
440
+ fi
441
+ done
442
+ m4_pattern_allow([LT_DLSEARCH_PATH])dnl
443
+ AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
444
+ [Define to the system default library search path.])
445
+ fi
446
+ ])
447
+ m4trace:/usr/local/share/aclocal/ltdl.m4:619: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
448
+ m4trace:/usr/local/share/aclocal/ltdl.m4:619: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
449
+ You should run autoupdate.])dnl
450
+ m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
451
+ m4trace:/usr/local/share/aclocal/ltdl.m4:735: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
452
+ LT_DLLOADERS=
453
+ AC_SUBST([LT_DLLOADERS])
454
+
455
+ AC_LANG_PUSH([C])
456
+
457
+ LIBADD_DLOPEN=
458
+ AC_SEARCH_LIBS([dlopen], [dl],
459
+ [AC_DEFINE([HAVE_LIBDL], [1],
460
+ [Define if you have the libdl library or equivalent.])
461
+ if test "$ac_cv_search_dlopen" != "none required" ; then
462
+ LIBADD_DLOPEN="-ldl"
463
+ fi
464
+ libltdl_cv_lib_dl_dlopen="yes"
465
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
466
+ [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
467
+ # include <dlfcn.h>
468
+ #endif
469
+ ]], [[dlopen(0, 0);]])],
470
+ [AC_DEFINE([HAVE_LIBDL], [1],
471
+ [Define if you have the libdl library or equivalent.])
472
+ libltdl_cv_func_dlopen="yes"
473
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
474
+ [AC_CHECK_LIB([svld], [dlopen],
475
+ [AC_DEFINE([HAVE_LIBDL], [1],
476
+ [Define if you have the libdl library or equivalent.])
477
+ LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes"
478
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
479
+ if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes
480
+ then
481
+ lt_save_LIBS="$LIBS"
482
+ LIBS="$LIBS $LIBADD_DLOPEN"
483
+ AC_CHECK_FUNCS([dlerror])
484
+ LIBS="$lt_save_LIBS"
485
+ fi
486
+ AC_SUBST([LIBADD_DLOPEN])
487
+
488
+ LIBADD_SHL_LOAD=
489
+ AC_CHECK_FUNC([shl_load],
490
+ [AC_DEFINE([HAVE_SHL_LOAD], [1],
491
+ [Define if you have the shl_load function.])
492
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
493
+ [AC_CHECK_LIB([dld], [shl_load],
494
+ [AC_DEFINE([HAVE_SHL_LOAD], [1],
495
+ [Define if you have the shl_load function.])
496
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
497
+ LIBADD_SHL_LOAD="-ldld"])])
498
+ AC_SUBST([LIBADD_SHL_LOAD])
499
+
500
+ case $host_os in
501
+ darwin[[1567]].*)
502
+ # We only want this for pre-Mac OS X 10.4.
503
+ AC_CHECK_FUNC([_dyld_func_lookup],
504
+ [AC_DEFINE([HAVE_DYLD], [1],
505
+ [Define if you have the _dyld_func_lookup function.])
506
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
507
+ ;;
508
+ beos*)
509
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
510
+ ;;
511
+ cygwin* | mingw* | os2* | pw32*)
512
+ AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
513
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
514
+ ;;
515
+ esac
516
+
517
+ AC_CHECK_LIB([dld], [dld_link],
518
+ [AC_DEFINE([HAVE_DLD], [1],
519
+ [Define if you have the GNU dld library.])
520
+ LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
521
+ AC_SUBST([LIBADD_DLD_LINK])
522
+
523
+ m4_pattern_allow([^LT_DLPREOPEN$])
524
+ LT_DLPREOPEN=
525
+ if test -n "$LT_DLLOADERS"
526
+ then
527
+ for lt_loader in $LT_DLLOADERS; do
528
+ LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
529
+ done
530
+ AC_DEFINE([HAVE_LIBDLLOADER], [1],
531
+ [Define if libdlloader will be built on this platform])
532
+ fi
533
+ AC_SUBST([LT_DLPREOPEN])
534
+
535
+ dnl This isn't used anymore, but set it for backwards compatibility
536
+ LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
537
+ AC_SUBST([LIBADD_DL])
538
+
539
+ AC_LANG_POP
540
+ ])
541
+ m4trace:/usr/local/share/aclocal/ltdl.m4:738: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
542
+ m4trace:/usr/local/share/aclocal/ltdl.m4:738: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
543
+ You should run autoupdate.])dnl
544
+ m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
545
+ m4trace:/usr/local/share/aclocal/ltdl.m4:780: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
546
+ AC_CACHE_CHECK([for _ prefix in compiled symbols],
547
+ [lt_cv_sys_symbol_underscore],
548
+ [lt_cv_sys_symbol_underscore=no
549
+ cat > conftest.$ac_ext <<_LT_EOF
550
+ void nm_test_func(){}
551
+ int main(){nm_test_func;return 0;}
552
+ _LT_EOF
553
+ if AC_TRY_EVAL(ac_compile); then
554
+ # Now try to grab the symbols.
555
+ ac_nlist=conftest.nm
556
+ if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
557
+ # See whether the symbols have a leading underscore.
558
+ if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
559
+ lt_cv_sys_symbol_underscore=yes
560
+ else
561
+ if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
562
+ :
563
+ else
564
+ echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
565
+ fi
566
+ fi
567
+ else
568
+ echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
569
+ fi
570
+ else
571
+ echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
572
+ cat conftest.c >&AS_MESSAGE_LOG_FD
573
+ fi
574
+ rm -rf conftest*
575
+ ])
576
+ sys_symbol_underscore=$lt_cv_sys_symbol_underscore
577
+ AC_SUBST([sys_symbol_underscore])
578
+ ])
579
+ m4trace:/usr/local/share/aclocal/ltdl.m4:783: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
580
+ m4trace:/usr/local/share/aclocal/ltdl.m4:783: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
581
+ You should run autoupdate.])dnl
582
+ m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
583
+ m4trace:/usr/local/share/aclocal/ltdl.m4:812: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
584
+ if test x"$lt_cv_sys_symbol_underscore" = xyes; then
585
+ if test x"$libltdl_cv_func_dlopen" = xyes ||
586
+ test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then
587
+ AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
588
+ [libltdl_cv_need_uscore],
589
+ [libltdl_cv_need_uscore=unknown
590
+ save_LIBS="$LIBS"
591
+ LIBS="$LIBS $LIBADD_DLOPEN"
592
+ _LT_TRY_DLOPEN_SELF(
593
+ [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes],
594
+ [], [libltdl_cv_need_uscore=cross])
595
+ LIBS="$save_LIBS"
596
+ ])
597
+ fi
598
+ fi
599
+
600
+ if test x"$libltdl_cv_need_uscore" = xyes; then
601
+ AC_DEFINE([NEED_USCORE], [1],
602
+ [Define if dlsym() requires a leading underscore in symbol names.])
603
+ fi
604
+ ])
605
+ m4trace:/usr/local/share/aclocal/ltdl.m4:815: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
606
+ m4trace:/usr/local/share/aclocal/ltdl.m4:815: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
607
+ You should run autoupdate.])dnl
608
+ m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
609
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/amversion.m4:20: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.14'
610
+ dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
611
+ dnl require some minimum version. Point them to the right macro.
612
+ m4_if([$1], [1.14.1], [],
613
+ [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
614
+ ])
615
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/amversion.m4:37: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.14.1])dnl
616
+ m4_ifndef([AC_AUTOCONF_VERSION],
617
+ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
618
+ _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
619
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/auxdir.m4:52: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
620
+ AC_PREREQ([2.50])dnl
621
+ # expand $ac_aux_dir to an absolute path
622
+ am_aux_dir=`cd $ac_aux_dir && pwd`
623
+ ])
624
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/cond.m4:32: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
625
+ m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
626
+ [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
627
+ AC_SUBST([$1_TRUE])dnl
628
+ AC_SUBST([$1_FALSE])dnl
629
+ _AM_SUBST_NOTMAKE([$1_TRUE])dnl
630
+ _AM_SUBST_NOTMAKE([$1_FALSE])dnl
631
+ m4_define([_AM_COND_VALUE_$1], [$2])dnl
632
+ if $2; then
633
+ $1_TRUE=
634
+ $1_FALSE='#'
635
+ else
636
+ $1_TRUE='#'
637
+ $1_FALSE=
638
+ fi
639
+ AC_CONFIG_COMMANDS_PRE(
640
+ [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
641
+ AC_MSG_ERROR([[conditional "$1" was never defined.
642
+ Usually this means the macro was only invoked conditionally.]])
643
+ fi])])
644
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/depend.m4:156: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
645
+ AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
646
+ AC_REQUIRE([AM_MAKE_INCLUDE])dnl
647
+ AC_REQUIRE([AM_DEP_TRACK])dnl
648
+
649
+ m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
650
+ [$1], [CXX], [depcc="$CXX" am_compiler_list=],
651
+ [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
652
+ [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
653
+ [$1], [UPC], [depcc="$UPC" am_compiler_list=],
654
+ [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
655
+ [depcc="$$1" am_compiler_list=])
656
+
657
+ AC_CACHE_CHECK([dependency style of $depcc],
658
+ [am_cv_$1_dependencies_compiler_type],
659
+ [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
660
+ # We make a subdir and do the tests there. Otherwise we can end up
661
+ # making bogus files that we don't know about and never remove. For
662
+ # instance it was reported that on HP-UX the gcc test will end up
663
+ # making a dummy file named 'D' -- because '-MD' means "put the output
664
+ # in D".
665
+ rm -rf conftest.dir
666
+ mkdir conftest.dir
667
+ # Copy depcomp to subdir because otherwise we won't find it if we're
668
+ # using a relative directory.
669
+ cp "$am_depcomp" conftest.dir
670
+ cd conftest.dir
671
+ # We will build objects and dependencies in a subdirectory because
672
+ # it helps to detect inapplicable dependency modes. For instance
673
+ # both Tru64's cc and ICC support -MD to output dependencies as a
674
+ # side effect of compilation, but ICC will put the dependencies in
675
+ # the current directory while Tru64 will put them in the object
676
+ # directory.
677
+ mkdir sub
678
+
679
+ am_cv_$1_dependencies_compiler_type=none
680
+ if test "$am_compiler_list" = ""; then
681
+ am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
682
+ fi
683
+ am__universal=false
684
+ m4_case([$1], [CC],
685
+ [case " $depcc " in #(
686
+ *\ -arch\ *\ -arch\ *) am__universal=true ;;
687
+ esac],
688
+ [CXX],
689
+ [case " $depcc " in #(
690
+ *\ -arch\ *\ -arch\ *) am__universal=true ;;
691
+ esac])
692
+
693
+ for depmode in $am_compiler_list; do
694
+ # Setup a source with many dependencies, because some compilers
695
+ # like to wrap large dependency lists on column 80 (with \), and
696
+ # we should not choose a depcomp mode which is confused by this.
697
+ #
698
+ # We need to recreate these files for each test, as the compiler may
699
+ # overwrite some of them when testing with obscure command lines.
700
+ # This happens at least with the AIX C compiler.
701
+ : > sub/conftest.c
702
+ for i in 1 2 3 4 5 6; do
703
+ echo '#include "conftst'$i'.h"' >> sub/conftest.c
704
+ # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
705
+ # Solaris 10 /bin/sh.
706
+ echo '/* dummy */' > sub/conftst$i.h
707
+ done
708
+ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
709
+
710
+ # We check with '-c' and '-o' for the sake of the "dashmstdout"
711
+ # mode. It turns out that the SunPro C++ compiler does not properly
712
+ # handle '-M -o', and we need to detect this. Also, some Intel
713
+ # versions had trouble with output in subdirs.
714
+ am__obj=sub/conftest.${OBJEXT-o}
715
+ am__minus_obj="-o $am__obj"
716
+ case $depmode in
717
+ gcc)
718
+ # This depmode causes a compiler race in universal mode.
719
+ test "$am__universal" = false || continue
720
+ ;;
721
+ nosideeffect)
722
+ # After this tag, mechanisms are not by side-effect, so they'll
723
+ # only be used when explicitly requested.
724
+ if test "x$enable_dependency_tracking" = xyes; then
725
+ continue
726
+ else
727
+ break
728
+ fi
729
+ ;;
730
+ msvc7 | msvc7msys | msvisualcpp | msvcmsys)
731
+ # This compiler won't grok '-c -o', but also, the minuso test has
732
+ # not run yet. These depmodes are late enough in the game, and
733
+ # so weak that their functioning should not be impacted.
734
+ am__obj=conftest.${OBJEXT-o}
735
+ am__minus_obj=
736
+ ;;
737
+ none) break ;;
738
+ esac
739
+ if depmode=$depmode \
740
+ source=sub/conftest.c object=$am__obj \
741
+ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
742
+ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
743
+ >/dev/null 2>conftest.err &&
744
+ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
745
+ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
746
+ grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
747
+ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
748
+ # icc doesn't choke on unknown options, it will just issue warnings
749
+ # or remarks (even with -Werror). So we grep stderr for any message
750
+ # that says an option was ignored or not supported.
751
+ # When given -MP, icc 7.0 and 7.1 complain thusly:
752
+ # icc: Command line warning: ignoring option '-M'; no argument required
753
+ # The diagnosis changed in icc 8.0:
754
+ # icc: Command line remark: option '-MP' not supported
755
+ if (grep 'ignoring option' conftest.err ||
756
+ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
757
+ am_cv_$1_dependencies_compiler_type=$depmode
758
+ break
759
+ fi
760
+ fi
761
+ done
762
+
763
+ cd ..
764
+ rm -rf conftest.dir
765
+ else
766
+ am_cv_$1_dependencies_compiler_type=none
767
+ fi
768
+ ])
769
+ AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
770
+ AM_CONDITIONAL([am__fastdep$1], [
771
+ test "x$enable_dependency_tracking" != xno \
772
+ && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
773
+ ])
774
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/depend.m4:166: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
775
+ AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
776
+ ])
777
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/depend.m4:189: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
778
+ AS_HELP_STRING(
779
+ [--enable-dependency-tracking],
780
+ [do not reject slow dependency extractors])
781
+ AS_HELP_STRING(
782
+ [--disable-dependency-tracking],
783
+ [speeds up one-time build])])
784
+ if test "x$enable_dependency_tracking" != xno; then
785
+ am_depcomp="$ac_aux_dir/depcomp"
786
+ AMDEPBACKSLASH='\'
787
+ am__nodep='_no'
788
+ fi
789
+ AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
790
+ AC_SUBST([AMDEPBACKSLASH])dnl
791
+ _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
792
+ AC_SUBST([am__nodep])dnl
793
+ _AM_SUBST_NOTMAKE([am__nodep])dnl
794
+ ])
795
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/depout.m4:61: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
796
+ # Older Autoconf quotes --file arguments for eval, but not when files
797
+ # are listed without --file. Let's play safe and only enable the eval
798
+ # if we detect the quoting.
799
+ case $CONFIG_FILES in
800
+ *\'*) eval set x "$CONFIG_FILES" ;;
801
+ *) set x $CONFIG_FILES ;;
802
+ esac
803
+ shift
804
+ for mf
805
+ do
806
+ # Strip MF so we end up with the name of the file.
807
+ mf=`echo "$mf" | sed -e 's/:.*$//'`
808
+ # Check whether this is an Automake generated Makefile or not.
809
+ # We used to match only the files named 'Makefile.in', but
810
+ # some people rename them; so instead we look at the file content.
811
+ # Grep'ing the first line is not enough: some people post-process
812
+ # each Makefile.in and add a new line on top of each file to say so.
813
+ # Grep'ing the whole file is not good either: AIX grep has a line
814
+ # limit of 2048, but all sed's we know have understand at least 4000.
815
+ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
816
+ dirpart=`AS_DIRNAME("$mf")`
817
+ else
818
+ continue
819
+ fi
820
+ # Extract the definition of DEPDIR, am__include, and am__quote
821
+ # from the Makefile without running 'make'.
822
+ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
823
+ test -z "$DEPDIR" && continue
824
+ am__include=`sed -n 's/^am__include = //p' < "$mf"`
825
+ test -z "$am__include" && continue
826
+ am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
827
+ # Find all dependency output files, they are included files with
828
+ # $(DEPDIR) in their names. We invoke sed twice because it is the
829
+ # simplest approach to changing $(DEPDIR) to its actual value in the
830
+ # expansion.
831
+ for file in `sed -n "
832
+ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
833
+ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
834
+ # Make sure the directory exists.
835
+ test -f "$dirpart/$file" && continue
836
+ fdir=`AS_DIRNAME(["$file"])`
837
+ AS_MKDIR_P([$dirpart/$fdir])
838
+ # echo "creating $dirpart/$file"
839
+ echo '# dummy' > "$dirpart/$file"
840
+ done
841
+ done
842
+ }
843
+ ])
844
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
845
+ [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
846
+ [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
847
+ ])
848
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/init.m4:167: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
849
+ dnl Autoconf wants to disallow AM_ names. We explicitly allow
850
+ dnl the ones we care about.
851
+ m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
852
+ AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
853
+ AC_REQUIRE([AC_PROG_INSTALL])dnl
854
+ if test "`cd $srcdir && pwd`" != "`pwd`"; then
855
+ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
856
+ # is not polluted with repeated "-I."
857
+ AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
858
+ # test to see if srcdir already configured
859
+ if test -f $srcdir/config.status; then
860
+ AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
861
+ fi
862
+ fi
863
+
864
+ # test whether we have cygpath
865
+ if test -z "$CYGPATH_W"; then
866
+ if (cygpath --version) >/dev/null 2>/dev/null; then
867
+ CYGPATH_W='cygpath -w'
868
+ else
869
+ CYGPATH_W=echo
870
+ fi
871
+ fi
872
+ AC_SUBST([CYGPATH_W])
873
+
874
+ # Define the identity of the package.
875
+ dnl Distinguish between old-style and new-style calls.
876
+ m4_ifval([$2],
877
+ [AC_DIAGNOSE([obsolete],
878
+ [$0: two- and three-arguments forms are deprecated.])
879
+ m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
880
+ AC_SUBST([PACKAGE], [$1])dnl
881
+ AC_SUBST([VERSION], [$2])],
882
+ [_AM_SET_OPTIONS([$1])dnl
883
+ dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
884
+ m4_if(
885
+ m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
886
+ [ok:ok],,
887
+ [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
888
+ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
889
+ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
890
+
891
+ _AM_IF_OPTION([no-define],,
892
+ [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
893
+ AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
894
+
895
+ # Some tools Automake needs.
896
+ AC_REQUIRE([AM_SANITY_CHECK])dnl
897
+ AC_REQUIRE([AC_ARG_PROGRAM])dnl
898
+ AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
899
+ AM_MISSING_PROG([AUTOCONF], [autoconf])
900
+ AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
901
+ AM_MISSING_PROG([AUTOHEADER], [autoheader])
902
+ AM_MISSING_PROG([MAKEINFO], [makeinfo])
903
+ AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
904
+ AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
905
+ AC_REQUIRE([AC_PROG_MKDIR_P])dnl
906
+ # For better backward compatibility. To be removed once Automake 1.9.x
907
+ # dies out for good. For more background, see:
908
+ # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
909
+ # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
910
+ AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
911
+ # We need awk for the "check" target. The system "awk" is bad on
912
+ # some platforms.
913
+ AC_REQUIRE([AC_PROG_AWK])dnl
914
+ AC_REQUIRE([AC_PROG_MAKE_SET])dnl
915
+ AC_REQUIRE([AM_SET_LEADING_DOT])dnl
916
+ _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
917
+ [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
918
+ [_AM_PROG_TAR([v7])])])
919
+ _AM_IF_OPTION([no-dependencies],,
920
+ [AC_PROVIDE_IFELSE([AC_PROG_CC],
921
+ [_AM_DEPENDENCIES([CC])],
922
+ [m4_define([AC_PROG_CC],
923
+ m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
924
+ AC_PROVIDE_IFELSE([AC_PROG_CXX],
925
+ [_AM_DEPENDENCIES([CXX])],
926
+ [m4_define([AC_PROG_CXX],
927
+ m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
928
+ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
929
+ [_AM_DEPENDENCIES([OBJC])],
930
+ [m4_define([AC_PROG_OBJC],
931
+ m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
932
+ AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
933
+ [_AM_DEPENDENCIES([OBJCXX])],
934
+ [m4_define([AC_PROG_OBJCXX],
935
+ m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
936
+ ])
937
+ AC_REQUIRE([AM_SILENT_RULES])dnl
938
+ dnl The testsuite driver may need to know about EXEEXT, so add the
939
+ dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
940
+ dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
941
+ AC_CONFIG_COMMANDS_PRE(dnl
942
+ [m4_provide_if([_AM_COMPILER_EXEEXT],
943
+ [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
944
+
945
+ # POSIX will say in a future version that running "rm -f" with no argument
946
+ # is OK; and we want to be able to make that assumption in our Makefile
947
+ # recipes. So use an aggressive probe to check that the usage we want is
948
+ # actually supported "in the wild" to an acceptable degree.
949
+ # See automake bug#10828.
950
+ # To make any issue more visible, cause the running configure to be aborted
951
+ # by default if the 'rm' program in use doesn't match our expectations; the
952
+ # user can still override this though.
953
+ if rm -f && rm -fr && rm -rf; then : OK; else
954
+ cat >&2 <<'END'
955
+ Oops!
956
+
957
+ Your 'rm' program seems unable to run without file operands specified
958
+ on the command line, even when the '-f' option is present. This is contrary
959
+ to the behaviour of most rm programs out there, and not conforming with
960
+ the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
961
+
962
+ Please tell bug-automake@gnu.org about your system, including the value
963
+ of your $PATH and any error possibly output before this message. This
964
+ can help us improve future automake versions.
965
+
966
+ END
967
+ if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
968
+ echo 'Configuration will proceed anyway, since you have set the' >&2
969
+ echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
970
+ echo >&2
971
+ else
972
+ cat >&2 <<'END'
973
+ Aborting the configuration process, to ensure you take notice of the issue.
974
+
975
+ You can download and install GNU coreutils to get an 'rm' implementation
976
+ that behaves properly: <http://www.gnu.org/software/coreutils/>.
977
+
978
+ If you want to complete the configuration process using your problematic
979
+ 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
980
+ to "yes", and re-run configure.
981
+
982
+ END
983
+ AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
984
+ fi
985
+ fi])
986
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/init.m4:194: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
987
+ _am_arg=$1
988
+ _am_stamp_count=1
989
+ for _am_header in $config_headers :; do
990
+ case $_am_header in
991
+ $_am_arg | $_am_arg:* )
992
+ break ;;
993
+ * )
994
+ _am_stamp_count=`expr $_am_stamp_count + 1` ;;
995
+ esac
996
+ done
997
+ echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
998
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/install-sh.m4:21: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
999
+ if test x"${install_sh}" != xset; then
1000
+ case $am_aux_dir in
1001
+ *\ * | *\ *)
1002
+ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
1003
+ *)
1004
+ install_sh="\${SHELL} $am_aux_dir/install-sh"
1005
+ esac
1006
+ fi
1007
+ AC_SUBST([install_sh])])
1008
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/lead-dot.m4:19: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
1009
+ mkdir .tst 2>/dev/null
1010
+ if test -d .tst; then
1011
+ am__leading_dot=.
1012
+ else
1013
+ am__leading_dot=_
1014
+ fi
1015
+ rmdir .tst 2>/dev/null
1016
+ AC_SUBST([am__leading_dot])])
1017
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/make.m4:49: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
1018
+ cat > confinc << 'END'
1019
+ am__doit:
1020
+ @echo this is the am__doit target
1021
+ .PHONY: am__doit
1022
+ END
1023
+ # If we don't find an include directive, just comment out the code.
1024
+ AC_MSG_CHECKING([for style of include used by $am_make])
1025
+ am__include="#"
1026
+ am__quote=
1027
+ _am_result=none
1028
+ # First try GNU make style include.
1029
+ echo "include confinc" > confmf
1030
+ # Ignore all kinds of additional output from 'make'.
1031
+ case `$am_make -s -f confmf 2> /dev/null` in #(
1032
+ *the\ am__doit\ target*)
1033
+ am__include=include
1034
+ am__quote=
1035
+ _am_result=GNU
1036
+ ;;
1037
+ esac
1038
+ # Now try BSD make style include.
1039
+ if test "$am__include" = "#"; then
1040
+ echo '.include "confinc"' > confmf
1041
+ case `$am_make -s -f confmf 2> /dev/null` in #(
1042
+ *the\ am__doit\ target*)
1043
+ am__include=.include
1044
+ am__quote="\""
1045
+ _am_result=BSD
1046
+ ;;
1047
+ esac
1048
+ fi
1049
+ AC_SUBST([am__include])
1050
+ AC_SUBST([am__quote])
1051
+ AC_MSG_RESULT([$_am_result])
1052
+ rm -f confinc confmf
1053
+ ])
1054
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
1055
+ $1=${$1-"${am_missing_run}$2"}
1056
+ AC_SUBST($1)])
1057
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/missing.m4:38: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1058
+ AC_REQUIRE_AUX_FILE([missing])dnl
1059
+ if test x"${MISSING+set}" != xset; then
1060
+ case $am_aux_dir in
1061
+ *\ * | *\ *)
1062
+ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
1063
+ *)
1064
+ MISSING="\${SHELL} $am_aux_dir/missing" ;;
1065
+ esac
1066
+ fi
1067
+ # Use eval to expand $SHELL
1068
+ if eval "$MISSING --is-lightweight"; then
1069
+ am_missing_run="$MISSING "
1070
+ else
1071
+ am_missing_run=
1072
+ AC_MSG_WARN(['missing' script is too old or missing])
1073
+ fi
1074
+ ])
1075
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/options.m4:12: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1076
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/options.m4:18: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
1077
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/options.m4:24: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1078
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/options.m4:30: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1079
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/prog-cc-c-o.m4:44: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1080
+ AC_REQUIRE_AUX_FILE([compile])dnl
1081
+ AC_LANG_PUSH([C])dnl
1082
+ AC_CACHE_CHECK(
1083
+ [whether $CC understands -c and -o together],
1084
+ [am_cv_prog_cc_c_o],
1085
+ [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
1086
+ # Make sure it works both with $CC and with simple cc.
1087
+ # Following AC_PROG_CC_C_O, we do the test twice because some
1088
+ # compilers refuse to overwrite an existing .o file with -o,
1089
+ # though they will create one.
1090
+ am_cv_prog_cc_c_o=yes
1091
+ for am_i in 1 2; do
1092
+ if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
1093
+ && test -f conftest2.$ac_objext; then
1094
+ : OK
1095
+ else
1096
+ am_cv_prog_cc_c_o=no
1097
+ break
1098
+ fi
1099
+ done
1100
+ rm -f core conftest*
1101
+ unset am_i])
1102
+ if test "$am_cv_prog_cc_c_o" != yes; then
1103
+ # Losing compiler, so override with the script.
1104
+ # FIXME: It is wrong to rewrite CC.
1105
+ # But if we don't then we get into trouble of one sort or another.
1106
+ # A longer-term fix would be to have automake use am__CC in this case,
1107
+ # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
1108
+ CC="$am_aux_dir/compile $CC"
1109
+ fi
1110
+ AC_LANG_POP([C])])
1111
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
1112
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/runlog.m4:17: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
1113
+ ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
1114
+ ac_status=$?
1115
+ echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1116
+ (exit $ac_status); }])
1117
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/sanity.m4:82: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
1118
+ # Reject unsafe characters in $srcdir or the absolute working directory
1119
+ # name. Accept space and tab only in the latter.
1120
+ am_lf='
1121
+ '
1122
+ case `pwd` in
1123
+ *[[\\\"\#\$\&\'\`$am_lf]]*)
1124
+ AC_MSG_ERROR([unsafe absolute working directory name]);;
1125
+ esac
1126
+ case $srcdir in
1127
+ *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
1128
+ AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
1129
+ esac
1130
+
1131
+ # Do 'set' in a subshell so we don't clobber the current shell's
1132
+ # arguments. Must try -L first in case configure is actually a
1133
+ # symlink; some systems play weird games with the mod time of symlinks
1134
+ # (eg FreeBSD returns the mod time of the symlink's containing
1135
+ # directory).
1136
+ if (
1137
+ am_has_slept=no
1138
+ for am_try in 1 2; do
1139
+ echo "timestamp, slept: $am_has_slept" > conftest.file
1140
+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
1141
+ if test "$[*]" = "X"; then
1142
+ # -L didn't work.
1143
+ set X `ls -t "$srcdir/configure" conftest.file`
1144
+ fi
1145
+ if test "$[*]" != "X $srcdir/configure conftest.file" \
1146
+ && test "$[*]" != "X conftest.file $srcdir/configure"; then
1147
+
1148
+ # If neither matched, then we have a broken ls. This can happen
1149
+ # if, for instance, CONFIG_SHELL is bash and it inherits a
1150
+ # broken ls alias from the environment. This has actually
1151
+ # happened. Such a system could not be considered "sane".
1152
+ AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
1153
+ alias in your environment])
1154
+ fi
1155
+ if test "$[2]" = conftest.file || test $am_try -eq 2; then
1156
+ break
1157
+ fi
1158
+ # Just in case.
1159
+ sleep 1
1160
+ am_has_slept=yes
1161
+ done
1162
+ test "$[2]" = conftest.file
1163
+ )
1164
+ then
1165
+ # Ok.
1166
+ :
1167
+ else
1168
+ AC_MSG_ERROR([newly created file is older than distributed files!
1169
+ Check your system clock])
1170
+ fi
1171
+ AC_MSG_RESULT([yes])
1172
+ # If we didn't sleep, we still need to ensure time stamps of config.status and
1173
+ # generated files are strictly newer.
1174
+ am_sleep_pid=
1175
+ if grep 'slept: no' conftest.file >/dev/null 2>&1; then
1176
+ ( sleep 1 ) &
1177
+ am_sleep_pid=$!
1178
+ fi
1179
+ AC_CONFIG_COMMANDS_PRE(
1180
+ [AC_MSG_CHECKING([that generated files are newer than configure])
1181
+ if test -n "$am_sleep_pid"; then
1182
+ # Hide warnings about reused PIDs.
1183
+ wait $am_sleep_pid 2>/dev/null
1184
+ fi
1185
+ AC_MSG_RESULT([done])])
1186
+ rm -f conftest.file
1187
+ ])
1188
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/silent.m4:60: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
1189
+ AS_HELP_STRING(
1190
+ [--enable-silent-rules],
1191
+ [less verbose build output (undo: "make V=1")])
1192
+ AS_HELP_STRING(
1193
+ [--disable-silent-rules],
1194
+ [verbose build output (undo: "make V=0")])dnl
1195
+ ])
1196
+ case $enable_silent_rules in @%:@ (((
1197
+ yes) AM_DEFAULT_VERBOSITY=0;;
1198
+ no) AM_DEFAULT_VERBOSITY=1;;
1199
+ *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1200
+ esac
1201
+ dnl
1202
+ dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
1203
+ dnl do not support nested variable expansions.
1204
+ dnl See automake bug#9928 and bug#10237.
1205
+ am_make=${MAKE-make}
1206
+ AC_CACHE_CHECK([whether $am_make supports nested variables],
1207
+ [am_cv_make_support_nested_variables],
1208
+ [if AS_ECHO([['TRUE=$(BAR$(V))
1209
+ BAR0=false
1210
+ BAR1=true
1211
+ V=1
1212
+ am__doit:
1213
+ @$(TRUE)
1214
+ .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
1215
+ am_cv_make_support_nested_variables=yes
1216
+ else
1217
+ am_cv_make_support_nested_variables=no
1218
+ fi])
1219
+ if test $am_cv_make_support_nested_variables = yes; then
1220
+ dnl Using '$V' instead of '$(V)' breaks IRIX make.
1221
+ AM_V='$(V)'
1222
+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1223
+ else
1224
+ AM_V=$AM_DEFAULT_VERBOSITY
1225
+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1226
+ fi
1227
+ AC_SUBST([AM_V])dnl
1228
+ AM_SUBST_NOTMAKE([AM_V])dnl
1229
+ AC_SUBST([AM_DEFAULT_V])dnl
1230
+ AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
1231
+ AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1232
+ AM_BACKSLASH='\'
1233
+ AC_SUBST([AM_BACKSLASH])dnl
1234
+ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1235
+ ])
1236
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/strip.m4:28: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1237
+ # Installed binaries are usually stripped using 'strip' when the user
1238
+ # run "make install-strip". However 'strip' might not be the right
1239
+ # tool to use in cross-compilation environments, therefore Automake
1240
+ # will honor the 'STRIP' environment variable to overrule this program.
1241
+ dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
1242
+ if test "$cross_compiling" != no; then
1243
+ AC_CHECK_TOOL([STRIP], [strip], :)
1244
+ fi
1245
+ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1246
+ AC_SUBST([INSTALL_STRIP_PROGRAM])])
1247
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
1248
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
1249
+ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/tar.m4:132: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
1250
+ # in the wild :-( We should find a proper way to deprecate it ...
1251
+ AC_SUBST([AMTAR], ['$${TAR-tar}'])
1252
+
1253
+ # We'll loop over all known methods to create a tar archive until one works.
1254
+ _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1255
+
1256
+ m4_if([$1], [v7],
1257
+ [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1258
+
1259
+ [m4_case([$1],
1260
+ [ustar],
1261
+ [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
1262
+ # There is notably a 21 bits limit for the UID and the GID. In fact,
1263
+ # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
1264
+ # and bug#13588).
1265
+ am_max_uid=2097151 # 2^21 - 1
1266
+ am_max_gid=$am_max_uid
1267
+ # The $UID and $GID variables are not portable, so we need to resort
1268
+ # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
1269
+ # below are definitely unexpected, so allow the users to see them
1270
+ # (that is, avoid stderr redirection).
1271
+ am_uid=`id -u || echo unknown`
1272
+ am_gid=`id -g || echo unknown`
1273
+ AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
1274
+ if test $am_uid -le $am_max_uid; then
1275
+ AC_MSG_RESULT([yes])
1276
+ else
1277
+ AC_MSG_RESULT([no])
1278
+ _am_tools=none
1279
+ fi
1280
+ AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
1281
+ if test $am_gid -le $am_max_gid; then
1282
+ AC_MSG_RESULT([yes])
1283
+ else
1284
+ AC_MSG_RESULT([no])
1285
+ _am_tools=none
1286
+ fi],
1287
+
1288
+ [pax],
1289
+ [],
1290
+
1291
+ [m4_fatal([Unknown tar format])])
1292
+
1293
+ AC_MSG_CHECKING([how to create a $1 tar archive])
1294
+
1295
+ # Go ahead even if we have the value already cached. We do so because we
1296
+ # need to set the values for the 'am__tar' and 'am__untar' variables.
1297
+ _am_tools=${am_cv_prog_tar_$1-$_am_tools}
1298
+
1299
+ for _am_tool in $_am_tools; do
1300
+ case $_am_tool in
1301
+ gnutar)
1302
+ for _am_tar in tar gnutar gtar; do
1303
+ AM_RUN_LOG([$_am_tar --version]) && break
1304
+ done
1305
+ am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1306
+ am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1307
+ am__untar="$_am_tar -xf -"
1308
+ ;;
1309
+ plaintar)
1310
+ # Must skip GNU tar: if it does not support --format= it doesn't create
1311
+ # ustar tarball either.
1312
+ (tar --version) >/dev/null 2>&1 && continue
1313
+ am__tar='tar chf - "$$tardir"'
1314
+ am__tar_='tar chf - "$tardir"'
1315
+ am__untar='tar xf -'
1316
+ ;;
1317
+ pax)
1318
+ am__tar='pax -L -x $1 -w "$$tardir"'
1319
+ am__tar_='pax -L -x $1 -w "$tardir"'
1320
+ am__untar='pax -r'
1321
+ ;;
1322
+ cpio)
1323
+ am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1324
+ am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1325
+ am__untar='cpio -i -H $1 -d'
1326
+ ;;
1327
+ none)
1328
+ am__tar=false
1329
+ am__tar_=false
1330
+ am__untar=false
1331
+ ;;
1332
+ esac
1333
+
1334
+ # If the value was cached, stop now. We just wanted to have am__tar
1335
+ # and am__untar set.
1336
+ test -n "${am_cv_prog_tar_$1}" && break
1337
+
1338
+ # tar/untar a dummy directory, and stop if the command works.
1339
+ rm -rf conftest.dir
1340
+ mkdir conftest.dir
1341
+ echo GrepMe > conftest.dir/file
1342
+ AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1343
+ rm -rf conftest.dir
1344
+ if test -s conftest.tar; then
1345
+ AM_RUN_LOG([$am__untar <conftest.tar])
1346
+ AM_RUN_LOG([cat conftest.dir/file])
1347
+ grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1348
+ fi
1349
+ done
1350
+ rm -rf conftest.dir
1351
+
1352
+ AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1353
+ AC_MSG_RESULT([$am_cv_prog_tar_$1])])
1354
+
1355
+ AC_SUBST([am__tar])
1356
+ AC_SUBST([am__untar])
1357
+ ])
1358
+ m4trace:m4/libtool.m4:104: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
1359
+ AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
1360
+ AC_BEFORE([$0], [LT_LANG])dnl
1361
+ AC_BEFORE([$0], [LT_OUTPUT])dnl
1362
+ AC_BEFORE([$0], [LTDL_INIT])dnl
1363
+ m4_require([_LT_CHECK_BUILDDIR])dnl
1364
+
1365
+ dnl Autoconf doesn't catch unexpanded LT_ macros by default:
1366
+ m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
1367
+ m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
1368
+ dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
1369
+ dnl unless we require an AC_DEFUNed macro:
1370
+ AC_REQUIRE([LTOPTIONS_VERSION])dnl
1371
+ AC_REQUIRE([LTSUGAR_VERSION])dnl
1372
+ AC_REQUIRE([LTVERSION_VERSION])dnl
1373
+ AC_REQUIRE([LTOBSOLETE_VERSION])dnl
1374
+ m4_require([_LT_PROG_LTMAIN])dnl
1375
+
1376
+ _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
1377
+
1378
+ dnl Parse OPTIONS
1379
+ _LT_SET_OPTIONS([$0], [$1])
1380
+
1381
+ # This can be used to rebuild libtool when needed
1382
+ LIBTOOL_DEPS="$ltmain"
1383
+
1384
+ # Always use our own libtool.
1385
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
1386
+ AC_SUBST(LIBTOOL)dnl
1387
+
1388
+ _LT_SETUP
1389
+
1390
+ # Only expand once:
1391
+ m4_define([LT_INIT])
1392
+ ])
1393
+ m4trace:m4/libtool.m4:107: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
1394
+ m4trace:m4/libtool.m4:107: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
1395
+ You should run autoupdate.])dnl
1396
+ m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
1397
+ m4trace:m4/libtool.m4:108: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
1398
+ m4trace:m4/libtool.m4:108: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
1399
+ You should run autoupdate.])dnl
1400
+ m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
1401
+ m4trace:m4/libtool.m4:694: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
1402
+ AC_MSG_NOTICE([creating $CONFIG_LT])
1403
+ _LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
1404
+ [# Run this file to recreate a libtool stub with the current configuration.])
1405
+
1406
+ cat >>"$CONFIG_LT" <<\_LTEOF
1407
+ lt_cl_silent=false
1408
+ exec AS_MESSAGE_LOG_FD>>config.log
1409
+ {
1410
+ echo
1411
+ AS_BOX([Running $as_me.])
1412
+ } >&AS_MESSAGE_LOG_FD
1413
+
1414
+ lt_cl_help="\
1415
+ \`$as_me' creates a local libtool stub from the current configuration,
1416
+ for use in further configure time tests before the real libtool is
1417
+ generated.
1418
+
1419
+ Usage: $[0] [[OPTIONS]]
1420
+
1421
+ -h, --help print this help, then exit
1422
+ -V, --version print version number, then exit
1423
+ -q, --quiet do not print progress messages
1424
+ -d, --debug don't remove temporary files
1425
+
1426
+ Report bugs to <bug-libtool@gnu.org>."
1427
+
1428
+ lt_cl_version="\
1429
+ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
1430
+ m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
1431
+ configured by $[0], generated by m4_PACKAGE_STRING.
1432
+
1433
+ Copyright (C) 2011 Free Software Foundation, Inc.
1434
+ This config.lt script is free software; the Free Software Foundation
1435
+ gives unlimited permision to copy, distribute and modify it."
1436
+
1437
+ while test $[#] != 0
1438
+ do
1439
+ case $[1] in
1440
+ --version | --v* | -V )
1441
+ echo "$lt_cl_version"; exit 0 ;;
1442
+ --help | --h* | -h )
1443
+ echo "$lt_cl_help"; exit 0 ;;
1444
+ --debug | --d* | -d )
1445
+ debug=: ;;
1446
+ --quiet | --q* | --silent | --s* | -q )
1447
+ lt_cl_silent=: ;;
1448
+
1449
+ -*) AC_MSG_ERROR([unrecognized option: $[1]
1450
+ Try \`$[0] --help' for more information.]) ;;
1451
+
1452
+ *) AC_MSG_ERROR([unrecognized argument: $[1]
1453
+ Try \`$[0] --help' for more information.]) ;;
1454
+ esac
1455
+ shift
1456
+ done
1457
+
1458
+ if $lt_cl_silent; then
1459
+ exec AS_MESSAGE_FD>/dev/null
1460
+ fi
1461
+ _LTEOF
1462
+
1463
+ cat >>"$CONFIG_LT" <<_LTEOF
1464
+ _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
1465
+ _LTEOF
1466
+
1467
+ cat >>"$CONFIG_LT" <<\_LTEOF
1468
+ AC_MSG_NOTICE([creating $ofile])
1469
+ _LT_OUTPUT_LIBTOOL_COMMANDS
1470
+ AS_EXIT(0)
1471
+ _LTEOF
1472
+ chmod +x "$CONFIG_LT"
1473
+
1474
+ # configure is writing to config.log, but config.lt does its own redirection,
1475
+ # appending to config.log, which fails on DOS, as config.log is still kept
1476
+ # open by configure. Here we exec the FD to /dev/null, effectively closing
1477
+ # config.log, so it can be properly (re)opened and appended to by config.lt.
1478
+ lt_cl_success=:
1479
+ test "$silent" = yes &&
1480
+ lt_config_lt_args="$lt_config_lt_args --quiet"
1481
+ exec AS_MESSAGE_LOG_FD>/dev/null
1482
+ $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
1483
+ exec AS_MESSAGE_LOG_FD>>config.log
1484
+ $lt_cl_success || AS_EXIT(1)
1485
+ ])
1486
+ m4trace:m4/libtool.m4:790: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
1487
+ m4trace:m4/libtool.m4:814: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
1488
+ m4_case([$1],
1489
+ [C], [_LT_LANG(C)],
1490
+ [C++], [_LT_LANG(CXX)],
1491
+ [Go], [_LT_LANG(GO)],
1492
+ [Java], [_LT_LANG(GCJ)],
1493
+ [Fortran 77], [_LT_LANG(F77)],
1494
+ [Fortran], [_LT_LANG(FC)],
1495
+ [Windows Resource], [_LT_LANG(RC)],
1496
+ [m4_ifdef([_LT_LANG_]$1[_CONFIG],
1497
+ [_LT_LANG($1)],
1498
+ [m4_fatal([$0: unsupported language: "$1"])])])dnl
1499
+ ])
1500
+ m4trace:m4/libtool.m4:893: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
1501
+ m4trace:m4/libtool.m4:893: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
1502
+ You should run autoupdate.])dnl
1503
+ LT_LANG(C++)])
1504
+ m4trace:m4/libtool.m4:894: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
1505
+ m4trace:m4/libtool.m4:894: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
1506
+ You should run autoupdate.])dnl
1507
+ LT_LANG(Fortran 77)])
1508
+ m4trace:m4/libtool.m4:895: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
1509
+ m4trace:m4/libtool.m4:895: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
1510
+ You should run autoupdate.])dnl
1511
+ LT_LANG(Fortran)])
1512
+ m4trace:m4/libtool.m4:896: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
1513
+ m4trace:m4/libtool.m4:896: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
1514
+ You should run autoupdate.])dnl
1515
+ LT_LANG(Java)])
1516
+ m4trace:m4/libtool.m4:897: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
1517
+ m4trace:m4/libtool.m4:897: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
1518
+ You should run autoupdate.])dnl
1519
+ LT_LANG(Windows Resource)])
1520
+ m4trace:m4/libtool.m4:1254: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
1521
+ AC_ARG_WITH([sysroot],
1522
+ [ --with-sysroot[=DIR] Search for dependent libraries within DIR
1523
+ (or the compiler's sysroot if not specified).],
1524
+ [], [with_sysroot=no])
1525
+
1526
+ dnl lt_sysroot will always be passed unquoted. We quote it here
1527
+ dnl in case the user passed a directory name.
1528
+ lt_sysroot=
1529
+ case ${with_sysroot} in #(
1530
+ yes)
1531
+ if test "$GCC" = yes; then
1532
+ lt_sysroot=`$CC --print-sysroot 2>/dev/null`
1533
+ fi
1534
+ ;; #(
1535
+ /*)
1536
+ lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
1537
+ ;; #(
1538
+ no|'')
1539
+ ;; #(
1540
+ *)
1541
+ AC_MSG_RESULT([${with_sysroot}])
1542
+ AC_MSG_ERROR([The sysroot must be an absolute path.])
1543
+ ;;
1544
+ esac
1545
+
1546
+ AC_MSG_RESULT([${lt_sysroot:-no}])
1547
+ _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
1548
+ [dependent libraries, and in which our libraries should be installed.])])
1549
+ m4trace:m4/libtool.m4:1541: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
1550
+ m4_require([_LT_DECL_SED])dnl
1551
+ AC_CACHE_CHECK([$1], [$2],
1552
+ [$2=no
1553
+ m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
1554
+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext
1555
+ lt_compiler_flag="$3"
1556
+ # Insert the option either (1) after the last *FLAGS variable, or
1557
+ # (2) before a word containing "conftest.", or (3) at the end.
1558
+ # Note that $ac_compile itself does not contain backslashes and begins
1559
+ # with a dollar sign (not a hyphen), so the echo should work correctly.
1560
+ # The option is referenced via a variable to avoid confusing sed.
1561
+ lt_compile=`echo "$ac_compile" | $SED \
1562
+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1563
+ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
1564
+ -e 's:$: $lt_compiler_flag:'`
1565
+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
1566
+ (eval "$lt_compile" 2>conftest.err)
1567
+ ac_status=$?
1568
+ cat conftest.err >&AS_MESSAGE_LOG_FD
1569
+ echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1570
+ if (exit $ac_status) && test -s "$ac_outfile"; then
1571
+ # The compiler can only warn and ignore the option if not recognized
1572
+ # So say no if there are warnings other than the usual output.
1573
+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
1574
+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
1575
+ if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
1576
+ $2=yes
1577
+ fi
1578
+ fi
1579
+ $RM conftest*
1580
+ ])
1581
+
1582
+ if test x"[$]$2" = xyes; then
1583
+ m4_if([$5], , :, [$5])
1584
+ else
1585
+ m4_if([$6], , :, [$6])
1586
+ fi
1587
+ ])
1588
+ m4trace:m4/libtool.m4:1544: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
1589
+ m4trace:m4/libtool.m4:1544: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
1590
+ You should run autoupdate.])dnl
1591
+ m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
1592
+ m4trace:m4/libtool.m4:1585: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
1593
+ m4_require([_LT_DECL_SED])dnl
1594
+ AC_CACHE_CHECK([$1], [$2],
1595
+ [$2=no
1596
+ save_LDFLAGS="$LDFLAGS"
1597
+ LDFLAGS="$LDFLAGS $3"
1598
+ echo "$lt_simple_link_test_code" > conftest.$ac_ext
1599
+ if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
1600
+ # The linker can only warn and ignore the option if not recognized
1601
+ # So say no if there are warnings
1602
+ if test -s conftest.err; then
1603
+ # Append any errors to the config.log.
1604
+ cat conftest.err 1>&AS_MESSAGE_LOG_FD
1605
+ $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
1606
+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
1607
+ if diff conftest.exp conftest.er2 >/dev/null; then
1608
+ $2=yes
1609
+ fi
1610
+ else
1611
+ $2=yes
1612
+ fi
1613
+ fi
1614
+ $RM -r conftest*
1615
+ LDFLAGS="$save_LDFLAGS"
1616
+ ])
1617
+
1618
+ if test x"[$]$2" = xyes; then
1619
+ m4_if([$4], , :, [$4])
1620
+ else
1621
+ m4_if([$5], , :, [$5])
1622
+ fi
1623
+ ])
1624
+ m4trace:m4/libtool.m4:1588: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
1625
+ m4trace:m4/libtool.m4:1588: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
1626
+ You should run autoupdate.])dnl
1627
+ m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
1628
+ m4trace:m4/libtool.m4:1730: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1629
+ # find the maximum length of command line arguments
1630
+ AC_MSG_CHECKING([the maximum length of command line arguments])
1631
+ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
1632
+ i=0
1633
+ teststring="ABCD"
1634
+
1635
+ case $build_os in
1636
+ msdosdjgpp*)
1637
+ # On DJGPP, this test can blow up pretty badly due to problems in libc
1638
+ # (any single argument exceeding 2000 bytes causes a buffer overrun
1639
+ # during glob expansion). Even if it were fixed, the result of this
1640
+ # check would be larger than it should be.
1641
+ lt_cv_sys_max_cmd_len=12288; # 12K is about right
1642
+ ;;
1643
+
1644
+ gnu*)
1645
+ # Under GNU Hurd, this test is not required because there is
1646
+ # no limit to the length of command line arguments.
1647
+ # Libtool will interpret -1 as no limit whatsoever
1648
+ lt_cv_sys_max_cmd_len=-1;
1649
+ ;;
1650
+
1651
+ cygwin* | mingw* | cegcc*)
1652
+ # On Win9x/ME, this test blows up -- it succeeds, but takes
1653
+ # about 5 minutes as the teststring grows exponentially.
1654
+ # Worse, since 9x/ME are not pre-emptively multitasking,
1655
+ # you end up with a "frozen" computer, even though with patience
1656
+ # the test eventually succeeds (with a max line length of 256k).
1657
+ # Instead, let's just punt: use the minimum linelength reported by
1658
+ # all of the supported platforms: 8192 (on NT/2K/XP).
1659
+ lt_cv_sys_max_cmd_len=8192;
1660
+ ;;
1661
+
1662
+ mint*)
1663
+ # On MiNT this can take a long time and run out of memory.
1664
+ lt_cv_sys_max_cmd_len=8192;
1665
+ ;;
1666
+
1667
+ amigaos*)
1668
+ # On AmigaOS with pdksh, this test takes hours, literally.
1669
+ # So we just punt and use a minimum line length of 8192.
1670
+ lt_cv_sys_max_cmd_len=8192;
1671
+ ;;
1672
+
1673
+ netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
1674
+ # This has been around since 386BSD, at least. Likely further.
1675
+ if test -x /sbin/sysctl; then
1676
+ lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
1677
+ elif test -x /usr/sbin/sysctl; then
1678
+ lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
1679
+ else
1680
+ lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
1681
+ fi
1682
+ # And add a safety zone
1683
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
1684
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
1685
+ ;;
1686
+
1687
+ interix*)
1688
+ # We know the value 262144 and hardcode it with a safety zone (like BSD)
1689
+ lt_cv_sys_max_cmd_len=196608
1690
+ ;;
1691
+
1692
+ os2*)
1693
+ # The test takes a long time on OS/2.
1694
+ lt_cv_sys_max_cmd_len=8192
1695
+ ;;
1696
+
1697
+ osf*)
1698
+ # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
1699
+ # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
1700
+ # nice to cause kernel panics so lets avoid the loop below.
1701
+ # First set a reasonable default.
1702
+ lt_cv_sys_max_cmd_len=16384
1703
+ #
1704
+ if test -x /sbin/sysconfig; then
1705
+ case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
1706
+ *1*) lt_cv_sys_max_cmd_len=-1 ;;
1707
+ esac
1708
+ fi
1709
+ ;;
1710
+ sco3.2v5*)
1711
+ lt_cv_sys_max_cmd_len=102400
1712
+ ;;
1713
+ sysv5* | sco5v6* | sysv4.2uw2*)
1714
+ kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
1715
+ if test -n "$kargmax"; then
1716
+ lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
1717
+ else
1718
+ lt_cv_sys_max_cmd_len=32768
1719
+ fi
1720
+ ;;
1721
+ *)
1722
+ lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
1723
+ if test -n "$lt_cv_sys_max_cmd_len"; then
1724
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
1725
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
1726
+ else
1727
+ # Make teststring a little bigger before we do anything with it.
1728
+ # a 1K string should be a reasonable start.
1729
+ for i in 1 2 3 4 5 6 7 8 ; do
1730
+ teststring=$teststring$teststring
1731
+ done
1732
+ SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
1733
+ # If test is not a shell built-in, we'll probably end up computing a
1734
+ # maximum length that is only half of the actual maximum length, but
1735
+ # we can't tell.
1736
+ while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
1737
+ = "X$teststring$teststring"; } >/dev/null 2>&1 &&
1738
+ test $i != 17 # 1/2 MB should be enough
1739
+ do
1740
+ i=`expr $i + 1`
1741
+ teststring=$teststring$teststring
1742
+ done
1743
+ # Only check the string length outside the loop.
1744
+ lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
1745
+ teststring=
1746
+ # Add a significant safety factor because C++ compilers can tack on
1747
+ # massive amounts of additional arguments before passing them to the
1748
+ # linker. It appears as though 1/2 is a usable value.
1749
+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
1750
+ fi
1751
+ ;;
1752
+ esac
1753
+ ])
1754
+ if test -n $lt_cv_sys_max_cmd_len ; then
1755
+ AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
1756
+ else
1757
+ AC_MSG_RESULT(none)
1758
+ fi
1759
+ max_cmd_len=$lt_cv_sys_max_cmd_len
1760
+ _LT_DECL([], [max_cmd_len], [0],
1761
+ [What is the maximum length of a command?])
1762
+ ])
1763
+ m4trace:m4/libtool.m4:1733: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
1764
+ m4trace:m4/libtool.m4:1733: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
1765
+ You should run autoupdate.])dnl
1766
+ m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
1767
+ m4trace:m4/libtool.m4:1958: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
1768
+ if test "x$enable_dlopen" != xyes; then
1769
+ enable_dlopen=unknown
1770
+ enable_dlopen_self=unknown
1771
+ enable_dlopen_self_static=unknown
1772
+ else
1773
+ lt_cv_dlopen=no
1774
+ lt_cv_dlopen_libs=
1775
+
1776
+ case $host_os in
1777
+ beos*)
1778
+ lt_cv_dlopen="load_add_on"
1779
+ lt_cv_dlopen_libs=
1780
+ lt_cv_dlopen_self=yes
1781
+ ;;
1782
+
1783
+ mingw* | pw32* | cegcc*)
1784
+ lt_cv_dlopen="LoadLibrary"
1785
+ lt_cv_dlopen_libs=
1786
+ ;;
1787
+
1788
+ cygwin*)
1789
+ lt_cv_dlopen="dlopen"
1790
+ lt_cv_dlopen_libs=
1791
+ ;;
1792
+
1793
+ darwin*)
1794
+ # if libdl is installed we need to link against it
1795
+ AC_CHECK_LIB([dl], [dlopen],
1796
+ [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
1797
+ lt_cv_dlopen="dyld"
1798
+ lt_cv_dlopen_libs=
1799
+ lt_cv_dlopen_self=yes
1800
+ ])
1801
+ ;;
1802
+
1803
+ *)
1804
+ AC_CHECK_FUNC([shl_load],
1805
+ [lt_cv_dlopen="shl_load"],
1806
+ [AC_CHECK_LIB([dld], [shl_load],
1807
+ [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
1808
+ [AC_CHECK_FUNC([dlopen],
1809
+ [lt_cv_dlopen="dlopen"],
1810
+ [AC_CHECK_LIB([dl], [dlopen],
1811
+ [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
1812
+ [AC_CHECK_LIB([svld], [dlopen],
1813
+ [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
1814
+ [AC_CHECK_LIB([dld], [dld_link],
1815
+ [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
1816
+ ])
1817
+ ])
1818
+ ])
1819
+ ])
1820
+ ])
1821
+ ;;
1822
+ esac
1823
+
1824
+ if test "x$lt_cv_dlopen" != xno; then
1825
+ enable_dlopen=yes
1826
+ else
1827
+ enable_dlopen=no
1828
+ fi
1829
+
1830
+ case $lt_cv_dlopen in
1831
+ dlopen)
1832
+ save_CPPFLAGS="$CPPFLAGS"
1833
+ test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
1834
+
1835
+ save_LDFLAGS="$LDFLAGS"
1836
+ wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
1837
+
1838
+ save_LIBS="$LIBS"
1839
+ LIBS="$lt_cv_dlopen_libs $LIBS"
1840
+
1841
+ AC_CACHE_CHECK([whether a program can dlopen itself],
1842
+ lt_cv_dlopen_self, [dnl
1843
+ _LT_TRY_DLOPEN_SELF(
1844
+ lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
1845
+ lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
1846
+ ])
1847
+
1848
+ if test "x$lt_cv_dlopen_self" = xyes; then
1849
+ wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
1850
+ AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
1851
+ lt_cv_dlopen_self_static, [dnl
1852
+ _LT_TRY_DLOPEN_SELF(
1853
+ lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
1854
+ lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
1855
+ ])
1856
+ fi
1857
+
1858
+ CPPFLAGS="$save_CPPFLAGS"
1859
+ LDFLAGS="$save_LDFLAGS"
1860
+ LIBS="$save_LIBS"
1861
+ ;;
1862
+ esac
1863
+
1864
+ case $lt_cv_dlopen_self in
1865
+ yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
1866
+ *) enable_dlopen_self=unknown ;;
1867
+ esac
1868
+
1869
+ case $lt_cv_dlopen_self_static in
1870
+ yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
1871
+ *) enable_dlopen_self_static=unknown ;;
1872
+ esac
1873
+ fi
1874
+ _LT_DECL([dlopen_support], [enable_dlopen], [0],
1875
+ [Whether dlopen is supported])
1876
+ _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
1877
+ [Whether dlopen of programs is supported])
1878
+ _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
1879
+ [Whether dlopen of statically linked programs is supported])
1880
+ ])
1881
+ m4trace:m4/libtool.m4:1961: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
1882
+ m4trace:m4/libtool.m4:1961: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
1883
+ You should run autoupdate.])dnl
1884
+ m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
1885
+ m4trace:m4/libtool.m4:2989: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
1886
+ AC_MSG_CHECKING([for $1])
1887
+ AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
1888
+ [case $MAGIC_CMD in
1889
+ [[\\/*] | ?:[\\/]*])
1890
+ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
1891
+ ;;
1892
+ *)
1893
+ lt_save_MAGIC_CMD="$MAGIC_CMD"
1894
+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
1895
+ dnl $ac_dummy forces splitting on constant user-supplied paths.
1896
+ dnl POSIX.2 word splitting is done only on the output of word expansions,
1897
+ dnl not every word. This closes a longstanding sh security hole.
1898
+ ac_dummy="m4_if([$2], , $PATH, [$2])"
1899
+ for ac_dir in $ac_dummy; do
1900
+ IFS="$lt_save_ifs"
1901
+ test -z "$ac_dir" && ac_dir=.
1902
+ if test -f $ac_dir/$1; then
1903
+ lt_cv_path_MAGIC_CMD="$ac_dir/$1"
1904
+ if test -n "$file_magic_test_file"; then
1905
+ case $deplibs_check_method in
1906
+ "file_magic "*)
1907
+ file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
1908
+ MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
1909
+ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
1910
+ $EGREP "$file_magic_regex" > /dev/null; then
1911
+ :
1912
+ else
1913
+ cat <<_LT_EOF 1>&2
1914
+
1915
+ *** Warning: the command libtool uses to detect shared libraries,
1916
+ *** $file_magic_cmd, produces output that libtool cannot recognize.
1917
+ *** The result is that libtool may fail to recognize shared libraries
1918
+ *** as such. This will affect the creation of libtool libraries that
1919
+ *** depend on shared libraries, but programs linked with such libtool
1920
+ *** libraries will work regardless of this problem. Nevertheless, you
1921
+ *** may want to report the problem to your system manager and/or to
1922
+ *** bug-libtool@gnu.org
1923
+
1924
+ _LT_EOF
1925
+ fi ;;
1926
+ esac
1927
+ fi
1928
+ break
1929
+ fi
1930
+ done
1931
+ IFS="$lt_save_ifs"
1932
+ MAGIC_CMD="$lt_save_MAGIC_CMD"
1933
+ ;;
1934
+ esac])
1935
+ MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
1936
+ if test -n "$MAGIC_CMD"; then
1937
+ AC_MSG_RESULT($MAGIC_CMD)
1938
+ else
1939
+ AC_MSG_RESULT(no)
1940
+ fi
1941
+ _LT_DECL([], [MAGIC_CMD], [0],
1942
+ [Used to examine libraries when file_magic_cmd begins with "file"])dnl
1943
+ ])
1944
+ m4trace:m4/libtool.m4:2992: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
1945
+ m4trace:m4/libtool.m4:2992: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
1946
+ You should run autoupdate.])dnl
1947
+ m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
1948
+ m4trace:m4/libtool.m4:3101: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
1949
+ AC_REQUIRE([AC_CANONICAL_HOST])dnl
1950
+ AC_REQUIRE([AC_CANONICAL_BUILD])dnl
1951
+ m4_require([_LT_DECL_SED])dnl
1952
+ m4_require([_LT_DECL_EGREP])dnl
1953
+ m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
1954
+
1955
+ AC_ARG_WITH([gnu-ld],
1956
+ [AS_HELP_STRING([--with-gnu-ld],
1957
+ [assume the C compiler uses GNU ld @<:@default=no@:>@])],
1958
+ [test "$withval" = no || with_gnu_ld=yes],
1959
+ [with_gnu_ld=no])dnl
1960
+
1961
+ ac_prog=ld
1962
+ if test "$GCC" = yes; then
1963
+ # Check if gcc -print-prog-name=ld gives a path.
1964
+ AC_MSG_CHECKING([for ld used by $CC])
1965
+ case $host in
1966
+ *-*-mingw*)
1967
+ # gcc leaves a trailing carriage return which upsets mingw
1968
+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
1969
+ *)
1970
+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
1971
+ esac
1972
+ case $ac_prog in
1973
+ # Accept absolute paths.
1974
+ [[\\/]]* | ?:[[\\/]]*)
1975
+ re_direlt='/[[^/]][[^/]]*/\.\./'
1976
+ # Canonicalize the pathname of ld
1977
+ ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
1978
+ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
1979
+ ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
1980
+ done
1981
+ test -z "$LD" && LD="$ac_prog"
1982
+ ;;
1983
+ "")
1984
+ # If it fails, then pretend we aren't using GCC.
1985
+ ac_prog=ld
1986
+ ;;
1987
+ *)
1988
+ # If it is relative, then search for the first ld in PATH.
1989
+ with_gnu_ld=unknown
1990
+ ;;
1991
+ esac
1992
+ elif test "$with_gnu_ld" = yes; then
1993
+ AC_MSG_CHECKING([for GNU ld])
1994
+ else
1995
+ AC_MSG_CHECKING([for non-GNU ld])
1996
+ fi
1997
+ AC_CACHE_VAL(lt_cv_path_LD,
1998
+ [if test -z "$LD"; then
1999
+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2000
+ for ac_dir in $PATH; do
2001
+ IFS="$lt_save_ifs"
2002
+ test -z "$ac_dir" && ac_dir=.
2003
+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
2004
+ lt_cv_path_LD="$ac_dir/$ac_prog"
2005
+ # Check to see if the program is GNU ld. I'd rather use --version,
2006
+ # but apparently some variants of GNU ld only accept -v.
2007
+ # Break only if it was the GNU/non-GNU ld that we prefer.
2008
+ case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
2009
+ *GNU* | *'with BFD'*)
2010
+ test "$with_gnu_ld" != no && break
2011
+ ;;
2012
+ *)
2013
+ test "$with_gnu_ld" != yes && break
2014
+ ;;
2015
+ esac
2016
+ fi
2017
+ done
2018
+ IFS="$lt_save_ifs"
2019
+ else
2020
+ lt_cv_path_LD="$LD" # Let the user override the test with a path.
2021
+ fi])
2022
+ LD="$lt_cv_path_LD"
2023
+ if test -n "$LD"; then
2024
+ AC_MSG_RESULT($LD)
2025
+ else
2026
+ AC_MSG_RESULT(no)
2027
+ fi
2028
+ test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
2029
+ _LT_PATH_LD_GNU
2030
+ AC_SUBST([LD])
2031
+
2032
+ _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
2033
+ ])
2034
+ m4trace:m4/libtool.m4:3104: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
2035
+ m4trace:m4/libtool.m4:3104: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
2036
+ You should run autoupdate.])dnl
2037
+ m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
2038
+ m4trace:m4/libtool.m4:3105: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
2039
+ m4trace:m4/libtool.m4:3105: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
2040
+ You should run autoupdate.])dnl
2041
+ m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
2042
+ m4trace:m4/libtool.m4:3486: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
2043
+ AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
2044
+ [if test -n "$NM"; then
2045
+ # Let the user override the test.
2046
+ lt_cv_path_NM="$NM"
2047
+ else
2048
+ lt_nm_to_check="${ac_tool_prefix}nm"
2049
+ if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
2050
+ lt_nm_to_check="$lt_nm_to_check nm"
2051
+ fi
2052
+ for lt_tmp_nm in $lt_nm_to_check; do
2053
+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2054
+ for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
2055
+ IFS="$lt_save_ifs"
2056
+ test -z "$ac_dir" && ac_dir=.
2057
+ tmp_nm="$ac_dir/$lt_tmp_nm"
2058
+ if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
2059
+ # Check to see if the nm accepts a BSD-compat flag.
2060
+ # Adding the `sed 1q' prevents false positives on HP-UX, which says:
2061
+ # nm: unknown option "B" ignored
2062
+ # Tru64's nm complains that /dev/null is an invalid object file
2063
+ case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
2064
+ */dev/null* | *'Invalid file or object type'*)
2065
+ lt_cv_path_NM="$tmp_nm -B"
2066
+ break
2067
+ ;;
2068
+ *)
2069
+ case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
2070
+ */dev/null*)
2071
+ lt_cv_path_NM="$tmp_nm -p"
2072
+ break
2073
+ ;;
2074
+ *)
2075
+ lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
2076
+ continue # so that we can try to find one that supports BSD flags
2077
+ ;;
2078
+ esac
2079
+ ;;
2080
+ esac
2081
+ fi
2082
+ done
2083
+ IFS="$lt_save_ifs"
2084
+ done
2085
+ : ${lt_cv_path_NM=no}
2086
+ fi])
2087
+ if test "$lt_cv_path_NM" != "no"; then
2088
+ NM="$lt_cv_path_NM"
2089
+ else
2090
+ # Didn't find any BSD compatible name lister, look for dumpbin.
2091
+ if test -n "$DUMPBIN"; then :
2092
+ # Let the user override the test.
2093
+ else
2094
+ AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
2095
+ case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
2096
+ *COFF*)
2097
+ DUMPBIN="$DUMPBIN -symbols"
2098
+ ;;
2099
+ *)
2100
+ DUMPBIN=:
2101
+ ;;
2102
+ esac
2103
+ fi
2104
+ AC_SUBST([DUMPBIN])
2105
+ if test "$DUMPBIN" != ":"; then
2106
+ NM="$DUMPBIN"
2107
+ fi
2108
+ fi
2109
+ test -z "$NM" && NM=nm
2110
+ AC_SUBST([NM])
2111
+ _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
2112
+
2113
+ AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
2114
+ [lt_cv_nm_interface="BSD nm"
2115
+ echo "int some_variable = 0;" > conftest.$ac_ext
2116
+ (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
2117
+ (eval "$ac_compile" 2>conftest.err)
2118
+ cat conftest.err >&AS_MESSAGE_LOG_FD
2119
+ (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
2120
+ (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
2121
+ cat conftest.err >&AS_MESSAGE_LOG_FD
2122
+ (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
2123
+ cat conftest.out >&AS_MESSAGE_LOG_FD
2124
+ if $GREP 'External.*some_variable' conftest.out > /dev/null; then
2125
+ lt_cv_nm_interface="MS dumpbin"
2126
+ fi
2127
+ rm -f conftest*])
2128
+ ])
2129
+ m4trace:m4/libtool.m4:3489: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
2130
+ m4trace:m4/libtool.m4:3489: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
2131
+ You should run autoupdate.])dnl
2132
+ m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
2133
+ m4trace:m4/libtool.m4:3490: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
2134
+ m4trace:m4/libtool.m4:3490: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
2135
+ You should run autoupdate.])dnl
2136
+ m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
2137
+ m4trace:m4/libtool.m4:3576: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
2138
+ LIBM=
2139
+ case $host in
2140
+ *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
2141
+ # These system don't have libm, or don't need it
2142
+ ;;
2143
+ *-ncr-sysv4.3*)
2144
+ AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
2145
+ AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
2146
+ ;;
2147
+ *)
2148
+ AC_CHECK_LIB(m, cos, LIBM="-lm")
2149
+ ;;
2150
+ esac
2151
+ AC_SUBST([LIBM])
2152
+ ])
2153
+ m4trace:m4/libtool.m4:3579: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
2154
+ m4trace:m4/libtool.m4:3579: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
2155
+ You should run autoupdate.])dnl
2156
+ m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
2157
+ m4trace:m4/libtool.m4:7628: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
2158
+ [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
2159
+ [AC_CHECK_TOOL(GCJ, gcj,)
2160
+ test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
2161
+ AC_SUBST(GCJFLAGS)])])[]dnl
2162
+ ])
2163
+ m4trace:m4/libtool.m4:7631: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
2164
+ m4trace:m4/libtool.m4:7631: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
2165
+ You should run autoupdate.])dnl
2166
+ m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
2167
+ m4trace:m4/libtool.m4:7640: -1- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,)
2168
+ ])
2169
+ m4trace:m4/libtool.m4:7647: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
2170
+ ])
2171
+ m4trace:m4/libtool.m4:7650: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
2172
+ m4trace:m4/libtool.m4:7650: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
2173
+ You should run autoupdate.])dnl
2174
+ m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
2175
+ m4trace:m4/libtool.m4:7770: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
2176
+ m4trace:m4/libtool.m4:7770: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
2177
+ You should run autoupdate.])dnl
2178
+ m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
2179
+ m4trace:m4/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
2180
+ m4trace:m4/ltoptions.m4:116: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
2181
+ AC_DIAGNOSE([obsolete],
2182
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
2183
+ put the `dlopen' option into LT_INIT's first parameter.])
2184
+ ])
2185
+ m4trace:m4/ltoptions.m4:116: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
2186
+ You should run autoupdate.])dnl
2187
+ _LT_SET_OPTION([LT_INIT], [dlopen])
2188
+ AC_DIAGNOSE([obsolete],
2189
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
2190
+ put the `dlopen' option into LT_INIT's first parameter.])
2191
+ ])
2192
+ m4trace:m4/ltoptions.m4:152: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
2193
+ _LT_SET_OPTION([LT_INIT], [win32-dll])
2194
+ AC_DIAGNOSE([obsolete],
2195
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
2196
+ put the `win32-dll' option into LT_INIT's first parameter.])
2197
+ ])
2198
+ m4trace:m4/ltoptions.m4:152: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
2199
+ You should run autoupdate.])dnl
2200
+ AC_REQUIRE([AC_CANONICAL_HOST])dnl
2201
+ _LT_SET_OPTION([LT_INIT], [win32-dll])
2202
+ AC_DIAGNOSE([obsolete],
2203
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
2204
+ put the `win32-dll' option into LT_INIT's first parameter.])
2205
+ ])
2206
+ m4trace:m4/ltoptions.m4:197: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
2207
+ ])
2208
+ m4trace:m4/ltoptions.m4:201: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
2209
+ ])
2210
+ m4trace:m4/ltoptions.m4:203: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
2211
+ m4trace:m4/ltoptions.m4:203: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
2212
+ You should run autoupdate.])dnl
2213
+ AC_ENABLE_SHARED($@)])
2214
+ m4trace:m4/ltoptions.m4:204: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
2215
+ m4trace:m4/ltoptions.m4:204: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
2216
+ You should run autoupdate.])dnl
2217
+ AC_DISABLE_SHARED($@)])
2218
+ m4trace:m4/ltoptions.m4:251: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
2219
+ ])
2220
+ m4trace:m4/ltoptions.m4:255: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
2221
+ ])
2222
+ m4trace:m4/ltoptions.m4:257: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
2223
+ m4trace:m4/ltoptions.m4:257: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
2224
+ You should run autoupdate.])dnl
2225
+ AC_ENABLE_STATIC($@)])
2226
+ m4trace:m4/ltoptions.m4:258: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
2227
+ m4trace:m4/ltoptions.m4:258: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
2228
+ You should run autoupdate.])dnl
2229
+ AC_DISABLE_STATIC($@)])
2230
+ m4trace:m4/ltoptions.m4:308: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
2231
+ AC_DIAGNOSE([obsolete],
2232
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you put
2233
+ the `fast-install' option into LT_INIT's first parameter.])
2234
+ ])
2235
+ m4trace:m4/ltoptions.m4:308: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
2236
+ You should run autoupdate.])dnl
2237
+ _LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
2238
+ AC_DIAGNOSE([obsolete],
2239
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you put
2240
+ the `fast-install' option into LT_INIT's first parameter.])
2241
+ ])
2242
+ m4trace:m4/ltoptions.m4:315: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
2243
+ AC_DIAGNOSE([obsolete],
2244
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you put
2245
+ the `disable-fast-install' option into LT_INIT's first parameter.])
2246
+ ])
2247
+ m4trace:m4/ltoptions.m4:315: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
2248
+ You should run autoupdate.])dnl
2249
+ _LT_SET_OPTION([LT_INIT], [disable-fast-install])
2250
+ AC_DIAGNOSE([obsolete],
2251
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you put
2252
+ the `disable-fast-install' option into LT_INIT's first parameter.])
2253
+ ])
2254
+ m4trace:m4/ltoptions.m4:363: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
2255
+ AC_DIAGNOSE([obsolete],
2256
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
2257
+ put the `pic-only' option into LT_INIT's first parameter.])
2258
+ ])
2259
+ m4trace:m4/ltoptions.m4:363: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
2260
+ You should run autoupdate.])dnl
2261
+ _LT_SET_OPTION([LT_INIT], [pic-only])
2262
+ AC_DIAGNOSE([obsolete],
2263
+ [$0: Remove this warning and the call to _LT_SET_OPTION when you
2264
+ put the `pic-only' option into LT_INIT's first parameter.])
2265
+ ])
2266
+ m4trace:m4/ltsugar.m4:13: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
2267
+ m4trace:m4/ltversion.m4:23: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.2'
2268
+ macro_revision='1.3337'
2269
+ _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
2270
+ _LT_DECL(, macro_revision, 0)
2271
+ ])
2272
+ m4trace:m4/lt~obsolete.m4:36: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
2273
+ m4trace:m4/lt~obsolete.m4:40: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
2274
+ m4trace:m4/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
2275
+ m4trace:m4/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
2276
+ m4trace:m4/lt~obsolete.m4:44: -1- AC_DEFUN([_LT_AC_TAGVAR])
2277
+ m4trace:m4/lt~obsolete.m4:45: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
2278
+ m4trace:m4/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_PREOPEN])
2279
+ m4trace:m4/lt~obsolete.m4:47: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
2280
+ m4trace:m4/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_LOCK])
2281
+ m4trace:m4/lt~obsolete.m4:49: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
2282
+ m4trace:m4/lt~obsolete.m4:50: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
2283
+ m4trace:m4/lt~obsolete.m4:51: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
2284
+ m4trace:m4/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
2285
+ m4trace:m4/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
2286
+ m4trace:m4/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LTDL_OBJDIR])
2287
+ m4trace:m4/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
2288
+ m4trace:m4/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
2289
+ m4trace:m4/lt~obsolete.m4:57: -1- AC_DEFUN([AC_PATH_MAGIC])
2290
+ m4trace:m4/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PROG_LD_GNU])
2291
+ m4trace:m4/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
2292
+ m4trace:m4/lt~obsolete.m4:60: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
2293
+ m4trace:m4/lt~obsolete.m4:61: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
2294
+ m4trace:m4/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
2295
+ m4trace:m4/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
2296
+ m4trace:m4/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
2297
+ m4trace:m4/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
2298
+ m4trace:m4/lt~obsolete.m4:66: -1- AC_DEFUN([LT_AC_PROG_EGREP])
2299
+ m4trace:m4/lt~obsolete.m4:71: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
2300
+ m4trace:m4/lt~obsolete.m4:72: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
2301
+ m4trace:m4/lt~obsolete.m4:73: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
2302
+ m4trace:m4/lt~obsolete.m4:74: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
2303
+ m4trace:m4/lt~obsolete.m4:75: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
2304
+ m4trace:m4/lt~obsolete.m4:77: -1- AC_DEFUN([_LT_AC_LANG_CXX])
2305
+ m4trace:m4/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_F77])
2306
+ m4trace:m4/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
2307
+ m4trace:m4/lt~obsolete.m4:80: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
2308
+ m4trace:m4/lt~obsolete.m4:81: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
2309
+ m4trace:m4/lt~obsolete.m4:82: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
2310
+ m4trace:m4/lt~obsolete.m4:83: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
2311
+ m4trace:m4/lt~obsolete.m4:84: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
2312
+ m4trace:m4/lt~obsolete.m4:85: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
2313
+ m4trace:m4/lt~obsolete.m4:86: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
2314
+ m4trace:m4/lt~obsolete.m4:87: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
2315
+ m4trace:m4/lt~obsolete.m4:88: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
2316
+ m4trace:m4/lt~obsolete.m4:89: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
2317
+ m4trace:m4/lt~obsolete.m4:90: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
2318
+ m4trace:m4/lt~obsolete.m4:91: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
2319
+ m4trace:m4/lt~obsolete.m4:93: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
2320
+ m4trace:m4/lt~obsolete.m4:96: -1- AC_DEFUN([_LT_PROG_F77])
2321
+ m4trace:m4/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_FC])
2322
+ m4trace:m4/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_CXX])
2323
+ m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?A[CHUM]_])
2324
+ m4trace:configure.ac:9: -1- m4_pattern_forbid([_AC_])
2325
+ m4trace:configure.ac:9: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
2326
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^AS_FLAGS$])
2327
+ m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?m4_])
2328
+ m4trace:configure.ac:9: -1- m4_pattern_forbid([^dnl$])
2329
+ m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?AS_])
2330
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^SHELL$])
2331
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PATH_SEPARATOR$])
2332
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_NAME$])
2333
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2334
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2335
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_STRING$])
2336
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2337
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_URL$])
2338
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^exec_prefix$])
2339
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^prefix$])
2340
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^program_transform_name$])
2341
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^bindir$])
2342
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^sbindir$])
2343
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^libexecdir$])
2344
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^datarootdir$])
2345
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^datadir$])
2346
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^sysconfdir$])
2347
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^sharedstatedir$])
2348
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^localstatedir$])
2349
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^includedir$])
2350
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^oldincludedir$])
2351
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^docdir$])
2352
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^infodir$])
2353
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^htmldir$])
2354
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^dvidir$])
2355
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^pdfdir$])
2356
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^psdir$])
2357
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^libdir$])
2358
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^localedir$])
2359
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^mandir$])
2360
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_NAME$])
2361
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2362
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2363
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_STRING$])
2364
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2365
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_URL$])
2366
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^DEFS$])
2367
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_C$])
2368
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_N$])
2369
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_T$])
2370
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^LIBS$])
2371
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^build_alias$])
2372
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^host_alias$])
2373
+ m4trace:configure.ac:9: -1- m4_pattern_allow([^target_alias$])
2374
+ m4trace:configure.ac:13: -1- AC_CONFIG_MACRO_DIR([m4])
2375
+ m4trace:configure.ac:16: -1- AM_INIT_AUTOMAKE([1.9 foreign])
2376
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
2377
+ m4trace:configure.ac:16: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
2378
+ m4trace:configure.ac:16: -1- AM_AUTOMAKE_VERSION([1.14.1])
2379
+ m4trace:configure.ac:16: -1- _AM_AUTOCONF_VERSION([2.69])
2380
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
2381
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
2382
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_DATA$])
2383
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__isrc$])
2384
+ m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([am__isrc])
2385
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^CYGPATH_W$])
2386
+ m4trace:configure.ac:16: -1- _AM_SET_OPTIONS([1.9 foreign])
2387
+ m4trace:configure.ac:16: -1- _AM_SET_OPTION([1.9])
2388
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([1.9])
2389
+ m4trace:configure.ac:16: -1- _AM_SET_OPTION([foreign])
2390
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([foreign])
2391
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE$])
2392
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^VERSION$])
2393
+ m4trace:configure.ac:16: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
2394
+ AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
2395
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([no-define])
2396
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE$])
2397
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^VERSION$])
2398
+ m4trace:configure.ac:16: -1- AM_SANITY_CHECK
2399
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
2400
+ m4trace:configure.ac:16: -1- AM_MISSING_HAS_RUN
2401
+ m4trace:configure.ac:16: -1- AM_AUX_DIR_EXPAND
2402
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^ACLOCAL$])
2403
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
2404
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AUTOCONF$])
2405
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
2406
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AUTOMAKE$])
2407
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
2408
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AUTOHEADER$])
2409
+ m4trace:configure.ac:16: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
2410
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^MAKEINFO$])
2411
+ m4trace:configure.ac:16: -1- AM_PROG_INSTALL_SH
2412
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^install_sh$])
2413
+ m4trace:configure.ac:16: -1- AM_PROG_INSTALL_STRIP
2414
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^STRIP$])
2415
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
2416
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^MKDIR_P$])
2417
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^mkdir_p$])
2418
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AWK$])
2419
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^SET_MAKE$])
2420
+ m4trace:configure.ac:16: -1- AM_SET_LEADING_DOT
2421
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__leading_dot$])
2422
+ m4trace:configure.ac:16: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2423
+ [_AM_PROG_TAR([v7])])])
2424
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([tar-ustar])
2425
+ m4trace:configure.ac:16: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
2426
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([tar-pax])
2427
+ m4trace:configure.ac:16: -1- _AM_PROG_TAR([v7])
2428
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AMTAR$])
2429
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__tar$])
2430
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^am__untar$])
2431
+ m4trace:configure.ac:16: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
2432
+ [_AM_DEPENDENCIES([CC])],
2433
+ [m4_define([AC_PROG_CC],
2434
+ m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
2435
+ AC_PROVIDE_IFELSE([AC_PROG_CXX],
2436
+ [_AM_DEPENDENCIES([CXX])],
2437
+ [m4_define([AC_PROG_CXX],
2438
+ m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
2439
+ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2440
+ [_AM_DEPENDENCIES([OBJC])],
2441
+ [m4_define([AC_PROG_OBJC],
2442
+ m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
2443
+ AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
2444
+ [_AM_DEPENDENCIES([OBJCXX])],
2445
+ [m4_define([AC_PROG_OBJCXX],
2446
+ m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
2447
+ ])
2448
+ m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([no-dependencies])
2449
+ m4trace:configure.ac:16: -1- AM_SILENT_RULES
2450
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_V$])
2451
+ m4trace:configure.ac:16: -1- AM_SUBST_NOTMAKE([AM_V])
2452
+ m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([AM_V])
2453
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_DEFAULT_V$])
2454
+ m4trace:configure.ac:16: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
2455
+ m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
2456
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
2457
+ m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_BACKSLASH$])
2458
+ m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
2459
+ m4trace:configure.ac:19: -1- m4_pattern_allow([^NC_VERSION_MAJOR$])
2460
+ m4trace:configure.ac:20: -1- m4_pattern_allow([^NC_VERSION_MINOR$])
2461
+ m4trace:configure.ac:21: -1- m4_pattern_allow([^NC_VERSION_PATCH$])
2462
+ m4trace:configure.ac:22: -1- m4_pattern_allow([^NC_VERSION_STRING$])
2463
+ m4trace:configure.ac:28: -1- m4_pattern_allow([^AWK$])
2464
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2465
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^CFLAGS$])
2466
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^LDFLAGS$])
2467
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^LIBS$])
2468
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^CPPFLAGS$])
2469
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2470
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2471
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2472
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2473
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^ac_ct_CC$])
2474
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^EXEEXT$])
2475
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^OBJEXT$])
2476
+ m4trace:configure.ac:29: -1- _AM_PROG_CC_C_O
2477
+ m4trace:configure.ac:29: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
2478
+ m4trace:configure.ac:29: -1- _AM_DEPENDENCIES([CC])
2479
+ m4trace:configure.ac:29: -1- AM_SET_DEPDIR
2480
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^DEPDIR$])
2481
+ m4trace:configure.ac:29: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
2482
+ m4trace:configure.ac:29: -1- AM_MAKE_INCLUDE
2483
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^am__include$])
2484
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^am__quote$])
2485
+ m4trace:configure.ac:29: -1- AM_DEP_TRACK
2486
+ m4trace:configure.ac:29: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2487
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_TRUE$])
2488
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_FALSE$])
2489
+ m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
2490
+ m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
2491
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
2492
+ m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
2493
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^am__nodep$])
2494
+ m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__nodep])
2495
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^CCDEPMODE$])
2496
+ m4trace:configure.ac:29: -1- AM_CONDITIONAL([am__fastdepCC], [
2497
+ test "x$enable_dependency_tracking" != xno \
2498
+ && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
2499
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
2500
+ m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
2501
+ m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
2502
+ m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
2503
+ m4trace:configure.ac:30: -1- m4_pattern_allow([^CPP$])
2504
+ m4trace:configure.ac:30: -1- m4_pattern_allow([^CPPFLAGS$])
2505
+ m4trace:configure.ac:30: -1- m4_pattern_allow([^CPP$])
2506
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^CXX$])
2507
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^CXXFLAGS$])
2508
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^LDFLAGS$])
2509
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^LIBS$])
2510
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^CPPFLAGS$])
2511
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^CXX$])
2512
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^ac_ct_CXX$])
2513
+ m4trace:configure.ac:31: -1- _AM_DEPENDENCIES([CXX])
2514
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^CXXDEPMODE$])
2515
+ m4trace:configure.ac:31: -1- AM_CONDITIONAL([am__fastdepCXX], [
2516
+ test "x$enable_dependency_tracking" != xno \
2517
+ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3])
2518
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$])
2519
+ m4trace:configure.ac:31: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$])
2520
+ m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE])
2521
+ m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE])
2522
+ m4trace:configure.ac:33: -1- m4_pattern_allow([^LN_S$])
2523
+ m4trace:configure.ac:34: -1- m4_pattern_allow([^SET_MAKE$])
2524
+ m4trace:configure.ac:35: -1- m4_pattern_allow([^RANLIB$])
2525
+ m4trace:configure.ac:36: -1- AC_PROG_LIBTOOL
2526
+ m4trace:configure.ac:36: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
2527
+ You should run autoupdate.], [m4/libtool.m4:107: AC_PROG_LIBTOOL is expanded from...
2528
+ configure.ac:36: the top level])
2529
+ m4trace:configure.ac:36: -1- LT_INIT
2530
+ m4trace:configure.ac:36: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
2531
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
2532
+ m4trace:configure.ac:36: -1- LTOPTIONS_VERSION
2533
+ m4trace:configure.ac:36: -1- LTSUGAR_VERSION
2534
+ m4trace:configure.ac:36: -1- LTVERSION_VERSION
2535
+ m4trace:configure.ac:36: -1- LTOBSOLETE_VERSION
2536
+ m4trace:configure.ac:36: -1- _LT_PROG_LTMAIN
2537
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^LIBTOOL$])
2538
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^build$])
2539
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^build_cpu$])
2540
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^build_vendor$])
2541
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^build_os$])
2542
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^host$])
2543
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^host_cpu$])
2544
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^host_vendor$])
2545
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^host_os$])
2546
+ m4trace:configure.ac:36: -1- _LT_PREPARE_SED_QUOTE_VARS
2547
+ m4trace:configure.ac:36: -1- _LT_PROG_ECHO_BACKSLASH
2548
+ m4trace:configure.ac:36: -1- LT_PATH_LD
2549
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^SED$])
2550
+ m4trace:configure.ac:36: -1- AC_PROG_EGREP
2551
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^GREP$])
2552
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^EGREP$])
2553
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^FGREP$])
2554
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^GREP$])
2555
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^LD$])
2556
+ m4trace:configure.ac:36: -1- LT_PATH_NM
2557
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^DUMPBIN$])
2558
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
2559
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^DUMPBIN$])
2560
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^NM$])
2561
+ m4trace:configure.ac:36: -1- LT_CMD_MAX_LEN
2562
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^OBJDUMP$])
2563
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^OBJDUMP$])
2564
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^DLLTOOL$])
2565
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^DLLTOOL$])
2566
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^AR$])
2567
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^ac_ct_AR$])
2568
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^STRIP$])
2569
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^RANLIB$])
2570
+ m4trace:configure.ac:36: -1- _LT_WITH_SYSROOT
2571
+ m4trace:configure.ac:36: -1- m4_pattern_allow([LT_OBJDIR])
2572
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^LT_OBJDIR$])
2573
+ m4trace:configure.ac:36: -1- _LT_CC_BASENAME([$compiler])
2574
+ m4trace:configure.ac:36: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
2575
+ m4trace:configure.ac:36: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
2576
+ m4trace:configure.ac:36: -1- LT_SUPPORTED_TAG([CC])
2577
+ m4trace:configure.ac:36: -1- _LT_COMPILER_BOILERPLATE
2578
+ m4trace:configure.ac:36: -1- _LT_LINKER_BOILERPLATE
2579
+ m4trace:configure.ac:36: -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"])
2580
+ m4trace:configure.ac:36: -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
2581
+ "" | " "*) ;;
2582
+ *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
2583
+ esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
2584
+ _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
2585
+ m4trace:configure.ac:36: -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, )=])
2586
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^MANIFEST_TOOL$])
2587
+ m4trace:configure.ac:36: -1- _LT_REQUIRED_DARWIN_CHECKS
2588
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^DSYMUTIL$])
2589
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^NMEDIT$])
2590
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^LIPO$])
2591
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^OTOOL$])
2592
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^OTOOL64$])
2593
+ m4trace:configure.ac:36: -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'])
2594
+ m4trace:configure.ac:36: -1- LT_SYS_DLOPEN_SELF
2595
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^STDC_HEADERS$])
2596
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
2597
+ m4trace:configure.ac:36: -1- LT_LANG([CXX])
2598
+ m4trace:configure.ac:36: -1- LT_SUPPORTED_TAG([CXX])
2599
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^CXXCPP$])
2600
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^CPPFLAGS$])
2601
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^CXXCPP$])
2602
+ m4trace:configure.ac:36: -1- _LT_COMPILER_BOILERPLATE
2603
+ m4trace:configure.ac:36: -1- _LT_LINKER_BOILERPLATE
2604
+ m4trace:configure.ac:36: -1- _LT_CC_BASENAME([$compiler])
2605
+ m4trace:configure.ac:36: -1- LT_PATH_LD
2606
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^LD$])
2607
+ m4trace:configure.ac:36: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, CXX) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, CXX)], [$_LT_TAGVAR(lt_prog_compiler_pic, CXX)@&t@m4_if([CXX],[],[ -DPIC],[m4_if([CXX],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, CXX) in
2608
+ "" | " "*) ;;
2609
+ *) _LT_TAGVAR(lt_prog_compiler_pic, CXX)=" $_LT_TAGVAR(lt_prog_compiler_pic, CXX)" ;;
2610
+ esac], [_LT_TAGVAR(lt_prog_compiler_pic, CXX)=
2611
+ _LT_TAGVAR(lt_prog_compiler_can_build_shared, CXX)=no])
2612
+ m4trace:configure.ac:36: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works_CXX], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, CXX)=])
2613
+ m4trace:configure.ac:40: -1- m4_pattern_allow([^int8_t$])
2614
+ m4trace:configure.ac:41: -1- m4_pattern_allow([^int16_t$])
2615
+ m4trace:configure.ac:42: -1- m4_pattern_allow([^int32_t$])
2616
+ m4trace:configure.ac:43: -1- m4_pattern_allow([^int64_t$])
2617
+ m4trace:configure.ac:44: -1- m4_pattern_allow([^HAVE_UNSIGNED_LONG_LONG_INT$])
2618
+ m4trace:configure.ac:44: -1- m4_pattern_allow([^HAVE_LONG_LONG_INT$])
2619
+ m4trace:configure.ac:44: -1- m4_pattern_allow([^HAVE_INTMAX_T$])
2620
+ m4trace:configure.ac:44: -1- m4_pattern_allow([^intmax_t$])
2621
+ m4trace:configure.ac:45: -1- m4_pattern_allow([^HAVE_INTPTR_T$])
2622
+ m4trace:configure.ac:45: -1- m4_pattern_allow([^intptr_t$])
2623
+ m4trace:configure.ac:46: -1- m4_pattern_allow([^_UINT8_T$])
2624
+ m4trace:configure.ac:46: -1- m4_pattern_allow([^uint8_t$])
2625
+ m4trace:configure.ac:47: -1- m4_pattern_allow([^uint16_t$])
2626
+ m4trace:configure.ac:48: -1- m4_pattern_allow([^_UINT32_T$])
2627
+ m4trace:configure.ac:48: -1- m4_pattern_allow([^uint32_t$])
2628
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^_UINT64_T$])
2629
+ m4trace:configure.ac:49: -1- m4_pattern_allow([^uint64_t$])
2630
+ m4trace:configure.ac:50: -1- m4_pattern_allow([^HAVE_UINTMAX_T$])
2631
+ m4trace:configure.ac:50: -1- m4_pattern_allow([^uintmax_t$])
2632
+ m4trace:configure.ac:51: -1- m4_pattern_allow([^HAVE_UINTPTR_T$])
2633
+ m4trace:configure.ac:51: -1- m4_pattern_allow([^uintptr_t$])
2634
+ m4trace:configure.ac:52: -1- m4_pattern_allow([^off_t$])
2635
+ m4trace:configure.ac:53: -1- m4_pattern_allow([^pid_t$])
2636
+ m4trace:configure.ac:54: -1- m4_pattern_allow([^size_t$])
2637
+ m4trace:configure.ac:55: -1- m4_pattern_allow([^ssize_t$])
2638
+ m4trace:configure.ac:62: -1- m4_pattern_allow([^WORDS_BIGENDIAN$])
2639
+ m4trace:configure.ac:62: -1- m4_pattern_allow([^HAVE_LITTLE_ENDIAN$])
2640
+ m4trace:configure.ac:65: -1- m4_pattern_allow([^HAVE__BOOL$])
2641
+ m4trace:configure.ac:65: -1- m4_pattern_allow([^HAVE_STDBOOL_H$])
2642
+ m4trace:configure.ac:71: -1- m4_pattern_allow([^HAVE_EXECINFO_H$])
2643
+ m4trace:configure.ac:71: -1- m4_pattern_allow([^HAVE_BACKTRACE$])
2644
+ m4trace:configure.ac:72: -1- m4_pattern_allow([^HAVE_SYS_EPOLL_H$])
2645
+ m4trace:configure.ac:73: -1- m4_pattern_allow([^HAVE_SYS_EVENT_H$])
2646
+ m4trace:configure.ac:76: -1- m4_pattern_allow([^HAVE_LIBM$])
2647
+ m4trace:configure.ac:77: -1- m4_pattern_allow([^HAVE_LIBPTHREAD$])
2648
+ m4trace:configure.ac:80: -1- m4_pattern_allow([^HAVE_VFORK_H$])
2649
+ m4trace:configure.ac:80: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
2650
+ m4trace:configure.ac:80: -1- m4_pattern_allow([^vfork$])
2651
+ m4trace:configure.ac:80: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
2652
+ m4trace:configure.ac:81: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
2653
+ m4trace:configure.ac:81: -1- m4_pattern_allow([^HAVE_MALLOC$])
2654
+ m4trace:configure.ac:81: -1- m4_pattern_allow([^HAVE_MALLOC$])
2655
+ m4trace:configure.ac:81: -1- m4_pattern_allow([^LIB@&t@OBJS$])
2656
+ m4trace:configure.ac:81: -1- m4_pattern_allow([^malloc$])
2657
+ m4trace:configure.ac:82: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
2658
+ m4trace:configure.ac:82: -1- m4_pattern_allow([^HAVE_REALLOC$])
2659
+ m4trace:configure.ac:82: -1- m4_pattern_allow([^HAVE_REALLOC$])
2660
+ m4trace:configure.ac:82: -1- m4_pattern_allow([^LIB@&t@OBJS$])
2661
+ m4trace:configure.ac:82: -1- m4_pattern_allow([^realloc$])
2662
+ m4trace:configure.ac:84: -1- m4_pattern_allow([^HAVE_SOCKET$])
2663
+ m4trace:configure.ac:105: -2- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
2664
+ You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
2665
+ configure.ac:105: the top level])
2666
+ m4trace:configure.ac:105: -2- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
2667
+ ../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
2668
+ configure.ac:105: the top level])
2669
+ m4trace:configure.ac:107: -1- m4_pattern_allow([^HAVE_EPOLL$])
2670
+ m4trace:configure.ac:128: -2- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
2671
+ You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
2672
+ configure.ac:128: the top level])
2673
+ m4trace:configure.ac:128: -2- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
2674
+ ../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
2675
+ configure.ac:128: the top level])
2676
+ m4trace:configure.ac:130: -1- m4_pattern_allow([^HAVE_KQUEUE$])
2677
+ m4trace:configure.ac:149: -2- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
2678
+ You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
2679
+ configure.ac:149: the top level])
2680
+ m4trace:configure.ac:149: -2- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
2681
+ ../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
2682
+ configure.ac:149: the top level])
2683
+ m4trace:configure.ac:151: -1- m4_pattern_allow([^HAVE_EVENT_PORTS$])
2684
+ m4trace:configure.ac:158: -1- AM_CONDITIONAL([OS_LINUX], [test "x$ac_cv_epoll_works" = "xyes"])
2685
+ m4trace:configure.ac:158: -1- m4_pattern_allow([^OS_LINUX_TRUE$])
2686
+ m4trace:configure.ac:158: -1- m4_pattern_allow([^OS_LINUX_FALSE$])
2687
+ m4trace:configure.ac:158: -1- _AM_SUBST_NOTMAKE([OS_LINUX_TRUE])
2688
+ m4trace:configure.ac:158: -1- _AM_SUBST_NOTMAKE([OS_LINUX_FALSE])
2689
+ m4trace:configure.ac:159: -1- AM_CONDITIONAL([OS_BSD], [test "x$ac_cv_kqueue_works" = "xyes"])
2690
+ m4trace:configure.ac:159: -1- m4_pattern_allow([^OS_BSD_TRUE$])
2691
+ m4trace:configure.ac:159: -1- m4_pattern_allow([^OS_BSD_FALSE$])
2692
+ m4trace:configure.ac:159: -1- _AM_SUBST_NOTMAKE([OS_BSD_TRUE])
2693
+ m4trace:configure.ac:159: -1- _AM_SUBST_NOTMAKE([OS_BSD_FALSE])
2694
+ m4trace:configure.ac:160: -1- AM_CONDITIONAL([OS_SOLARIS], [test "x$ac_cv_evports_works" = "xyes"])
2695
+ m4trace:configure.ac:160: -1- m4_pattern_allow([^OS_SOLARIS_TRUE$])
2696
+ m4trace:configure.ac:160: -1- m4_pattern_allow([^OS_SOLARIS_FALSE$])
2697
+ m4trace:configure.ac:160: -1- _AM_SUBST_NOTMAKE([OS_SOLARIS_TRUE])
2698
+ m4trace:configure.ac:160: -1- _AM_SUBST_NOTMAKE([OS_SOLARIS_FALSE])
2699
+ m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_ASSERT_PANIC$])
2700
+ m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
2701
+ m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_ASSERT_LOG$])
2702
+ m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
2703
+ m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
2704
+ m4trace:configure.ac:195: -1- m4_pattern_allow([^HAVE_STATS$])
2705
+ m4trace:configure.ac:202: -1- m4_pattern_allow([^subdirs$])
2706
+ m4trace:configure.ac:213: -1- m4_pattern_allow([^LIB@&t@OBJS$])
2707
+ m4trace:configure.ac:213: -1- m4_pattern_allow([^LTLIBOBJS$])
2708
+ m4trace:configure.ac:213: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
2709
+ m4trace:configure.ac:213: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
2710
+ m4trace:configure.ac:213: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
2711
+ m4trace:configure.ac:213: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
2712
+ m4trace:configure.ac:213: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
2713
+ m4trace:configure.ac:213: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
2714
+ m4trace:configure.ac:213: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
2715
+ m4trace:configure.ac:213: -1- _LT_PROG_LTMAIN