rbnacl-libsodium 0.5.0 → 0.5.0.1.pre

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