rbnacl-libsodium 0.5.0 → 0.5.0.1.pre

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