tnef 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/ext/tnef/ChangeLog +18 -0
  3. data/ext/tnef/Makefile.in +185 -132
  4. data/ext/tnef/NEWS +4 -1
  5. data/ext/tnef/aclocal.m4 +440 -266
  6. data/ext/tnef/autom4te.cache/output.0 +7001 -0
  7. data/ext/tnef/autom4te.cache/output.1 +7001 -0
  8. data/ext/tnef/autom4te.cache/requests +159 -0
  9. data/ext/tnef/autom4te.cache/traces.0 +545 -0
  10. data/ext/tnef/autom4te.cache/traces.1 +1036 -0
  11. data/ext/tnef/compile +347 -0
  12. data/ext/tnef/config.log +971 -0
  13. data/ext/tnef/configure +380 -194
  14. data/ext/tnef/configure.in +1 -1
  15. data/ext/tnef/contrib/evolution.helper +43 -0
  16. data/ext/tnef/contrib/evolution.helper.README +11 -0
  17. data/ext/tnef/contrib/tnef-alpine.perl +91 -0
  18. data/ext/tnef/contrib/tnef-alpine.perl.README +10 -0
  19. data/ext/tnef/doc/Makefile +659 -0
  20. data/ext/tnef/doc/Makefile.in +171 -135
  21. data/ext/tnef/doc/tnef.1 +185 -0
  22. data/ext/tnef/doc/tnef.1.in +34 -32
  23. data/ext/tnef/doc/www/Makefile +585 -0
  24. data/ext/tnef/doc/www/Makefile.in +158 -115
  25. data/ext/tnef/doc/www/cgi-bin/Makefile +405 -0
  26. data/ext/tnef/doc/www/cgi-bin/Makefile.in +83 -18
  27. data/ext/tnef/doc/www/htdocs/Makefile +405 -0
  28. data/ext/tnef/doc/www/htdocs/Makefile.in +83 -18
  29. data/ext/tnef/doc/www/htdocs/index.html +51 -0
  30. data/ext/tnef/doc/www/htdocs/style.css +13 -0
  31. data/ext/tnef/src/Makefile.in +193 -135
  32. data/ext/tnef/src/replace/Makefile.in +148 -55
  33. data/ext/tnef/src/tnef.c +10 -8
  34. data/ext/tnef/test-driver +127 -0
  35. data/ext/tnef/tests/Makefile.in +158 -115
  36. data/ext/tnef/tests/cmdline/Attic/mime-types.baseline +3 -0
  37. data/ext/tnef/tests/cmdline/Attic/mime-types.test +11 -0
  38. data/ext/tnef/tests/cmdline/Makefile.in +441 -110
  39. data/ext/tnef/tests/cmdline/body-test.html.baseline +95 -95
  40. data/ext/tnef/tests/cmdline/body.baseline +2 -2
  41. data/ext/tnef/tests/cmdline/interactive.baseline +0 -0
  42. data/ext/tnef/tests/cmdline/message.html.baseline +95 -95
  43. data/ext/tnef/tests/cmdline/version.baseline +2 -2
  44. data/ext/tnef/tests/files/Makefile.in +515 -205
  45. data/ext/tnef/tests/files/baselines/Makefile.in +83 -18
  46. data/ext/tnef/tests/files/datafiles/Makefile.in +83 -18
  47. data/lib/tnef/version.rb +1 -1
  48. metadata +34 -18
