dec_number 0.0.0

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