@@ -0,0 +1,1036 @@
1
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/amversion.m4:20: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.14'
2
+ dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
3
+ dnl require some minimum version. Point them to the right macro.
4
+ m4_if([$1], [1.14], [],
5
+ [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
6
+ ])
7
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/amversion.m4:37: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.14])dnl
8
+ m4_ifndef([AC_AUTOCONF_VERSION],
9
+ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
10
+ _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
11
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/auxdir.m4:52: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
12
+ AC_PREREQ([2.50])dnl
13
+ # expand $ac_aux_dir to an absolute path
14
+ am_aux_dir=`cd $ac_aux_dir && pwd`
15
+ ])
16
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/cond.m4:32: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
17
+ m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
18
+ [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
19
+ AC_SUBST([$1_TRUE])dnl
20
+ AC_SUBST([$1_FALSE])dnl
21
+ _AM_SUBST_NOTMAKE([$1_TRUE])dnl
22
+ _AM_SUBST_NOTMAKE([$1_FALSE])dnl
23
+ m4_define([_AM_COND_VALUE_$1], [$2])dnl
24
+ if $2; then
25
+ $1_TRUE=
26
+ $1_FALSE='#'
27
+ else
28
+ $1_TRUE='#'
29
+ $1_FALSE=
30
+ fi
31
+ AC_CONFIG_COMMANDS_PRE(
32
+ [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
33
+ AC_MSG_ERROR([[conditional "$1" was never defined.
34
+ Usually this means the macro was only invoked conditionally.]])
35
+ fi])])
36
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/depend.m4:156: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
37
+ AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
38
+ AC_REQUIRE([AM_MAKE_INCLUDE])dnl
39
+ AC_REQUIRE([AM_DEP_TRACK])dnl
40
+
41
+ m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
42
+ [$1], [CXX], [depcc="$CXX" am_compiler_list=],
43
+ [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
44
+ [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
45
+ [$1], [UPC], [depcc="$UPC" am_compiler_list=],
46
+ [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
47
+ [depcc="$$1" am_compiler_list=])
48
+
49
+ AC_CACHE_CHECK([dependency style of $depcc],
50
+ [am_cv_$1_dependencies_compiler_type],
51
+ [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
52
+ # We make a subdir and do the tests there. Otherwise we can end up
53
+ # making bogus files that we don't know about and never remove. For
54
+ # instance it was reported that on HP-UX the gcc test will end up
55
+ # making a dummy file named 'D' -- because '-MD' means "put the output
56
+ # in D".
57
+ rm -rf conftest.dir
58
+ mkdir conftest.dir
59
+ # Copy depcomp to subdir because otherwise we won't find it if we're
60
+ # using a relative directory.
61
+ cp "$am_depcomp" conftest.dir
62
+ cd conftest.dir
63
+ # We will build objects and dependencies in a subdirectory because
64
+ # it helps to detect inapplicable dependency modes. For instance
65
+ # both Tru64's cc and ICC support -MD to output dependencies as a
66
+ # side effect of compilation, but ICC will put the dependencies in
67
+ # the current directory while Tru64 will put them in the object
68
+ # directory.
69
+ mkdir sub
70
+
71
+ am_cv_$1_dependencies_compiler_type=none
72
+ if test "$am_compiler_list" = ""; then
73
+ am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
74
+ fi
75
+ am__universal=false
76
+ m4_case([$1], [CC],
77
+ [case " $depcc " in #(
78
+ *\ -arch\ *\ -arch\ *) am__universal=true ;;
79
+ esac],
80
+ [CXX],
81
+ [case " $depcc " in #(
82
+ *\ -arch\ *\ -arch\ *) am__universal=true ;;
83
+ esac])
84
+
85
+ for depmode in $am_compiler_list; do
86
+ # Setup a source with many dependencies, because some compilers
87
+ # like to wrap large dependency lists on column 80 (with \), and
88
+ # we should not choose a depcomp mode which is confused by this.
89
+ #
90
+ # We need to recreate these files for each test, as the compiler may
91
+ # overwrite some of them when testing with obscure command lines.
92
+ # This happens at least with the AIX C compiler.
93
+ : > sub/conftest.c
94
+ for i in 1 2 3 4 5 6; do
95
+ echo '#include "conftst'$i'.h"' >> sub/conftest.c
96
+ # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
97
+ # Solaris 10 /bin/sh.
98
+ echo '/* dummy */' > sub/conftst$i.h
99
+ done
100
+ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
101
+
102
+ # We check with '-c' and '-o' for the sake of the "dashmstdout"
103
+ # mode. It turns out that the SunPro C++ compiler does not properly
104
+ # handle '-M -o', and we need to detect this. Also, some Intel
105
+ # versions had trouble with output in subdirs.
106
+ am__obj=sub/conftest.${OBJEXT-o}
107
+ am__minus_obj="-o $am__obj"
108
+ case $depmode in
109
+ gcc)
110
+ # This depmode causes a compiler race in universal mode.
111
+ test "$am__universal" = false || continue
112
+ ;;
113
+ nosideeffect)
114
+ # After this tag, mechanisms are not by side-effect, so they'll
115
+ # only be used when explicitly requested.
116
+ if test "x$enable_dependency_tracking" = xyes; then
117
+ continue
118
+ else
119
+ break
120
+ fi
121
+ ;;
122
+ msvc7 | msvc7msys | msvisualcpp | msvcmsys)
123
+ # This compiler won't grok '-c -o', but also, the minuso test has
124
+ # not run yet. These depmodes are late enough in the game, and
125
+ # so weak that their functioning should not be impacted.
126
+ am__obj=conftest.${OBJEXT-o}
127
+ am__minus_obj=
128
+ ;;
129
+ none) break ;;
130
+ esac
131
+ if depmode=$depmode \
132
+ source=sub/conftest.c object=$am__obj \
133
+ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
134
+ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
135
+ >/dev/null 2>conftest.err &&
136
+ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
137
+ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
138
+ grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
139
+ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
140
+ # icc doesn't choke on unknown options, it will just issue warnings
141
+ # or remarks (even with -Werror). So we grep stderr for any message
142
+ # that says an option was ignored or not supported.
143
+ # When given -MP, icc 7.0 and 7.1 complain thusly:
144
+ # icc: Command line warning: ignoring option '-M'; no argument required
145
+ # The diagnosis changed in icc 8.0:
146
+ # icc: Command line remark: option '-MP' not supported
147
+ if (grep 'ignoring option' conftest.err ||
148
+ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
149
+ am_cv_$1_dependencies_compiler_type=$depmode
150
+ break
151
+ fi
152
+ fi
153
+ done
154
+
155
+ cd ..
156
+ rm -rf conftest.dir
157
+ else
158
+ am_cv_$1_dependencies_compiler_type=none
159
+ fi
160
+ ])
161
+ AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
162
+ AM_CONDITIONAL([am__fastdep$1], [
163
+ test "x$enable_dependency_tracking" != xno \
164
+ && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
165
+ ])
166
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/depend.m4:166: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
167
+ AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
168
+ ])
169
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/depend.m4:189: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
170
+ AS_HELP_STRING(
171
+ [--enable-dependency-tracking],
172
+ [do not reject slow dependency extractors])
173
+ AS_HELP_STRING(
174
+ [--disable-dependency-tracking],
175
+ [speeds up one-time build])])
176
+ if test "x$enable_dependency_tracking" != xno; then
177
+ am_depcomp="$ac_aux_dir/depcomp"
178
+ AMDEPBACKSLASH='\'
179
+ am__nodep='_no'
180
+ fi
181
+ AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
182
+ AC_SUBST([AMDEPBACKSLASH])dnl
183
+ _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
184
+ AC_SUBST([am__nodep])dnl
185
+ _AM_SUBST_NOTMAKE([am__nodep])dnl
186
+ ])
187
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/depout.m4:61: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
188
+ # Older Autoconf quotes --file arguments for eval, but not when files
189
+ # are listed without --file. Let's play safe and only enable the eval
190
+ # if we detect the quoting.
191
+ case $CONFIG_FILES in
192
+ *\'*) eval set x "$CONFIG_FILES" ;;
193
+ *) set x $CONFIG_FILES ;;
194
+ esac
195
+ shift
196
+ for mf
197
+ do
198
+ # Strip MF so we end up with the name of the file.
199
+ mf=`echo "$mf" | sed -e 's/:.*$//'`
200
+ # Check whether this is an Automake generated Makefile or not.
201
+ # We used to match only the files named 'Makefile.in', but
202
+ # some people rename them; so instead we look at the file content.
203
+ # Grep'ing the first line is not enough: some people post-process
204
+ # each Makefile.in and add a new line on top of each file to say so.
205
+ # Grep'ing the whole file is not good either: AIX grep has a line
206
+ # limit of 2048, but all sed's we know have understand at least 4000.
207
+ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
208
+ dirpart=`AS_DIRNAME("$mf")`
209
+ else
210
+ continue
211
+ fi
212
+ # Extract the definition of DEPDIR, am__include, and am__quote
213
+ # from the Makefile without running 'make'.
214
+ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
215
+ test -z "$DEPDIR" && continue
216
+ am__include=`sed -n 's/^am__include = //p' < "$mf"`
217
+ test -z "$am__include" && continue
218
+ am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
219
+ # Find all dependency output files, they are included files with
220
+ # $(DEPDIR) in their names. We invoke sed twice because it is the
221
+ # simplest approach to changing $(DEPDIR) to its actual value in the
222
+ # expansion.
223
+ for file in `sed -n "
224
+ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
225
+ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
226
+ # Make sure the directory exists.
227
+ test -f "$dirpart/$file" && continue
228
+ fdir=`AS_DIRNAME(["$file"])`
229
+ AS_MKDIR_P([$dirpart/$fdir])
230
+ # echo "creating $dirpart/$file"
231
+ echo '# dummy' > "$dirpart/$file"
232
+ done
233
+ done
234
+ }
235
+ ])
236
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
237
+ [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
238
+ [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
239
+ ])
240
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/init.m4:167: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
241
+ dnl Autoconf wants to disallow AM_ names. We explicitly allow
242
+ dnl the ones we care about.
243
+ m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
244
+ AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
245
+ AC_REQUIRE([AC_PROG_INSTALL])dnl
246
+ if test "`cd $srcdir && pwd`" != "`pwd`"; then
247
+ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
248
+ # is not polluted with repeated "-I."
249
+ AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
250
+ # test to see if srcdir already configured
251
+ if test -f $srcdir/config.status; then
252
+ AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
253
+ fi
254
+ fi
255
+
256
+ # test whether we have cygpath
257
+ if test -z "$CYGPATH_W"; then
258
+ if (cygpath --version) >/dev/null 2>/dev/null; then
259
+ CYGPATH_W='cygpath -w'
260
+ else
261
+ CYGPATH_W=echo
262
+ fi
263
+ fi
264
+ AC_SUBST([CYGPATH_W])
265
+
266
+ # Define the identity of the package.
267
+ dnl Distinguish between old-style and new-style calls.
268
+ m4_ifval([$2],
269
+ [AC_DIAGNOSE([obsolete],
270
+ [$0: two- and three-arguments forms are deprecated.])
271
+ m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
272
+ AC_SUBST([PACKAGE], [$1])dnl
273
+ AC_SUBST([VERSION], [$2])],
274
+ [_AM_SET_OPTIONS([$1])dnl
275
+ dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
276
+ m4_if(
277
+ m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
278
+ [ok:ok],,
279
+ [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
280
+ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
281
+ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
282
+
283
+ _AM_IF_OPTION([no-define],,
284
+ [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
285
+ AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
286
+
287
+ # Some tools Automake needs.
288
+ AC_REQUIRE([AM_SANITY_CHECK])dnl
289
+ AC_REQUIRE([AC_ARG_PROGRAM])dnl
290
+ AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
291
+ AM_MISSING_PROG([AUTOCONF], [autoconf])
292
+ AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
293
+ AM_MISSING_PROG([AUTOHEADER], [autoheader])
294
+ AM_MISSING_PROG([MAKEINFO], [makeinfo])
295
+ AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
296
+ AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
297
+ AC_REQUIRE([AC_PROG_MKDIR_P])dnl
298
+ # For better backward compatibility. To be removed once Automake 1.9.x
299
+ # dies out for good. For more background, see:
300
+ # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
301
+ # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
302
+ AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
303
+ # We need awk for the "check" target. The system "awk" is bad on
304
+ # some platforms.
305
+ AC_REQUIRE([AC_PROG_AWK])dnl
306
+ AC_REQUIRE([AC_PROG_MAKE_SET])dnl
307
+ AC_REQUIRE([AM_SET_LEADING_DOT])dnl
308
+ _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
309
+ [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
310
+ [_AM_PROG_TAR([v7])])])
311
+ _AM_IF_OPTION([no-dependencies],,
312
+ [AC_PROVIDE_IFELSE([AC_PROG_CC],
313
+ [_AM_DEPENDENCIES([CC])],
314
+ [m4_define([AC_PROG_CC],
315
+ m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
316
+ AC_PROVIDE_IFELSE([AC_PROG_CXX],
317
+ [_AM_DEPENDENCIES([CXX])],
318
+ [m4_define([AC_PROG_CXX],
319
+ m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
320
+ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
321
+ [_AM_DEPENDENCIES([OBJC])],
322
+ [m4_define([AC_PROG_OBJC],
323
+ m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
324
+ AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
325
+ [_AM_DEPENDENCIES([OBJCXX])],
326
+ [m4_define([AC_PROG_OBJCXX],
327
+ m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
328
+ ])
329
+ AC_REQUIRE([AM_SILENT_RULES])dnl
330
+ dnl The testsuite driver may need to know about EXEEXT, so add the
331
+ dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
332
+ dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
333
+ AC_CONFIG_COMMANDS_PRE(dnl
334
+ [m4_provide_if([_AM_COMPILER_EXEEXT],
335
+ [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
336
+
337
+ # POSIX will say in a future version that running "rm -f" with no argument
338
+ # is OK; and we want to be able to make that assumption in our Makefile
339
+ # recipes. So use an aggressive probe to check that the usage we want is
340
+ # actually supported "in the wild" to an acceptable degree.
341
+ # See automake bug#10828.
342
+ # To make any issue more visible, cause the running configure to be aborted
343
+ # by default if the 'rm' program in use doesn't match our expectations; the
344
+ # user can still override this though.
345
+ if rm -f && rm -fr && rm -rf; then : OK; else
346
+ cat >&2 <<'END'
347
+ Oops!
348
+
349
+ Your 'rm' program seems unable to run without file operands specified
350
+ on the command line, even when the '-f' option is present. This is contrary
351
+ to the behaviour of most rm programs out there, and not conforming with
352
+ the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
353
+
354
+ Please tell bug-automake@gnu.org about your system, including the value
355
+ of your $PATH and any error possibly output before this message. This
356
+ can help us improve future automake versions.
357
+
358
+ END
359
+ if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
360
+ echo 'Configuration will proceed anyway, since you have set the' >&2
361
+ echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
362
+ echo >&2
363
+ else
364
+ cat >&2 <<'END'
365
+ Aborting the configuration process, to ensure you take notice of the issue.
366
+
367
+ You can download and install GNU coreutils to get an 'rm' implementation
368
+ that behaves properly: <http://www.gnu.org/software/coreutils/>.
369
+
370
+ If you want to complete the configuration process using your problematic
371
+ 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
372
+ to "yes", and re-run configure.
373
+
374
+ END
375
+ AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
376
+ fi
377
+ fi])
378
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/init.m4:194: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
379
+ _am_arg=$1
380
+ _am_stamp_count=1
381
+ for _am_header in $config_headers :; do
382
+ case $_am_header in
383
+ $_am_arg | $_am_arg:* )
384
+ break ;;
385
+ * )
386
+ _am_stamp_count=`expr $_am_stamp_count + 1` ;;
387
+ esac
388
+ done
389
+ echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
390
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/install-sh.m4:21: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
391
+ if test x"${install_sh}" != xset; then
392
+ case $am_aux_dir in
393
+ *\ * | *\ *)
394
+ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
395
+ *)
396
+ install_sh="\${SHELL} $am_aux_dir/install-sh"
397
+ esac
398
+ fi
399
+ AC_SUBST([install_sh])])
400
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/lead-dot.m4:19: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
401
+ mkdir .tst 2>/dev/null
402
+ if test -d .tst; then
403
+ am__leading_dot=.
404
+ else
405
+ am__leading_dot=_
406
+ fi
407
+ rmdir .tst 2>/dev/null
408
+ AC_SUBST([am__leading_dot])])
409
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/maintainer.m4:35: -1- AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]),
410
+ [enable], [m4_define([am_maintainer_other], [disable])],
411
+ [disable], [m4_define([am_maintainer_other], [enable])],
412
+ [m4_define([am_maintainer_other], [enable])
413
+ m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
414
+ AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
415
+ dnl maintainer-mode's default is 'disable' unless 'enable' is passed
416
+ AC_ARG_ENABLE([maintainer-mode],
417
+ [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
418
+ am_maintainer_other[ make rules and dependencies not useful
419
+ (and sometimes confusing) to the casual installer])],
420
+ [USE_MAINTAINER_MODE=$enableval],
421
+ [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
422
+ AC_MSG_RESULT([$USE_MAINTAINER_MODE])
423
+ AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
424
+ MAINT=$MAINTAINER_MODE_TRUE
425
+ AC_SUBST([MAINT])dnl
426
+
427
+ ])
428
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/make.m4:49: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
429
+ cat > confinc << 'END'
430
+ am__doit:
431
+ @echo this is the am__doit target
432
+ .PHONY: am__doit
433
+ END
434
+ # If we don't find an include directive, just comment out the code.
435
+ AC_MSG_CHECKING([for style of include used by $am_make])
436
+ am__include="#"
437
+ am__quote=
438
+ _am_result=none
439
+ # First try GNU make style include.
440
+ echo "include confinc" > confmf
441
+ # Ignore all kinds of additional output from 'make'.
442
+ case `$am_make -s -f confmf 2> /dev/null` in #(
443
+ *the\ am__doit\ target*)
444
+ am__include=include
445
+ am__quote=
446
+ _am_result=GNU
447
+ ;;
448
+ esac
449
+ # Now try BSD make style include.
450
+ if test "$am__include" = "#"; then
451
+ echo '.include "confinc"' > confmf
452
+ case `$am_make -s -f confmf 2> /dev/null` in #(
453
+ *the\ am__doit\ target*)
454
+ am__include=.include
455
+ am__quote="\""
456
+ _am_result=BSD
457
+ ;;
458
+ esac
459
+ fi
460
+ AC_SUBST([am__include])
461
+ AC_SUBST([am__quote])
462
+ AC_MSG_RESULT([$_am_result])
463
+ rm -f confinc confmf
464
+ ])
465
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
466
+ $1=${$1-"${am_missing_run}$2"}
467
+ AC_SUBST($1)])
468
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/missing.m4:38: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
469
+ AC_REQUIRE_AUX_FILE([missing])dnl
470
+ if test x"${MISSING+set}" != xset; then
471
+ case $am_aux_dir in
472
+ *\ * | *\ *)
473
+ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
474
+ *)
475
+ MISSING="\${SHELL} $am_aux_dir/missing" ;;
476
+ esac
477
+ fi
478
+ # Use eval to expand $SHELL
479
+ if eval "$MISSING --is-lightweight"; then
480
+ am_missing_run="$MISSING "
481
+ else
482
+ am_missing_run=
483
+ AC_MSG_WARN(['missing' script is too old or missing])
484
+ fi
485
+ ])
486
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/options.m4:12: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
487
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/options.m4:18: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
488
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/options.m4:24: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
489
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/options.m4:30: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
490
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/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
491
+ AC_REQUIRE_AUX_FILE([compile])dnl
492
+ AC_LANG_PUSH([C])dnl
493
+ AC_CACHE_CHECK(
494
+ [whether $CC understands -c and -o together],
495
+ [am_cv_prog_cc_c_o],
496
+ [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
497
+ # Make sure it works both with $CC and with simple cc.
498
+ # Following AC_PROG_CC_C_O, we do the test twice because some
499
+ # compilers refuse to overwrite an existing .o file with -o,
500
+ # though they will create one.
501
+ am_cv_prog_cc_c_o=yes
502
+ for am_i in 1 2; do
503
+ if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
504
+ && test -f conftest2.$ac_objext; then
505
+ : OK
506
+ else
507
+ am_cv_prog_cc_c_o=no
508
+ break
509
+ fi
510
+ done
511
+ rm -f core conftest*
512
+ unset am_i])
513
+ if test "$am_cv_prog_cc_c_o" != yes; then
514
+ # Losing compiler, so override with the script.
515
+ # FIXME: It is wrong to rewrite CC.
516
+ # But if we don't then we get into trouble of one sort or another.
517
+ # A longer-term fix would be to have automake use am__CC in this case,
518
+ # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
519
+ CC="$am_aux_dir/compile $CC"
520
+ fi
521
+ AC_LANG_POP([C])])
522
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
523
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/runlog.m4:17: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
524
+ ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
525
+ ac_status=$?
526
+ echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
527
+ (exit $ac_status); }])
528
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/sanity.m4:82: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
529
+ # Reject unsafe characters in $srcdir or the absolute working directory
530
+ # name. Accept space and tab only in the latter.
531
+ am_lf='
532
+ '
533
+ case `pwd` in
534
+ *[[\\\"\#\$\&\'\`$am_lf]]*)
535
+ AC_MSG_ERROR([unsafe absolute working directory name]);;
536
+ esac
537
+ case $srcdir in
538
+ *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
539
+ AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
540
+ esac
541
+
542
+ # Do 'set' in a subshell so we don't clobber the current shell's
543
+ # arguments. Must try -L first in case configure is actually a
544
+ # symlink; some systems play weird games with the mod time of symlinks
545
+ # (eg FreeBSD returns the mod time of the symlink's containing
546
+ # directory).
547
+ if (
548
+ am_has_slept=no
549
+ for am_try in 1 2; do
550
+ echo "timestamp, slept: $am_has_slept" > conftest.file
551
+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
552
+ if test "$[*]" = "X"; then
553
+ # -L didn't work.
554
+ set X `ls -t "$srcdir/configure" conftest.file`
555
+ fi
556
+ if test "$[*]" != "X $srcdir/configure conftest.file" \
557
+ && test "$[*]" != "X conftest.file $srcdir/configure"; then
558
+
559
+ # If neither matched, then we have a broken ls. This can happen
560
+ # if, for instance, CONFIG_SHELL is bash and it inherits a
561
+ # broken ls alias from the environment. This has actually
562
+ # happened. Such a system could not be considered "sane".
563
+ AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
564
+ alias in your environment])
565
+ fi
566
+ if test "$[2]" = conftest.file || test $am_try -eq 2; then
567
+ break
568
+ fi
569
+ # Just in case.
570
+ sleep 1
571
+ am_has_slept=yes
572
+ done
573
+ test "$[2]" = conftest.file
574
+ )
575
+ then
576
+ # Ok.
577
+ :
578
+ else
579
+ AC_MSG_ERROR([newly created file is older than distributed files!
580
+ Check your system clock])
581
+ fi
582
+ AC_MSG_RESULT([yes])
583
+ # If we didn't sleep, we still need to ensure time stamps of config.status and
584
+ # generated files are strictly newer.
585
+ am_sleep_pid=
586
+ if grep 'slept: no' conftest.file >/dev/null 2>&1; then
587
+ ( sleep 1 ) &
588
+ am_sleep_pid=$!
589
+ fi
590
+ AC_CONFIG_COMMANDS_PRE(
591
+ [AC_MSG_CHECKING([that generated files are newer than configure])
592
+ if test -n "$am_sleep_pid"; then
593
+ # Hide warnings about reused PIDs.
594
+ wait $am_sleep_pid 2>/dev/null
595
+ fi
596
+ AC_MSG_RESULT([done])])
597
+ rm -f conftest.file
598
+ ])
599
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/silent.m4:60: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
600
+ AS_HELP_STRING(
601
+ [--enable-silent-rules],
602
+ [less verbose build output (undo: "make V=1")])
603
+ AS_HELP_STRING(
604
+ [--disable-silent-rules],
605
+ [verbose build output (undo: "make V=0")])dnl
606
+ ])
607
+ case $enable_silent_rules in @%:@ (((
608
+ yes) AM_DEFAULT_VERBOSITY=0;;
609
+ no) AM_DEFAULT_VERBOSITY=1;;
610
+ *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
611
+ esac
612
+ dnl
613
+ dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
614
+ dnl do not support nested variable expansions.
615
+ dnl See automake bug#9928 and bug#10237.
616
+ am_make=${MAKE-make}
617
+ AC_CACHE_CHECK([whether $am_make supports nested variables],
618
+ [am_cv_make_support_nested_variables],
619
+ [if AS_ECHO([['TRUE=$(BAR$(V))
620
+ BAR0=false
621
+ BAR1=true
622
+ V=1
623
+ am__doit:
624
+ @$(TRUE)
625
+ .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
626
+ am_cv_make_support_nested_variables=yes
627
+ else
628
+ am_cv_make_support_nested_variables=no
629
+ fi])
630
+ if test $am_cv_make_support_nested_variables = yes; then
631
+ dnl Using '$V' instead of '$(V)' breaks IRIX make.
632
+ AM_V='$(V)'
633
+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
634
+ else
635
+ AM_V=$AM_DEFAULT_VERBOSITY
636
+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
637
+ fi
638
+ AC_SUBST([AM_V])dnl
639
+ AM_SUBST_NOTMAKE([AM_V])dnl
640
+ AC_SUBST([AM_DEFAULT_V])dnl
641
+ AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
642
+ AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
643
+ AM_BACKSLASH='\'
644
+ AC_SUBST([AM_BACKSLASH])dnl
645
+ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
646
+ ])
647
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/strip.m4:28: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
648
+ # Installed binaries are usually stripped using 'strip' when the user
649
+ # run "make install-strip". However 'strip' might not be the right
650
+ # tool to use in cross-compilation environments, therefore Automake
651
+ # will honor the 'STRIP' environment variable to overrule this program.
652
+ dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
653
+ if test "$cross_compiling" != no; then
654
+ AC_CHECK_TOOL([STRIP], [strip], :)
655
+ fi
656
+ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
657
+ AC_SUBST([INSTALL_STRIP_PROGRAM])])
658
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
659
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
660
+ m4trace:/opt/boxen/homebrew/Cellar/automake/1.14/share/aclocal-1.14/tar.m4:132: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
661
+ # in the wild :-( We should find a proper way to deprecate it ...
662
+ AC_SUBST([AMTAR], ['$${TAR-tar}'])
663
+
664
+ # We'll loop over all known methods to create a tar archive until one works.
665
+ _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
666
+
667
+ m4_if([$1], [v7],
668
+ [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
669
+
670
+ [m4_case([$1],
671
+ [ustar],
672
+ [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
673
+ # There is notably a 21 bits limit for the UID and the GID. In fact,
674
+ # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
675
+ # and bug#13588).
676
+ am_max_uid=2097151 # 2^21 - 1
677
+ am_max_gid=$am_max_uid
678
+ # The $UID and $GID variables are not portable, so we need to resort
679
+ # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
680
+ # below are definitely unexpected, so allow the users to see them
681
+ # (that is, avoid stderr redirection).
682
+ am_uid=`id -u || echo unknown`
683
+ am_gid=`id -g || echo unknown`
684
+ AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
685
+ if test $am_uid -le $am_max_uid; then
686
+ AC_MSG_RESULT([yes])
687
+ else
688
+ AC_MSG_RESULT([no])
689
+ _am_tools=none
690
+ fi
691
+ AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
692
+ if test $am_gid -le $am_max_gid; then
693
+ AC_MSG_RESULT([yes])
694
+ else
695
+ AC_MSG_RESULT([no])
696
+ _am_tools=none
697
+ fi],
698
+
699
+ [pax],
700
+ [],
701
+
702
+ [m4_fatal([Unknown tar format])])
703
+
704
+ AC_MSG_CHECKING([how to create a $1 tar archive])
705
+
706
+ # Go ahead even if we have the value already cached. We do so because we
707
+ # need to set the values for the 'am__tar' and 'am__untar' variables.
708
+ _am_tools=${am_cv_prog_tar_$1-$_am_tools}
709
+
710
+ for _am_tool in $_am_tools; do
711
+ case $_am_tool in
712
+ gnutar)
713
+ for _am_tar in tar gnutar gtar; do
714
+ AM_RUN_LOG([$_am_tar --version]) && break
715
+ done
716
+ am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
717
+ am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
718
+ am__untar="$_am_tar -xf -"
719
+ ;;
720
+ plaintar)
721
+ # Must skip GNU tar: if it does not support --format= it doesn't create
722
+ # ustar tarball either.
723
+ (tar --version) >/dev/null 2>&1 && continue
724
+ am__tar='tar chf - "$$tardir"'
725
+ am__tar_='tar chf - "$tardir"'
726
+ am__untar='tar xf -'
727
+ ;;
728
+ pax)
729
+ am__tar='pax -L -x $1 -w "$$tardir"'
730
+ am__tar_='pax -L -x $1 -w "$tardir"'
731
+ am__untar='pax -r'
732
+ ;;
733
+ cpio)
734
+ am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
735
+ am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
736
+ am__untar='cpio -i -H $1 -d'
737
+ ;;
738
+ none)
739
+ am__tar=false
740
+ am__tar_=false
741
+ am__untar=false
742
+ ;;
743
+ esac
744
+
745
+ # If the value was cached, stop now. We just wanted to have am__tar
746
+ # and am__untar set.
747
+ test -n "${am_cv_prog_tar_$1}" && break
748
+
749
+ # tar/untar a dummy directory, and stop if the command works.
750
+ rm -rf conftest.dir
751
+ mkdir conftest.dir
752
+ echo GrepMe > conftest.dir/file
753
+ AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
754
+ rm -rf conftest.dir
755
+ if test -s conftest.tar; then
756
+ AM_RUN_LOG([$am__untar <conftest.tar])
757
+ AM_RUN_LOG([cat conftest.dir/file])
758
+ grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
759
+ fi
760
+ done
761
+ rm -rf conftest.dir
762
+
763
+ AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
764
+ AC_MSG_RESULT([$am_cv_prog_tar_$1])])
765
+
766
+ AC_SUBST([am__tar])
767
+ AC_SUBST([am__untar])
768
+ ])
769
+ m4trace:acinclude.m4:34: -1- AC_DEFUN([AC_COMPILE_WARNINGS], [AC_MSG_CHECKING([maximum warning verbosity option])
770
+ if test -n "$CXX"
771
+ then
772
+ if test "$GXX" = "yes"
773
+ then
774
+ ac_compile_warnings_opt='-Wall'
775
+ fi
776
+ CXXFLAGS="$CXXFLAGS $ac_compile_warnings_opt"
777
+ ac_compile_warnings_msg="$ac_compile_warnings_opt for C++"
778
+ fi
779
+
780
+ if test -n "$CC"
781
+ then
782
+ if test "$GCC" = "yes"
783
+ then
784
+ ac_compile_warnings_opt='-Wall'
785
+ fi
786
+ CFLAGS="$CFLAGS $ac_compile_warnings_opt"
787
+ ac_compile_warnings_msg="$ac_compile_warnings_msg $ac_compile_warnings_opt for C"
788
+ fi
789
+ AC_MSG_RESULT($ac_compile_warnings_msg)
790
+ unset ac_compile_warnings_msg
791
+ unset ac_compile_warnings_opt
792
+ ])
793
+ m4trace:acinclude.m4:47: -1- AC_DEFUN([AC_DEBUG_COMPILE], [AC_MSG_CHECKING([debug build option])
794
+ if test -n "$CXX"
795
+ then
796
+ CXXFLAGS="$CXXFLAGS -DDEBUG"
797
+ fi
798
+ if test -n "$CC"
799
+ then
800
+ CFLAGS="$CFLAGS -DDEBUG"
801
+ fi
802
+ AC_MSG_RESULT("-DDEBUG for compilation")
803
+ ])
804
+ m4trace:configure.in:2: -1- m4_pattern_forbid([^_?A[CHUM]_])
805
+ m4trace:configure.in:2: -1- m4_pattern_forbid([_AC_])
806
+ m4trace:configure.in:2: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
807
+ m4trace:configure.in:2: -1- m4_pattern_allow([^AS_FLAGS$])
808
+ m4trace:configure.in:2: -1- m4_pattern_forbid([^_?m4_])
809
+ m4trace:configure.in:2: -1- m4_pattern_forbid([^dnl$])
810
+ m4trace:configure.in:2: -1- m4_pattern_forbid([^_?AS_])
811
+ m4trace:configure.in:2: -1- m4_pattern_allow([^SHELL$])
812
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PATH_SEPARATOR$])
813
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_NAME$])
814
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
815
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_VERSION$])
816
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_STRING$])
817
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
818
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_URL$])
819
+ m4trace:configure.in:2: -1- m4_pattern_allow([^exec_prefix$])
820
+ m4trace:configure.in:2: -1- m4_pattern_allow([^prefix$])
821
+ m4trace:configure.in:2: -1- m4_pattern_allow([^program_transform_name$])
822
+ m4trace:configure.in:2: -1- m4_pattern_allow([^bindir$])
823
+ m4trace:configure.in:2: -1- m4_pattern_allow([^sbindir$])
824
+ m4trace:configure.in:2: -1- m4_pattern_allow([^libexecdir$])
825
+ m4trace:configure.in:2: -1- m4_pattern_allow([^datarootdir$])
826
+ m4trace:configure.in:2: -1- m4_pattern_allow([^datadir$])
827
+ m4trace:configure.in:2: -1- m4_pattern_allow([^sysconfdir$])
828
+ m4trace:configure.in:2: -1- m4_pattern_allow([^sharedstatedir$])
829
+ m4trace:configure.in:2: -1- m4_pattern_allow([^localstatedir$])
830
+ m4trace:configure.in:2: -1- m4_pattern_allow([^includedir$])
831
+ m4trace:configure.in:2: -1- m4_pattern_allow([^oldincludedir$])
832
+ m4trace:configure.in:2: -1- m4_pattern_allow([^docdir$])
833
+ m4trace:configure.in:2: -1- m4_pattern_allow([^infodir$])
834
+ m4trace:configure.in:2: -1- m4_pattern_allow([^htmldir$])
835
+ m4trace:configure.in:2: -1- m4_pattern_allow([^dvidir$])
836
+ m4trace:configure.in:2: -1- m4_pattern_allow([^pdfdir$])
837
+ m4trace:configure.in:2: -1- m4_pattern_allow([^psdir$])
838
+ m4trace:configure.in:2: -1- m4_pattern_allow([^libdir$])
839
+ m4trace:configure.in:2: -1- m4_pattern_allow([^localedir$])
840
+ m4trace:configure.in:2: -1- m4_pattern_allow([^mandir$])
841
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_NAME$])
842
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
843
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_VERSION$])
844
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_STRING$])
845
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
846
+ m4trace:configure.in:2: -1- m4_pattern_allow([^PACKAGE_URL$])
847
+ m4trace:configure.in:2: -1- m4_pattern_allow([^DEFS$])
848
+ m4trace:configure.in:2: -1- m4_pattern_allow([^ECHO_C$])
849
+ m4trace:configure.in:2: -1- m4_pattern_allow([^ECHO_N$])
850
+ m4trace:configure.in:2: -1- m4_pattern_allow([^ECHO_T$])
851
+ m4trace:configure.in:2: -1- m4_pattern_allow([^LIBS$])
852
+ m4trace:configure.in:2: -1- m4_pattern_allow([^build_alias$])
853
+ m4trace:configure.in:2: -1- m4_pattern_allow([^host_alias$])
854
+ m4trace:configure.in:2: -1- m4_pattern_allow([^target_alias$])
855
+ m4trace:configure.in:4: -1- AM_INIT_AUTOMAKE
856
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
857
+ m4trace:configure.in:4: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
858
+ m4trace:configure.in:4: -1- AM_AUTOMAKE_VERSION([1.14])
859
+ m4trace:configure.in:4: -1- _AM_AUTOCONF_VERSION([2.69])
860
+ m4trace:configure.in:4: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
861
+ m4trace:configure.in:4: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
862
+ m4trace:configure.in:4: -1- m4_pattern_allow([^INSTALL_DATA$])
863
+ m4trace:configure.in:4: -1- m4_pattern_allow([^am__isrc$])
864
+ m4trace:configure.in:4: -1- _AM_SUBST_NOTMAKE([am__isrc])
865
+ m4trace:configure.in:4: -1- m4_pattern_allow([^CYGPATH_W$])
866
+ m4trace:configure.in:4: -1- _AM_SET_OPTIONS([])
867
+ m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE$])
868
+ m4trace:configure.in:4: -1- m4_pattern_allow([^VERSION$])
869
+ m4trace:configure.in:4: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
870
+ AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
871
+ m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([no-define])
872
+ m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE$])
873
+ m4trace:configure.in:4: -1- m4_pattern_allow([^VERSION$])
874
+ m4trace:configure.in:4: -1- AM_SANITY_CHECK
875
+ m4trace:configure.in:4: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
876
+ m4trace:configure.in:4: -1- AM_MISSING_HAS_RUN
877
+ m4trace:configure.in:4: -1- AM_AUX_DIR_EXPAND
878
+ m4trace:configure.in:4: -1- m4_pattern_allow([^ACLOCAL$])
879
+ m4trace:configure.in:4: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
880
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AUTOCONF$])
881
+ m4trace:configure.in:4: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
882
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AUTOMAKE$])
883
+ m4trace:configure.in:4: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
884
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AUTOHEADER$])
885
+ m4trace:configure.in:4: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
886
+ m4trace:configure.in:4: -1- m4_pattern_allow([^MAKEINFO$])
887
+ m4trace:configure.in:4: -1- AM_PROG_INSTALL_SH
888
+ m4trace:configure.in:4: -1- m4_pattern_allow([^install_sh$])
889
+ m4trace:configure.in:4: -1- AM_PROG_INSTALL_STRIP
890
+ m4trace:configure.in:4: -1- m4_pattern_allow([^STRIP$])
891
+ m4trace:configure.in:4: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
892
+ m4trace:configure.in:4: -1- m4_pattern_allow([^MKDIR_P$])
893
+ m4trace:configure.in:4: -1- m4_pattern_allow([^mkdir_p$])
894
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AWK$])
895
+ m4trace:configure.in:4: -1- m4_pattern_allow([^SET_MAKE$])
896
+ m4trace:configure.in:4: -1- AM_SET_LEADING_DOT
897
+ m4trace:configure.in:4: -1- m4_pattern_allow([^am__leading_dot$])
898
+ m4trace:configure.in:4: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
899
+ [_AM_PROG_TAR([v7])])])
900
+ m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([tar-ustar])
901
+ m4trace:configure.in:4: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
902
+ m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([tar-pax])
903
+ m4trace:configure.in:4: -1- _AM_PROG_TAR([v7])
904
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AMTAR$])
905
+ m4trace:configure.in:4: -1- m4_pattern_allow([^am__tar$])
906
+ m4trace:configure.in:4: -1- m4_pattern_allow([^am__untar$])
907
+ m4trace:configure.in:4: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
908
+ [_AM_DEPENDENCIES([CC])],
909
+ [m4_define([AC_PROG_CC],
910
+ m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
911
+ AC_PROVIDE_IFELSE([AC_PROG_CXX],
912
+ [_AM_DEPENDENCIES([CXX])],
913
+ [m4_define([AC_PROG_CXX],
914
+ m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
915
+ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
916
+ [_AM_DEPENDENCIES([OBJC])],
917
+ [m4_define([AC_PROG_OBJC],
918
+ m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
919
+ AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
920
+ [_AM_DEPENDENCIES([OBJCXX])],
921
+ [m4_define([AC_PROG_OBJCXX],
922
+ m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
923
+ ])
924
+ m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([no-dependencies])
925
+ m4trace:configure.in:4: -1- AM_SILENT_RULES
926
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AM_V$])
927
+ m4trace:configure.in:4: -1- AM_SUBST_NOTMAKE([AM_V])
928
+ m4trace:configure.in:4: -1- _AM_SUBST_NOTMAKE([AM_V])
929
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AM_DEFAULT_V$])
930
+ m4trace:configure.in:4: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
931
+ m4trace:configure.in:4: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
932
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
933
+ m4trace:configure.in:4: -1- m4_pattern_allow([^AM_BACKSLASH$])
934
+ m4trace:configure.in:4: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
935
+ m4trace:configure.in:9: -1- m4_pattern_allow([^AWK$])
936
+ m4trace:configure.in:10: -1- m4_pattern_allow([^CC$])
937
+ m4trace:configure.in:10: -1- m4_pattern_allow([^CFLAGS$])
938
+ m4trace:configure.in:10: -1- m4_pattern_allow([^LDFLAGS$])
939
+ m4trace:configure.in:10: -1- m4_pattern_allow([^LIBS$])
940
+ m4trace:configure.in:10: -1- m4_pattern_allow([^CPPFLAGS$])
941
+ m4trace:configure.in:10: -1- m4_pattern_allow([^CC$])
942
+ m4trace:configure.in:10: -1- m4_pattern_allow([^CC$])
943
+ m4trace:configure.in:10: -1- m4_pattern_allow([^CC$])
944
+ m4trace:configure.in:10: -1- m4_pattern_allow([^CC$])
945
+ m4trace:configure.in:10: -1- m4_pattern_allow([^ac_ct_CC$])
946
+ m4trace:configure.in:10: -1- m4_pattern_allow([^EXEEXT$])
947
+ m4trace:configure.in:10: -1- m4_pattern_allow([^OBJEXT$])
948
+ m4trace:configure.in:10: -1- _AM_PROG_CC_C_O
949
+ m4trace:configure.in:10: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
950
+ m4trace:configure.in:10: -1- _AM_DEPENDENCIES([CC])
951
+ m4trace:configure.in:10: -1- AM_SET_DEPDIR
952
+ m4trace:configure.in:10: -1- m4_pattern_allow([^DEPDIR$])
953
+ m4trace:configure.in:10: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
954
+ m4trace:configure.in:10: -1- AM_MAKE_INCLUDE
955
+ m4trace:configure.in:10: -1- m4_pattern_allow([^am__include$])
956
+ m4trace:configure.in:10: -1- m4_pattern_allow([^am__quote$])
957
+ m4trace:configure.in:10: -1- AM_DEP_TRACK
958
+ m4trace:configure.in:10: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
959
+ m4trace:configure.in:10: -1- m4_pattern_allow([^AMDEP_TRUE$])
960
+ m4trace:configure.in:10: -1- m4_pattern_allow([^AMDEP_FALSE$])
961
+ m4trace:configure.in:10: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
962
+ m4trace:configure.in:10: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
963
+ m4trace:configure.in:10: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
964
+ m4trace:configure.in:10: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
965
+ m4trace:configure.in:10: -1- m4_pattern_allow([^am__nodep$])
966
+ m4trace:configure.in:10: -1- _AM_SUBST_NOTMAKE([am__nodep])
967
+ m4trace:configure.in:10: -1- m4_pattern_allow([^CCDEPMODE$])
968
+ m4trace:configure.in:10: -1- AM_CONDITIONAL([am__fastdepCC], [
969
+ test "x$enable_dependency_tracking" != xno \
970
+ && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
971
+ m4trace:configure.in:10: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
972
+ m4trace:configure.in:10: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
973
+ m4trace:configure.in:10: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
974
+ m4trace:configure.in:10: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
975
+ m4trace:configure.in:11: -1- m4_pattern_allow([^CPP$])
976
+ m4trace:configure.in:11: -1- m4_pattern_allow([^CPPFLAGS$])
977
+ m4trace:configure.in:11: -1- m4_pattern_allow([^CPP$])
978
+ m4trace:configure.in:12: -1- m4_pattern_allow([^CXX$])
979
+ m4trace:configure.in:12: -1- m4_pattern_allow([^CXXFLAGS$])
980
+ m4trace:configure.in:12: -1- m4_pattern_allow([^LDFLAGS$])
981
+ m4trace:configure.in:12: -1- m4_pattern_allow([^LIBS$])
982
+ m4trace:configure.in:12: -1- m4_pattern_allow([^CPPFLAGS$])
983
+ m4trace:configure.in:12: -1- m4_pattern_allow([^CXX$])
984
+ m4trace:configure.in:12: -1- m4_pattern_allow([^ac_ct_CXX$])
985
+ m4trace:configure.in:12: -1- _AM_DEPENDENCIES([CXX])
986
+ m4trace:configure.in:12: -1- m4_pattern_allow([^CXXDEPMODE$])
987
+ m4trace:configure.in:12: -1- AM_CONDITIONAL([am__fastdepCXX], [
988
+ test "x$enable_dependency_tracking" != xno \
989
+ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3])
990
+ m4trace:configure.in:12: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$])
991
+ m4trace:configure.in:12: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$])
992
+ m4trace:configure.in:12: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE])
993
+ m4trace:configure.in:12: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE])
994
+ m4trace:configure.in:14: -1- m4_pattern_allow([^LN_S$])
995
+ m4trace:configure.in:15: -1- m4_pattern_allow([^RANLIB$])
996
+ m4trace:configure.in:18: -1- m4_pattern_allow([^HAVE_LIBINTL$])
997
+ m4trace:configure.in:21: -1- m4_pattern_allow([^GREP$])
998
+ m4trace:configure.in:21: -1- m4_pattern_allow([^EGREP$])
999
+ m4trace:configure.in:21: -1- m4_pattern_allow([^STDC_HEADERS$])
1000
+ m4trace:configure.in:22: -1- m4_pattern_allow([^HAVE_LIBINTL_H$])
1001
+ m4trace:configure.in:23: -1- m4_pattern_allow([^HAVE_DECL_BASENAME$])
1002
+ m4trace:configure.in:26: -1- m4_pattern_allow([^size_t$])
1003
+ m4trace:configure.in:27: -1- m4_pattern_allow([^STAT_MACROS_BROKEN$])
1004
+ m4trace:configure.in:32: -1- m4_pattern_allow([^const$])
1005
+ m4trace:configure.in:33: -1- m4_pattern_allow([^SIZEOF_INT$])
1006
+ m4trace:configure.in:36: -1- m4_pattern_allow([^HAVE_STRDUP$])
1007
+ m4trace:configure.in:36: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1008
+ m4trace:configure.in:36: -1- m4_pattern_allow([^HAVE_GETOPT_LONG$])
1009
+ m4trace:configure.in:36: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1010
+ m4trace:configure.in:36: -1- m4_pattern_allow([^HAVE_BASENAME$])
1011
+ m4trace:configure.in:36: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1012
+ m4trace:configure.in:38: -1- m4_pattern_allow([^HAVE_VPRINTF$])
1013
+ m4trace:configure.in:38: -1- m4_pattern_allow([^HAVE_DOPRNT$])
1014
+ m4trace:configure.in:39: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
1015
+ m4trace:configure.in:39: -1- m4_pattern_allow([^HAVE_MALLOC$])
1016
+ m4trace:configure.in:39: -1- m4_pattern_allow([^HAVE_MALLOC$])
1017
+ m4trace:configure.in:39: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1018
+ m4trace:configure.in:39: -1- m4_pattern_allow([^malloc$])
1019
+ m4trace:configure.in:47: -1- AM_MAINTAINER_MODE
1020
+ m4trace:configure.in:47: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
1021
+ m4trace:configure.in:47: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$])
1022
+ m4trace:configure.in:47: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$])
1023
+ m4trace:configure.in:47: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE])
1024
+ m4trace:configure.in:47: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE])
1025
+ m4trace:configure.in:47: -1- m4_pattern_allow([^MAINT$])
1026
+ m4trace:configure.in:50: -2- AC_COMPILE_WARNINGS
1027
+ m4trace:configure.in:53: -2- AC_DEBUG_COMPILE
1028
+ m4trace:configure.in:66: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1029
+ m4trace:configure.in:66: -1- m4_pattern_allow([^LTLIBOBJS$])
1030
+ m4trace:configure.in:66: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
1031
+ m4trace:configure.in:66: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
1032
+ m4trace:configure.in:66: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
1033
+ m4trace:configure.in:66: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
1034
+ m4trace:configure.in:66: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
1035
+ m4trace:configure.in:66: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
1036
+ m4trace:configure.in:66: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS