Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/elfix:elfix-0.5.x commit in: src/, scripts/, /, tests/gnustack/, doc/, autom4te.cache/, tests/, tests/pxtpax/
Date: Fri, 27 Jul 2012 22:40:17
Message-Id: 1343428794.e1b57ee677ddccc2af47a5a05f5eb4d6bea77d4c.blueness@gentoo
1 commit: e1b57ee677ddccc2af47a5a05f5eb4d6bea77d4c
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 27 22:39:54 2012 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 27 22:39:54 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=e1b57ee6
7
8 Prepare release 0.5.1
9
10 ---
11 ChangeLog | 1 +
12 Makefile.in | 10 +
13 aclocal.m4 | 49 +++
14 autom4te.cache/output.1 | 184 ++++++++-
15 autom4te.cache/{output.1 => output.2} | 184 ++++++++-
16 autom4te.cache/requests | 70 ++++
17 autom4te.cache/traces.1 | 526 +++++++++++++------------
18 aclocal.m4 => autom4te.cache/traces.2 | 715 ++++++++++++++-------------------
19 configure | 184 ++++++++-
20 configure.ac | 2 +-
21 doc/Makefile.in | 10 +
22 scripts/Makefile.in | 10 +
23 src/Makefile.in | 30 ++-
24 tests/Makefile.in | 10 +
25 tests/gnustack/Makefile.in | 70 ++--
26 tests/pxtpax/Makefile.in | 28 +-
27 16 files changed, 1334 insertions(+), 749 deletions(-)
28
29 diff --git a/ChangeLog b/ChangeLog
30 index a1f6659..1ec9b6d 100644
31 --- a/ChangeLog
32 +++ b/ChangeLog
33 @@ -1,5 +1,6 @@
34 2012-07-27
35
36 + * Release 0.5.1
37 * switch from yasm to gcc for assembler for arches other than
38 x86 and amd64
39 * opening an ELF_C_RDWR does not work for either libelf or
40
41 diff --git a/Makefile.in b/Makefile.in
42 index 6f5493f..82dfda6 100644
43 --- a/Makefile.in
44 +++ b/Makefile.in
45 @@ -46,6 +46,12 @@ mkinstalldirs = $(install_sh) -d
46 CONFIG_HEADER = config.h
47 CONFIG_CLEAN_FILES =
48 CONFIG_CLEAN_VPATH_FILES =
49 +AM_V_GEN = $(am__v_GEN_$(V))
50 +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
51 +am__v_GEN_0 = @echo " GEN " $@;
52 +AM_V_at = $(am__v_at_$(V))
53 +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
54 +am__v_at_0 = @
55 SOURCES =
56 DIST_SOURCES =
57 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
58 @@ -101,11 +107,15 @@ distuninstallcheck_listfiles = find . -type f -print
59 distcleancheck_listfiles = find . -type f -print
60 ACLOCAL = @ACLOCAL@
61 AMTAR = @AMTAR@
62 +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
63 AUTOCONF = @AUTOCONF@
64 AUTOHEADER = @AUTOHEADER@
65 AUTOMAKE = @AUTOMAKE@
66 AWK = @AWK@
67 CC = @CC@
68 +CCAS = @CCAS@
69 +CCASDEPMODE = @CCASDEPMODE@
70 +CCASFLAGS = @CCASFLAGS@
71 CCDEPMODE = @CCDEPMODE@
72 CFLAGS = @CFLAGS@
73 CPP = @CPP@
74
75 diff --git a/aclocal.m4 b/aclocal.m4
76 index 1bc55f4..8d33c23 100644
77 --- a/aclocal.m4
78 +++ b/aclocal.m4
79 @@ -55,6 +55,28 @@ m4_ifndef([AC_AUTOCONF_VERSION],
80 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
81 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
82
83 +# Figure out how to run the assembler. -*- Autoconf -*-
84 +
85 +# Copyright (C) 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
86 +#
87 +# This file is free software; the Free Software Foundation
88 +# gives unlimited permission to copy and/or distribute it,
89 +# with or without modifications, as long as this notice is preserved.
90 +
91 +# serial 5
92 +
93 +# AM_PROG_AS
94 +# ----------
95 +AC_DEFUN([AM_PROG_AS],
96 +[# By default we simply use the C compiler to build assembly code.
97 +AC_REQUIRE([AC_PROG_CC])
98 +test "${CCAS+set}" = set || CCAS=$CC
99 +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
100 +AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)])
101 +AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)])
102 +_AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl
103 +])
104 +
105 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
106
107 # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
108 @@ -806,6 +828,33 @@ Check your system clock])
109 fi
110 AC_MSG_RESULT(yes)])
111
112 +# Copyright (C) 2009 Free Software Foundation, Inc.
113 +#
114 +# This file is free software; the Free Software Foundation
115 +# gives unlimited permission to copy and/or distribute it,
116 +# with or without modifications, as long as this notice is preserved.
117 +
118 +# serial 1
119 +
120 +# AM_SILENT_RULES([DEFAULT])
121 +# --------------------------
122 +# Enable less verbose build rules; with the default set to DEFAULT
123 +# (`yes' being less verbose, `no' or empty being verbose).
124 +AC_DEFUN([AM_SILENT_RULES],
125 +[AC_ARG_ENABLE([silent-rules],
126 +[ --enable-silent-rules less verbose build output (undo: `make V=1')
127 + --disable-silent-rules verbose build output (undo: `make V=0')])
128 +case $enable_silent_rules in
129 +yes) AM_DEFAULT_VERBOSITY=0;;
130 +no) AM_DEFAULT_VERBOSITY=1;;
131 +*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
132 +esac
133 +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
134 +AM_BACKSLASH='\'
135 +AC_SUBST([AM_BACKSLASH])dnl
136 +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
137 +])
138 +
139 # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
140 #
141 # This file is free software; the Free Software Foundation
142
143 diff --git a/autom4te.cache/output.1 b/autom4te.cache/output.1
144 index c8b2546..f95d883 100644
145 --- a/autom4te.cache/output.1
146 +++ b/autom4te.cache/output.1
147 @@ -1,6 +1,6 @@
148 @%:@! /bin/sh
149 @%:@ Guess values for system-dependent variables and create Makefiles.
150 -@%:@ Generated by GNU Autoconf 2.68 for elfix 0.5.0.
151 +@%:@ Generated by GNU Autoconf 2.68 for elfix 0.5.1.
152 @%:@
153 @%:@ Report bugs to <http://bugs.gentoo.org/>.
154 @%:@
155 @@ -560,8 +560,8 @@ MAKEFLAGS=
156 # Identity of this package.
157 PACKAGE_NAME='elfix'
158 PACKAGE_TARNAME='elfix'
159 -PACKAGE_VERSION='0.5.0'
160 -PACKAGE_STRING='elfix 0.5.0'
161 +PACKAGE_VERSION='0.5.1'
162 +PACKAGE_STRING='elfix 0.5.1'
163 PACKAGE_BUGREPORT='http://bugs.gentoo.org/'
164 PACKAGE_URL=''
165
166 @@ -607,6 +607,11 @@ ac_subst_vars='am__EXEEXT_FALSE
167 am__EXEEXT_TRUE
168 LTLIBOBJS
169 LIB@&t@OBJS
170 +am__fastdepCCAS_FALSE
171 +am__fastdepCCAS_TRUE
172 +CCASDEPMODE
173 +CCASFLAGS
174 +CCAS
175 EGREP
176 GREP
177 CPP
178 @@ -629,6 +634,8 @@ CC
179 TEST_FALSE
180 TEST_TRUE
181 has_yasm
182 +AM_BACKSLASH
183 +AM_DEFAULT_VERBOSITY
184 am__untar
185 am__tar
186 AMTAR
187 @@ -693,6 +700,7 @@ SHELL'
188 ac_subst_files=''
189 ac_user_opts='
190 enable_option_checking
191 +enable_silent_rules
192 enable_tests
193 enable_xattr
194 enable_dependency_tracking
195 @@ -705,7 +713,9 @@ CFLAGS
196 LDFLAGS
197 LIBS
198 CPPFLAGS
199 -CPP'
200 +CPP
201 +CCAS
202 +CCASFLAGS'
203
204
205 # Initialize some variables set by options.
206 @@ -1248,7 +1258,7 @@ if test "$ac_init_help" = "long"; then
207 # Omit some internal or obsolete options to make the list less imposing.
208 # This message is too long to be a string in the A/UX 3.1 sh.
209 cat <<_ACEOF
210 -\`configure' configures elfix 0.5.0 to adapt to many kinds of systems.
211 +\`configure' configures elfix 0.5.1 to adapt to many kinds of systems.
212
213 Usage: $0 [OPTION]... [VAR=VALUE]...
214
215 @@ -1314,7 +1324,7 @@ fi
216
217 if test -n "$ac_init_help"; then
218 case $ac_init_help in
219 - short | recursive ) echo "Configuration of elfix 0.5.0:";;
220 + short | recursive ) echo "Configuration of elfix 0.5.1:";;
221 esac
222 cat <<\_ACEOF
223
224 @@ -1322,6 +1332,8 @@ Optional Features:
225 --disable-option-checking ignore unrecognized --enable/--with options
226 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
227 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
228 + --enable-silent-rules less verbose build output (undo: `make V=1')
229 + --disable-silent-rules verbose build output (undo: `make V=0')
230 --enable-tests perform tests
231 --enable-xattr enable support for pax markings in xattrs
232 --disable-dependency-tracking speeds up one-time build
233 @@ -1336,6 +1348,8 @@ Some influential environment variables:
234 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
235 you have headers in a nonstandard directory <include dir>
236 CPP C preprocessor
237 + CCAS assembler compiler command (defaults to CC)
238 + CCASFLAGS assembler compiler flags (defaults to CFLAGS)
239
240 Use these variables to override the choices made by `configure' or to help
241 it to find libraries and programs with nonstandard names/locations.
242 @@ -1403,7 +1417,7 @@ fi
243 test -n "$ac_init_help" && exit $ac_status
244 if $ac_init_version; then
245 cat <<\_ACEOF
246 -elfix configure 0.5.0
247 +elfix configure 0.5.1
248 generated by GNU Autoconf 2.68
249
250 Copyright (C) 2010 Free Software Foundation, Inc.
251 @@ -1879,7 +1893,7 @@ cat >config.log <<_ACEOF
252 This file contains any messages produced by compilers while
253 running configure, to aid debugging if configure makes a mistake.
254
255 -It was created by elfix $as_me 0.5.0, which was
256 +It was created by elfix $as_me 0.5.1, which was
257 generated by GNU Autoconf 2.68. Invocation command line was
258
259 $ $0 $@
260 @@ -2700,7 +2714,7 @@ fi
261
262 # Define the identity of the package.
263 PACKAGE='elfix'
264 - VERSION='0.5.0'
265 + VERSION='0.5.1'
266
267
268 cat >>confdefs.h <<_ACEOF
269 @@ -2740,6 +2754,18 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
270
271
272
273 +@%:@ Check whether --enable-silent-rules was given.
274 +if test "${enable_silent_rules+set}" = set; then :
275 + enableval=$enable_silent_rules;
276 +fi
277 +
278 +case $enable_silent_rules in
279 +yes) AM_DEFAULT_VERBOSITY=0;;
280 +no) AM_DEFAULT_VERBOSITY=1;;
281 +*) AM_DEFAULT_VERBOSITY=0;;
282 +esac
283 +AM_BACKSLASH='\'
284 +
285
286 @%:@ Check whether --enable-tests was given.
287 if test "${enable_tests+set}" = set; then :
288 @@ -4975,6 +5001,138 @@ else
289 fi
290
291
292 +# By default we simply use the C compiler to build assembly code.
293 +
294 +test "${CCAS+set}" = set || CCAS=$CC
295 +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
296 +
297 +
298 +
299 +depcc="$CCAS" am_compiler_list=
300 +
301 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
302 +$as_echo_n "checking dependency style of $depcc... " >&6; }
303 +if ${am_cv_CCAS_dependencies_compiler_type+:} false; then :
304 + $as_echo_n "(cached) " >&6
305 +else
306 + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
307 + # We make a subdir and do the tests there. Otherwise we can end up
308 + # making bogus files that we don't know about and never remove. For
309 + # instance it was reported that on HP-UX the gcc test will end up
310 + # making a dummy file named `D' -- because `-MD' means `put the output
311 + # in D'.
312 + mkdir conftest.dir
313 + # Copy depcomp to subdir because otherwise we won't find it if we're
314 + # using a relative directory.
315 + cp "$am_depcomp" conftest.dir
316 + cd conftest.dir
317 + # We will build objects and dependencies in a subdirectory because
318 + # it helps to detect inapplicable dependency modes. For instance
319 + # both Tru64's cc and ICC support -MD to output dependencies as a
320 + # side effect of compilation, but ICC will put the dependencies in
321 + # the current directory while Tru64 will put them in the object
322 + # directory.
323 + mkdir sub
324 +
325 + am_cv_CCAS_dependencies_compiler_type=none
326 + if test "$am_compiler_list" = ""; then
327 + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
328 + fi
329 + am__universal=false
330 +
331 +
332 + for depmode in $am_compiler_list; do
333 + # Setup a source with many dependencies, because some compilers
334 + # like to wrap large dependency lists on column 80 (with \), and
335 + # we should not choose a depcomp mode which is confused by this.
336 + #
337 + # We need to recreate these files for each test, as the compiler may
338 + # overwrite some of them when testing with obscure command lines.
339 + # This happens at least with the AIX C compiler.
340 + : > sub/conftest.c
341 + for i in 1 2 3 4 5 6; do
342 + echo '#include "conftst'$i'.h"' >> sub/conftest.c
343 + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
344 + # Solaris 8's {/usr,}/bin/sh.
345 + touch sub/conftst$i.h
346 + done
347 + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
348 +
349 + # We check with `-c' and `-o' for the sake of the "dashmstdout"
350 + # mode. It turns out that the SunPro C++ compiler does not properly
351 + # handle `-M -o', and we need to detect this. Also, some Intel
352 + # versions had trouble with output in subdirs
353 + am__obj=sub/conftest.${OBJEXT-o}
354 + am__minus_obj="-o $am__obj"
355 + case $depmode in
356 + gcc)
357 + # This depmode causes a compiler race in universal mode.
358 + test "$am__universal" = false || continue
359 + ;;
360 + nosideeffect)
361 + # after this tag, mechanisms are not by side-effect, so they'll
362 + # only be used when explicitly requested
363 + if test "x$enable_dependency_tracking" = xyes; then
364 + continue
365 + else
366 + break
367 + fi
368 + ;;
369 + msvisualcpp | msvcmsys)
370 + # This compiler won't grok `-c -o', but also, the minuso test has
371 + # not run yet. These depmodes are late enough in the game, and
372 + # so weak that their functioning should not be impacted.
373 + am__obj=conftest.${OBJEXT-o}
374 + am__minus_obj=
375 + ;;
376 + none) break ;;
377 + esac
378 + if depmode=$depmode \
379 + source=sub/conftest.c object=$am__obj \
380 + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
381 + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
382 + >/dev/null 2>conftest.err &&
383 + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
384 + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
385 + grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
386 + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
387 + # icc doesn't choke on unknown options, it will just issue warnings
388 + # or remarks (even with -Werror). So we grep stderr for any message
389 + # that says an option was ignored or not supported.
390 + # When given -MP, icc 7.0 and 7.1 complain thusly:
391 + # icc: Command line warning: ignoring option '-M'; no argument required
392 + # The diagnosis changed in icc 8.0:
393 + # icc: Command line remark: option '-MP' not supported
394 + if (grep 'ignoring option' conftest.err ||
395 + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
396 + am_cv_CCAS_dependencies_compiler_type=$depmode
397 + break
398 + fi
399 + fi
400 + done
401 +
402 + cd ..
403 + rm -rf conftest.dir
404 +else
405 + am_cv_CCAS_dependencies_compiler_type=none
406 +fi
407 +
408 +fi
409 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&5
410 +$as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; }
411 +CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type
412 +
413 + if
414 + test "x$enable_dependency_tracking" != xno \
415 + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then
416 + am__fastdepCCAS_TRUE=
417 + am__fastdepCCAS_FALSE='#'
418 +else
419 + am__fastdepCCAS_TRUE='#'
420 + am__fastdepCCAS_FALSE=
421 +fi
422 +
423 +
424
425 # Checks for libraries.
426 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5
427 @@ -5694,6 +5852,10 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
428 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
429 Usually this means the macro was only invoked conditionally." "$LINENO" 5
430 fi
431 +if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then
432 + as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined.
433 +Usually this means the macro was only invoked conditionally." "$LINENO" 5
434 +fi
435
436 : "${CONFIG_STATUS=./config.status}"
437 ac_write_fail=0
438 @@ -6103,7 +6265,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
439 # report actual input values of CONFIG_FILES etc. instead of their
440 # values after options handling.
441 ac_log="
442 -This file was extended by elfix $as_me 0.5.0, which was
443 +This file was extended by elfix $as_me 0.5.1, which was
444 generated by GNU Autoconf 2.68. Invocation command line was
445
446 CONFIG_FILES = $CONFIG_FILES
447 @@ -6169,7 +6331,7 @@ _ACEOF
448 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
449 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
450 ac_cs_version="\\
451 -elfix config.status 0.5.0
452 +elfix config.status 0.5.1
453 configured by $0, generated by GNU Autoconf 2.68,
454 with options \\"\$ac_cs_config\\"
455
456
457 diff --git a/autom4te.cache/output.1 b/autom4te.cache/output.2
458 similarity index 97%
459 copy from autom4te.cache/output.1
460 copy to autom4te.cache/output.2
461 index c8b2546..f95d883 100644
462 --- a/autom4te.cache/output.1
463 +++ b/autom4te.cache/output.2
464 @@ -1,6 +1,6 @@
465 @%:@! /bin/sh
466 @%:@ Guess values for system-dependent variables and create Makefiles.
467 -@%:@ Generated by GNU Autoconf 2.68 for elfix 0.5.0.
468 +@%:@ Generated by GNU Autoconf 2.68 for elfix 0.5.1.
469 @%:@
470 @%:@ Report bugs to <http://bugs.gentoo.org/>.
471 @%:@
472 @@ -560,8 +560,8 @@ MAKEFLAGS=
473 # Identity of this package.
474 PACKAGE_NAME='elfix'
475 PACKAGE_TARNAME='elfix'
476 -PACKAGE_VERSION='0.5.0'
477 -PACKAGE_STRING='elfix 0.5.0'
478 +PACKAGE_VERSION='0.5.1'
479 +PACKAGE_STRING='elfix 0.5.1'
480 PACKAGE_BUGREPORT='http://bugs.gentoo.org/'
481 PACKAGE_URL=''
482
483 @@ -607,6 +607,11 @@ ac_subst_vars='am__EXEEXT_FALSE
484 am__EXEEXT_TRUE
485 LTLIBOBJS
486 LIB@&t@OBJS
487 +am__fastdepCCAS_FALSE
488 +am__fastdepCCAS_TRUE
489 +CCASDEPMODE
490 +CCASFLAGS
491 +CCAS
492 EGREP
493 GREP
494 CPP
495 @@ -629,6 +634,8 @@ CC
496 TEST_FALSE
497 TEST_TRUE
498 has_yasm
499 +AM_BACKSLASH
500 +AM_DEFAULT_VERBOSITY
501 am__untar
502 am__tar
503 AMTAR
504 @@ -693,6 +700,7 @@ SHELL'
505 ac_subst_files=''
506 ac_user_opts='
507 enable_option_checking
508 +enable_silent_rules
509 enable_tests
510 enable_xattr
511 enable_dependency_tracking
512 @@ -705,7 +713,9 @@ CFLAGS
513 LDFLAGS
514 LIBS
515 CPPFLAGS
516 -CPP'
517 +CPP
518 +CCAS
519 +CCASFLAGS'
520
521
522 # Initialize some variables set by options.
523 @@ -1248,7 +1258,7 @@ if test "$ac_init_help" = "long"; then
524 # Omit some internal or obsolete options to make the list less imposing.
525 # This message is too long to be a string in the A/UX 3.1 sh.
526 cat <<_ACEOF
527 -\`configure' configures elfix 0.5.0 to adapt to many kinds of systems.
528 +\`configure' configures elfix 0.5.1 to adapt to many kinds of systems.
529
530 Usage: $0 [OPTION]... [VAR=VALUE]...
531
532 @@ -1314,7 +1324,7 @@ fi
533
534 if test -n "$ac_init_help"; then
535 case $ac_init_help in
536 - short | recursive ) echo "Configuration of elfix 0.5.0:";;
537 + short | recursive ) echo "Configuration of elfix 0.5.1:";;
538 esac
539 cat <<\_ACEOF
540
541 @@ -1322,6 +1332,8 @@ Optional Features:
542 --disable-option-checking ignore unrecognized --enable/--with options
543 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
544 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
545 + --enable-silent-rules less verbose build output (undo: `make V=1')
546 + --disable-silent-rules verbose build output (undo: `make V=0')
547 --enable-tests perform tests
548 --enable-xattr enable support for pax markings in xattrs
549 --disable-dependency-tracking speeds up one-time build
550 @@ -1336,6 +1348,8 @@ Some influential environment variables:
551 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
552 you have headers in a nonstandard directory <include dir>
553 CPP C preprocessor
554 + CCAS assembler compiler command (defaults to CC)
555 + CCASFLAGS assembler compiler flags (defaults to CFLAGS)
556
557 Use these variables to override the choices made by `configure' or to help
558 it to find libraries and programs with nonstandard names/locations.
559 @@ -1403,7 +1417,7 @@ fi
560 test -n "$ac_init_help" && exit $ac_status
561 if $ac_init_version; then
562 cat <<\_ACEOF
563 -elfix configure 0.5.0
564 +elfix configure 0.5.1
565 generated by GNU Autoconf 2.68
566
567 Copyright (C) 2010 Free Software Foundation, Inc.
568 @@ -1879,7 +1893,7 @@ cat >config.log <<_ACEOF
569 This file contains any messages produced by compilers while
570 running configure, to aid debugging if configure makes a mistake.
571
572 -It was created by elfix $as_me 0.5.0, which was
573 +It was created by elfix $as_me 0.5.1, which was
574 generated by GNU Autoconf 2.68. Invocation command line was
575
576 $ $0 $@
577 @@ -2700,7 +2714,7 @@ fi
578
579 # Define the identity of the package.
580 PACKAGE='elfix'
581 - VERSION='0.5.0'
582 + VERSION='0.5.1'
583
584
585 cat >>confdefs.h <<_ACEOF
586 @@ -2740,6 +2754,18 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
587
588
589
590 +@%:@ Check whether --enable-silent-rules was given.
591 +if test "${enable_silent_rules+set}" = set; then :
592 + enableval=$enable_silent_rules;
593 +fi
594 +
595 +case $enable_silent_rules in
596 +yes) AM_DEFAULT_VERBOSITY=0;;
597 +no) AM_DEFAULT_VERBOSITY=1;;
598 +*) AM_DEFAULT_VERBOSITY=0;;
599 +esac
600 +AM_BACKSLASH='\'
601 +
602
603 @%:@ Check whether --enable-tests was given.
604 if test "${enable_tests+set}" = set; then :
605 @@ -4975,6 +5001,138 @@ else
606 fi
607
608
609 +# By default we simply use the C compiler to build assembly code.
610 +
611 +test "${CCAS+set}" = set || CCAS=$CC
612 +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
613 +
614 +
615 +
616 +depcc="$CCAS" am_compiler_list=
617 +
618 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
619 +$as_echo_n "checking dependency style of $depcc... " >&6; }
620 +if ${am_cv_CCAS_dependencies_compiler_type+:} false; then :
621 + $as_echo_n "(cached) " >&6
622 +else
623 + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
624 + # We make a subdir and do the tests there. Otherwise we can end up
625 + # making bogus files that we don't know about and never remove. For
626 + # instance it was reported that on HP-UX the gcc test will end up
627 + # making a dummy file named `D' -- because `-MD' means `put the output
628 + # in D'.
629 + mkdir conftest.dir
630 + # Copy depcomp to subdir because otherwise we won't find it if we're
631 + # using a relative directory.
632 + cp "$am_depcomp" conftest.dir
633 + cd conftest.dir
634 + # We will build objects and dependencies in a subdirectory because
635 + # it helps to detect inapplicable dependency modes. For instance
636 + # both Tru64's cc and ICC support -MD to output dependencies as a
637 + # side effect of compilation, but ICC will put the dependencies in
638 + # the current directory while Tru64 will put them in the object
639 + # directory.
640 + mkdir sub
641 +
642 + am_cv_CCAS_dependencies_compiler_type=none
643 + if test "$am_compiler_list" = ""; then
644 + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
645 + fi
646 + am__universal=false
647 +
648 +
649 + for depmode in $am_compiler_list; do
650 + # Setup a source with many dependencies, because some compilers
651 + # like to wrap large dependency lists on column 80 (with \), and
652 + # we should not choose a depcomp mode which is confused by this.
653 + #
654 + # We need to recreate these files for each test, as the compiler may
655 + # overwrite some of them when testing with obscure command lines.
656 + # This happens at least with the AIX C compiler.
657 + : > sub/conftest.c
658 + for i in 1 2 3 4 5 6; do
659 + echo '#include "conftst'$i'.h"' >> sub/conftest.c
660 + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
661 + # Solaris 8's {/usr,}/bin/sh.
662 + touch sub/conftst$i.h
663 + done
664 + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
665 +
666 + # We check with `-c' and `-o' for the sake of the "dashmstdout"
667 + # mode. It turns out that the SunPro C++ compiler does not properly
668 + # handle `-M -o', and we need to detect this. Also, some Intel
669 + # versions had trouble with output in subdirs
670 + am__obj=sub/conftest.${OBJEXT-o}
671 + am__minus_obj="-o $am__obj"
672 + case $depmode in
673 + gcc)
674 + # This depmode causes a compiler race in universal mode.
675 + test "$am__universal" = false || continue
676 + ;;
677 + nosideeffect)
678 + # after this tag, mechanisms are not by side-effect, so they'll
679 + # only be used when explicitly requested
680 + if test "x$enable_dependency_tracking" = xyes; then
681 + continue
682 + else
683 + break
684 + fi
685 + ;;
686 + msvisualcpp | msvcmsys)
687 + # This compiler won't grok `-c -o', but also, the minuso test has
688 + # not run yet. These depmodes are late enough in the game, and
689 + # so weak that their functioning should not be impacted.
690 + am__obj=conftest.${OBJEXT-o}
691 + am__minus_obj=
692 + ;;
693 + none) break ;;
694 + esac
695 + if depmode=$depmode \
696 + source=sub/conftest.c object=$am__obj \
697 + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
698 + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
699 + >/dev/null 2>conftest.err &&
700 + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
701 + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
702 + grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
703 + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
704 + # icc doesn't choke on unknown options, it will just issue warnings
705 + # or remarks (even with -Werror). So we grep stderr for any message
706 + # that says an option was ignored or not supported.
707 + # When given -MP, icc 7.0 and 7.1 complain thusly:
708 + # icc: Command line warning: ignoring option '-M'; no argument required
709 + # The diagnosis changed in icc 8.0:
710 + # icc: Command line remark: option '-MP' not supported
711 + if (grep 'ignoring option' conftest.err ||
712 + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
713 + am_cv_CCAS_dependencies_compiler_type=$depmode
714 + break
715 + fi
716 + fi
717 + done
718 +
719 + cd ..
720 + rm -rf conftest.dir
721 +else
722 + am_cv_CCAS_dependencies_compiler_type=none
723 +fi
724 +
725 +fi
726 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&5
727 +$as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; }
728 +CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type
729 +
730 + if
731 + test "x$enable_dependency_tracking" != xno \
732 + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then
733 + am__fastdepCCAS_TRUE=
734 + am__fastdepCCAS_FALSE='#'
735 +else
736 + am__fastdepCCAS_TRUE='#'
737 + am__fastdepCCAS_FALSE=
738 +fi
739 +
740 +
741
742 # Checks for libraries.
743 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5
744 @@ -5694,6 +5852,10 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
745 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
746 Usually this means the macro was only invoked conditionally." "$LINENO" 5
747 fi
748 +if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then
749 + as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined.
750 +Usually this means the macro was only invoked conditionally." "$LINENO" 5
751 +fi
752
753 : "${CONFIG_STATUS=./config.status}"
754 ac_write_fail=0
755 @@ -6103,7 +6265,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
756 # report actual input values of CONFIG_FILES etc. instead of their
757 # values after options handling.
758 ac_log="
759 -This file was extended by elfix $as_me 0.5.0, which was
760 +This file was extended by elfix $as_me 0.5.1, which was
761 generated by GNU Autoconf 2.68. Invocation command line was
762
763 CONFIG_FILES = $CONFIG_FILES
764 @@ -6169,7 +6331,7 @@ _ACEOF
765 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
766 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
767 ac_cs_version="\\
768 -elfix config.status 0.5.0
769 +elfix config.status 0.5.1
770 configured by $0, generated by GNU Autoconf 2.68,
771 with options \\"\$ac_cs_config\\"
772
773
774 diff --git a/autom4te.cache/requests b/autom4te.cache/requests
775 index 9162197..861aa79 100644
776 --- a/autom4te.cache/requests
777 +++ b/autom4te.cache/requests
778 @@ -139,6 +139,76 @@
779 '_AM_COND_ELSE' => 1,
780 'AC_SUBST_TRACE' => 1
781 }
782 + ], 'Autom4te::Request' ),
783 + bless( [
784 + '2',
785 + 1,
786 + [
787 + '/usr/share/autoconf'
788 + ],
789 + [
790 + '/usr/share/autoconf/autoconf/autoconf.m4f',
791 + '/usr/share/aclocal-1.11/amversion.m4',
792 + '/usr/share/aclocal-1.11/as.m4',
793 + '/usr/share/aclocal-1.11/auxdir.m4',
794 + '/usr/share/aclocal-1.11/cond.m4',
795 + '/usr/share/aclocal-1.11/depend.m4',
796 + '/usr/share/aclocal-1.11/depout.m4',
797 + '/usr/share/aclocal-1.11/init.m4',
798 + '/usr/share/aclocal-1.11/install-sh.m4',
799 + '/usr/share/aclocal-1.11/lead-dot.m4',
800 + '/usr/share/aclocal-1.11/make.m4',
801 + '/usr/share/aclocal-1.11/missing.m4',
802 + '/usr/share/aclocal-1.11/mkdirp.m4',
803 + '/usr/share/aclocal-1.11/options.m4',
804 + '/usr/share/aclocal-1.11/runlog.m4',
805 + '/usr/share/aclocal-1.11/sanity.m4',
806 + '/usr/share/aclocal-1.11/silent.m4',
807 + '/usr/share/aclocal-1.11/strip.m4',
808 + '/usr/share/aclocal-1.11/substnot.m4',
809 + '/usr/share/aclocal-1.11/tar.m4',
810 + 'configure.ac'
811 + ],
812 + {
813 + 'm4_pattern_forbid' => 1,
814 + 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
815 + '_AM_SET_OPTION' => 1,
816 + 'AC_DEFUN' => 1,
817 + 'AM_PROG_MKDIR_P' => 1,
818 + 'AM_INIT_AUTOMAKE' => 1,
819 + 'AM_AUTOMAKE_VERSION' => 1,
820 + 'AM_MISSING_HAS_RUN' => 1,
821 + 'AM_SUBST_NOTMAKE' => 1,
822 + 'AM_MISSING_PROG' => 1,
823 + 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
824 + 'AC_DEFUN_ONCE' => 1,
825 + 'AM_PROG_INSTALL_STRIP' => 1,
826 + '_m4_warn' => 1,
827 + 'AM_SANITY_CHECK' => 1,
828 + 'AM_SILENT_RULES' => 1,
829 + 'include' => 1,
830 + '_AM_PROG_TAR' => 1,
831 + 'AM_PROG_AS' => 1,
832 + 'AM_AUX_DIR_EXPAND' => 1,
833 + 'AM_DEP_TRACK' => 1,
834 + '_AM_SET_OPTIONS' => 1,
835 + '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
836 + 'AM_RUN_LOG' => 1,
837 + '_AM_IF_OPTION' => 1,
838 + '_AM_SUBST_NOTMAKE' => 1,
839 + 'm4_pattern_allow' => 1,
840 + '_AM_AUTOCONF_VERSION' => 1,
841 + '_AM_MANGLE_OPTION' => 1,
842 + 'AM_CONDITIONAL' => 1,
843 + 'AM_SET_LEADING_DOT' => 1,
844 + 'AM_SET_DEPDIR' => 1,
845 + '_AM_DEPENDENCIES' => 1,
846 + 'AM_PROG_INSTALL_SH' => 1,
847 + 'm4_include' => 1,
848 + '_AC_AM_CONFIG_HEADER_HOOK' => 1,
849 + 'AU_DEFUN' => 1,
850 + 'AM_MAKE_INCLUDE' => 1
851 + }
852 ], 'Autom4te::Request' )
853 );
854
855
856 diff --git a/autom4te.cache/traces.1 b/autom4te.cache/traces.1
857 index 75effaf..7335824 100644
858 --- a/autom4te.cache/traces.1
859 +++ b/autom4te.cache/traces.1
860 @@ -1,4 +1,4 @@
861 -m4trace:configure.ac:5: -1- AC_INIT([elfix], [0.5.0], [http://bugs.gentoo.org/])
862 +m4trace:configure.ac:5: -1- AC_INIT([elfix], [0.5.1], [http://bugs.gentoo.org/])
863 m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?A[CHUM]_])
864 m4trace:configure.ac:5: -1- m4_pattern_forbid([_AC_])
865 m4trace:configure.ac:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
866 @@ -231,279 +231,307 @@ m4trace:configure.ac:8: -1- m4_pattern_allow([^am__tar$])
867 m4trace:configure.ac:8: -1- AC_SUBST([am__untar])
868 m4trace:configure.ac:8: -1- AC_SUBST_TRACE([am__untar])
869 m4trace:configure.ac:8: -1- m4_pattern_allow([^am__untar$])
870 -m4trace:configure.ac:10: -1- AC_SUBST([has_yasm])
871 -m4trace:configure.ac:10: -1- AC_SUBST_TRACE([has_yasm])
872 -m4trace:configure.ac:10: -1- m4_pattern_allow([^has_yasm$])
873 -m4trace:configure.ac:26: -1- AM_CONDITIONAL([TEST], [test "x$has_yasm" = "xyes"])
874 -m4trace:configure.ac:26: -1- AC_SUBST([TEST_TRUE])
875 -m4trace:configure.ac:26: -1- AC_SUBST_TRACE([TEST_TRUE])
876 -m4trace:configure.ac:26: -1- m4_pattern_allow([^TEST_TRUE$])
877 -m4trace:configure.ac:26: -1- AC_SUBST([TEST_FALSE])
878 -m4trace:configure.ac:26: -1- AC_SUBST_TRACE([TEST_FALSE])
879 -m4trace:configure.ac:26: -1- m4_pattern_allow([^TEST_FALSE$])
880 -m4trace:configure.ac:26: -1- _AM_SUBST_NOTMAKE([TEST_TRUE])
881 -m4trace:configure.ac:26: -1- _AM_SUBST_NOTMAKE([TEST_FALSE])
882 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_ATTR_XATTR_H], [/* Define to 1 if you have the <attr/xattr.h> header file. */
883 +m4trace:configure.ac:9: -1- AM_SILENT_RULES([yes])
884 +m4trace:configure.ac:9: -1- AC_SUBST([AM_DEFAULT_VERBOSITY])
885 +m4trace:configure.ac:9: -1- AC_SUBST_TRACE([AM_DEFAULT_VERBOSITY])
886 +m4trace:configure.ac:9: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
887 +m4trace:configure.ac:9: -1- AC_SUBST([AM_BACKSLASH])
888 +m4trace:configure.ac:9: -1- AC_SUBST_TRACE([AM_BACKSLASH])
889 +m4trace:configure.ac:9: -1- m4_pattern_allow([^AM_BACKSLASH$])
890 +m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
891 +m4trace:configure.ac:11: -1- AC_SUBST([has_yasm])
892 +m4trace:configure.ac:11: -1- AC_SUBST_TRACE([has_yasm])
893 +m4trace:configure.ac:11: -1- m4_pattern_allow([^has_yasm$])
894 +m4trace:configure.ac:27: -1- AM_CONDITIONAL([TEST], [test "x$has_yasm" = "xyes"])
895 +m4trace:configure.ac:27: -1- AC_SUBST([TEST_TRUE])
896 +m4trace:configure.ac:27: -1- AC_SUBST_TRACE([TEST_TRUE])
897 +m4trace:configure.ac:27: -1- m4_pattern_allow([^TEST_TRUE$])
898 +m4trace:configure.ac:27: -1- AC_SUBST([TEST_FALSE])
899 +m4trace:configure.ac:27: -1- AC_SUBST_TRACE([TEST_FALSE])
900 +m4trace:configure.ac:27: -1- m4_pattern_allow([^TEST_FALSE$])
901 +m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([TEST_TRUE])
902 +m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([TEST_FALSE])
903 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_ATTR_XATTR_H], [/* Define to 1 if you have the <attr/xattr.h> header file. */
904 @%:@undef HAVE_ATTR_XATTR_H])
905 -m4trace:configure.ac:28: -1- AC_SUBST([CC])
906 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC])
907 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$])
908 -m4trace:configure.ac:28: -1- AC_SUBST([CFLAGS])
909 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CFLAGS])
910 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CFLAGS$])
911 -m4trace:configure.ac:28: -1- AC_SUBST([LDFLAGS])
912 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([LDFLAGS])
913 -m4trace:configure.ac:28: -1- m4_pattern_allow([^LDFLAGS$])
914 -m4trace:configure.ac:28: -1- AC_SUBST([LIBS])
915 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([LIBS])
916 -m4trace:configure.ac:28: -1- m4_pattern_allow([^LIBS$])
917 -m4trace:configure.ac:28: -1- AC_SUBST([CPPFLAGS])
918 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CPPFLAGS])
919 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CPPFLAGS$])
920 -m4trace:configure.ac:28: -1- AC_SUBST([CC])
921 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC])
922 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$])
923 -m4trace:configure.ac:28: -1- AC_SUBST([CC])
924 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC])
925 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$])
926 -m4trace:configure.ac:28: -1- AC_SUBST([CC])
927 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC])
928 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$])
929 -m4trace:configure.ac:28: -1- AC_SUBST([CC])
930 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC])
931 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$])
932 -m4trace:configure.ac:28: -1- AC_SUBST([ac_ct_CC])
933 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([ac_ct_CC])
934 -m4trace:configure.ac:28: -1- m4_pattern_allow([^ac_ct_CC$])
935 -m4trace:configure.ac:28: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
936 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([EXEEXT])
937 -m4trace:configure.ac:28: -1- m4_pattern_allow([^EXEEXT$])
938 -m4trace:configure.ac:28: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
939 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([OBJEXT])
940 -m4trace:configure.ac:28: -1- m4_pattern_allow([^OBJEXT$])
941 -m4trace:configure.ac:28: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
942 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([DEPDIR])
943 -m4trace:configure.ac:28: -1- m4_pattern_allow([^DEPDIR$])
944 -m4trace:configure.ac:28: -1- AC_SUBST([am__include])
945 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([am__include])
946 -m4trace:configure.ac:28: -1- m4_pattern_allow([^am__include$])
947 -m4trace:configure.ac:28: -1- AC_SUBST([am__quote])
948 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([am__quote])
949 -m4trace:configure.ac:28: -1- m4_pattern_allow([^am__quote$])
950 -m4trace:configure.ac:28: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
951 -m4trace:configure.ac:28: -1- AC_SUBST([AMDEP_TRUE])
952 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AMDEP_TRUE])
953 -m4trace:configure.ac:28: -1- m4_pattern_allow([^AMDEP_TRUE$])
954 -m4trace:configure.ac:28: -1- AC_SUBST([AMDEP_FALSE])
955 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AMDEP_FALSE])
956 -m4trace:configure.ac:28: -1- m4_pattern_allow([^AMDEP_FALSE$])
957 -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
958 -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
959 -m4trace:configure.ac:28: -1- AC_SUBST([AMDEPBACKSLASH])
960 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
961 -m4trace:configure.ac:28: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
962 -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
963 -m4trace:configure.ac:28: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
964 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CCDEPMODE])
965 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CCDEPMODE$])
966 -m4trace:configure.ac:28: -1- AM_CONDITIONAL([am__fastdepCC], [
967 +m4trace:configure.ac:29: -1- AC_SUBST([CC])
968 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC])
969 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
970 +m4trace:configure.ac:29: -1- AC_SUBST([CFLAGS])
971 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CFLAGS])
972 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CFLAGS$])
973 +m4trace:configure.ac:29: -1- AC_SUBST([LDFLAGS])
974 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([LDFLAGS])
975 +m4trace:configure.ac:29: -1- m4_pattern_allow([^LDFLAGS$])
976 +m4trace:configure.ac:29: -1- AC_SUBST([LIBS])
977 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([LIBS])
978 +m4trace:configure.ac:29: -1- m4_pattern_allow([^LIBS$])
979 +m4trace:configure.ac:29: -1- AC_SUBST([CPPFLAGS])
980 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CPPFLAGS])
981 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPPFLAGS$])
982 +m4trace:configure.ac:29: -1- AC_SUBST([CC])
983 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC])
984 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
985 +m4trace:configure.ac:29: -1- AC_SUBST([CC])
986 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC])
987 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
988 +m4trace:configure.ac:29: -1- AC_SUBST([CC])
989 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC])
990 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
991 +m4trace:configure.ac:29: -1- AC_SUBST([CC])
992 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC])
993 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
994 +m4trace:configure.ac:29: -1- AC_SUBST([ac_ct_CC])
995 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([ac_ct_CC])
996 +m4trace:configure.ac:29: -1- m4_pattern_allow([^ac_ct_CC$])
997 +m4trace:configure.ac:29: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
998 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([EXEEXT])
999 +m4trace:configure.ac:29: -1- m4_pattern_allow([^EXEEXT$])
1000 +m4trace:configure.ac:29: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
1001 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([OBJEXT])
1002 +m4trace:configure.ac:29: -1- m4_pattern_allow([^OBJEXT$])
1003 +m4trace:configure.ac:29: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
1004 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([DEPDIR])
1005 +m4trace:configure.ac:29: -1- m4_pattern_allow([^DEPDIR$])
1006 +m4trace:configure.ac:29: -1- AC_SUBST([am__include])
1007 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([am__include])
1008 +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__include$])
1009 +m4trace:configure.ac:29: -1- AC_SUBST([am__quote])
1010 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([am__quote])
1011 +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__quote$])
1012 +m4trace:configure.ac:29: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
1013 +m4trace:configure.ac:29: -1- AC_SUBST([AMDEP_TRUE])
1014 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([AMDEP_TRUE])
1015 +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_TRUE$])
1016 +m4trace:configure.ac:29: -1- AC_SUBST([AMDEP_FALSE])
1017 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([AMDEP_FALSE])
1018 +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_FALSE$])
1019 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
1020 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
1021 +m4trace:configure.ac:29: -1- AC_SUBST([AMDEPBACKSLASH])
1022 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
1023 +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
1024 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
1025 +m4trace:configure.ac:29: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
1026 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CCDEPMODE])
1027 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CCDEPMODE$])
1028 +m4trace:configure.ac:29: -1- AM_CONDITIONAL([am__fastdepCC], [
1029 test "x$enable_dependency_tracking" != xno \
1030 && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
1031 -m4trace:configure.ac:28: -1- AC_SUBST([am__fastdepCC_TRUE])
1032 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
1033 -m4trace:configure.ac:28: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
1034 -m4trace:configure.ac:28: -1- AC_SUBST([am__fastdepCC_FALSE])
1035 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
1036 -m4trace:configure.ac:28: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
1037 -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
1038 -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
1039 -m4trace:configure.ac:28: -1- AC_SUBST([CPP])
1040 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CPP])
1041 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CPP$])
1042 -m4trace:configure.ac:28: -1- AC_SUBST([CPPFLAGS])
1043 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CPPFLAGS])
1044 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CPPFLAGS$])
1045 -m4trace:configure.ac:28: -1- AC_SUBST([CPP])
1046 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CPP])
1047 -m4trace:configure.ac:28: -1- m4_pattern_allow([^CPP$])
1048 -m4trace:configure.ac:28: -1- AC_SUBST([GREP])
1049 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([GREP])
1050 -m4trace:configure.ac:28: -1- m4_pattern_allow([^GREP$])
1051 -m4trace:configure.ac:28: -1- AC_SUBST([EGREP])
1052 -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([EGREP])
1053 -m4trace:configure.ac:28: -1- m4_pattern_allow([^EGREP$])
1054 -m4trace:configure.ac:28: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
1055 -m4trace:configure.ac:28: -1- m4_pattern_allow([^STDC_HEADERS$])
1056 -m4trace:configure.ac:28: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
1057 +m4trace:configure.ac:29: -1- AC_SUBST([am__fastdepCC_TRUE])
1058 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
1059 +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
1060 +m4trace:configure.ac:29: -1- AC_SUBST([am__fastdepCC_FALSE])
1061 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
1062 +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
1063 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
1064 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
1065 +m4trace:configure.ac:29: -1- AC_SUBST([CPP])
1066 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CPP])
1067 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPP$])
1068 +m4trace:configure.ac:29: -1- AC_SUBST([CPPFLAGS])
1069 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CPPFLAGS])
1070 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPPFLAGS$])
1071 +m4trace:configure.ac:29: -1- AC_SUBST([CPP])
1072 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CPP])
1073 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPP$])
1074 +m4trace:configure.ac:29: -1- AC_SUBST([GREP])
1075 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([GREP])
1076 +m4trace:configure.ac:29: -1- m4_pattern_allow([^GREP$])
1077 +m4trace:configure.ac:29: -1- AC_SUBST([EGREP])
1078 +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([EGREP])
1079 +m4trace:configure.ac:29: -1- m4_pattern_allow([^EGREP$])
1080 +m4trace:configure.ac:29: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
1081 +m4trace:configure.ac:29: -1- m4_pattern_allow([^STDC_HEADERS$])
1082 +m4trace:configure.ac:29: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
1083 @%:@undef STDC_HEADERS])
1084 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
1085 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
1086 @%:@undef HAVE_SYS_TYPES_H])
1087 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
1088 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
1089 @%:@undef HAVE_SYS_STAT_H])
1090 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
1091 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
1092 @%:@undef HAVE_STDLIB_H])
1093 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
1094 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
1095 @%:@undef HAVE_STRING_H])
1096 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
1097 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
1098 @%:@undef HAVE_MEMORY_H])
1099 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
1100 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
1101 @%:@undef HAVE_STRINGS_H])
1102 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
1103 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
1104 @%:@undef HAVE_INTTYPES_H])
1105 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
1106 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
1107 @%:@undef HAVE_STDINT_H])
1108 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
1109 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
1110 @%:@undef HAVE_UNISTD_H])
1111 -m4trace:configure.ac:28: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATTR_XATTR_H])
1112 -m4trace:configure.ac:28: -1- m4_pattern_allow([^HAVE_ATTR_XATTR_H$])
1113 -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_LIBATTR], [/* Define to 1 if you have the `attr\' library (-lattr). */
1114 +m4trace:configure.ac:29: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATTR_XATTR_H])
1115 +m4trace:configure.ac:29: -1- m4_pattern_allow([^HAVE_ATTR_XATTR_H$])
1116 +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_LIBATTR], [/* Define to 1 if you have the `attr\' library (-lattr). */
1117 @%:@undef HAVE_LIBATTR])
1118 -m4trace:configure.ac:28: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBATTR])
1119 -m4trace:configure.ac:28: -1- m4_pattern_allow([^HAVE_LIBATTR$])
1120 -m4trace:configure.ac:62: -1- AC_SUBST([AWK])
1121 -m4trace:configure.ac:62: -1- AC_SUBST_TRACE([AWK])
1122 -m4trace:configure.ac:62: -1- m4_pattern_allow([^AWK$])
1123 -m4trace:configure.ac:63: -1- AC_SUBST([CC])
1124 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC])
1125 -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$])
1126 -m4trace:configure.ac:63: -1- AC_SUBST([CFLAGS])
1127 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CFLAGS])
1128 -m4trace:configure.ac:63: -1- m4_pattern_allow([^CFLAGS$])
1129 -m4trace:configure.ac:63: -1- AC_SUBST([LDFLAGS])
1130 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([LDFLAGS])
1131 -m4trace:configure.ac:63: -1- m4_pattern_allow([^LDFLAGS$])
1132 -m4trace:configure.ac:63: -1- AC_SUBST([LIBS])
1133 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([LIBS])
1134 -m4trace:configure.ac:63: -1- m4_pattern_allow([^LIBS$])
1135 -m4trace:configure.ac:63: -1- AC_SUBST([CPPFLAGS])
1136 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CPPFLAGS])
1137 -m4trace:configure.ac:63: -1- m4_pattern_allow([^CPPFLAGS$])
1138 -m4trace:configure.ac:63: -1- AC_SUBST([CC])
1139 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC])
1140 -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$])
1141 -m4trace:configure.ac:63: -1- AC_SUBST([CC])
1142 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC])
1143 -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$])
1144 -m4trace:configure.ac:63: -1- AC_SUBST([CC])
1145 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC])
1146 -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$])
1147 -m4trace:configure.ac:63: -1- AC_SUBST([CC])
1148 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC])
1149 -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$])
1150 -m4trace:configure.ac:63: -1- AC_SUBST([ac_ct_CC])
1151 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([ac_ct_CC])
1152 -m4trace:configure.ac:63: -1- m4_pattern_allow([^ac_ct_CC$])
1153 -m4trace:configure.ac:63: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
1154 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CCDEPMODE])
1155 -m4trace:configure.ac:63: -1- m4_pattern_allow([^CCDEPMODE$])
1156 -m4trace:configure.ac:63: -1- AM_CONDITIONAL([am__fastdepCC], [
1157 +m4trace:configure.ac:29: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBATTR])
1158 +m4trace:configure.ac:29: -1- m4_pattern_allow([^HAVE_LIBATTR$])
1159 +m4trace:configure.ac:63: -1- AC_SUBST([AWK])
1160 +m4trace:configure.ac:63: -1- AC_SUBST_TRACE([AWK])
1161 +m4trace:configure.ac:63: -1- m4_pattern_allow([^AWK$])
1162 +m4trace:configure.ac:64: -1- AC_SUBST([CC])
1163 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC])
1164 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
1165 +m4trace:configure.ac:64: -1- AC_SUBST([CFLAGS])
1166 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CFLAGS])
1167 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CFLAGS$])
1168 +m4trace:configure.ac:64: -1- AC_SUBST([LDFLAGS])
1169 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([LDFLAGS])
1170 +m4trace:configure.ac:64: -1- m4_pattern_allow([^LDFLAGS$])
1171 +m4trace:configure.ac:64: -1- AC_SUBST([LIBS])
1172 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([LIBS])
1173 +m4trace:configure.ac:64: -1- m4_pattern_allow([^LIBS$])
1174 +m4trace:configure.ac:64: -1- AC_SUBST([CPPFLAGS])
1175 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CPPFLAGS])
1176 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CPPFLAGS$])
1177 +m4trace:configure.ac:64: -1- AC_SUBST([CC])
1178 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC])
1179 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
1180 +m4trace:configure.ac:64: -1- AC_SUBST([CC])
1181 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC])
1182 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
1183 +m4trace:configure.ac:64: -1- AC_SUBST([CC])
1184 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC])
1185 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
1186 +m4trace:configure.ac:64: -1- AC_SUBST([CC])
1187 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC])
1188 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
1189 +m4trace:configure.ac:64: -1- AC_SUBST([ac_ct_CC])
1190 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([ac_ct_CC])
1191 +m4trace:configure.ac:64: -1- m4_pattern_allow([^ac_ct_CC$])
1192 +m4trace:configure.ac:64: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
1193 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CCDEPMODE])
1194 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CCDEPMODE$])
1195 +m4trace:configure.ac:64: -1- AM_CONDITIONAL([am__fastdepCC], [
1196 test "x$enable_dependency_tracking" != xno \
1197 && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
1198 -m4trace:configure.ac:63: -1- AC_SUBST([am__fastdepCC_TRUE])
1199 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
1200 -m4trace:configure.ac:63: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
1201 -m4trace:configure.ac:63: -1- AC_SUBST([am__fastdepCC_FALSE])
1202 -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
1203 -m4trace:configure.ac:63: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
1204 -m4trace:configure.ac:63: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
1205 -m4trace:configure.ac:63: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
1206 -m4trace:configure.ac:66: -1- AH_OUTPUT([HAVE_LIBELF], [/* Define to 1 if you have the `elf\' library (-lelf). */
1207 +m4trace:configure.ac:64: -1- AC_SUBST([am__fastdepCC_TRUE])
1208 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
1209 +m4trace:configure.ac:64: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
1210 +m4trace:configure.ac:64: -1- AC_SUBST([am__fastdepCC_FALSE])
1211 +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
1212 +m4trace:configure.ac:64: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
1213 +m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
1214 +m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
1215 +m4trace:configure.ac:65: -1- AC_SUBST([CCAS])
1216 +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([CCAS])
1217 +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCAS$])
1218 +m4trace:configure.ac:65: -1- AC_SUBST([CCASFLAGS])
1219 +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([CCASFLAGS])
1220 +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCASFLAGS$])
1221 +m4trace:configure.ac:65: -1- AC_SUBST([CCASDEPMODE], [depmode=$am_cv_CCAS_dependencies_compiler_type])
1222 +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([CCASDEPMODE])
1223 +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCASDEPMODE$])
1224 +m4trace:configure.ac:65: -1- AM_CONDITIONAL([am__fastdepCCAS], [
1225 + test "x$enable_dependency_tracking" != xno \
1226 + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3])
1227 +m4trace:configure.ac:65: -1- AC_SUBST([am__fastdepCCAS_TRUE])
1228 +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([am__fastdepCCAS_TRUE])
1229 +m4trace:configure.ac:65: -1- m4_pattern_allow([^am__fastdepCCAS_TRUE$])
1230 +m4trace:configure.ac:65: -1- AC_SUBST([am__fastdepCCAS_FALSE])
1231 +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([am__fastdepCCAS_FALSE])
1232 +m4trace:configure.ac:65: -1- m4_pattern_allow([^am__fastdepCCAS_FALSE$])
1233 +m4trace:configure.ac:65: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_TRUE])
1234 +m4trace:configure.ac:65: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_FALSE])
1235 +m4trace:configure.ac:68: -1- AH_OUTPUT([HAVE_LIBELF], [/* Define to 1 if you have the `elf\' library (-lelf). */
1236 @%:@undef HAVE_LIBELF])
1237 -m4trace:configure.ac:66: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBELF])
1238 -m4trace:configure.ac:66: -1- m4_pattern_allow([^HAVE_LIBELF$])
1239 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_ERRNO_H], [/* Define to 1 if you have the <errno.h> header file. */
1240 +m4trace:configure.ac:68: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBELF])
1241 +m4trace:configure.ac:68: -1- m4_pattern_allow([^HAVE_LIBELF$])
1242 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_ERRNO_H], [/* Define to 1 if you have the <errno.h> header file. */
1243 @%:@undef HAVE_ERRNO_H])
1244 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_ERROR_H], [/* Define to 1 if you have the <error.h> header file. */
1245 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_ERROR_H], [/* Define to 1 if you have the <error.h> header file. */
1246 @%:@undef HAVE_ERROR_H])
1247 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */
1248 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */
1249 @%:@undef HAVE_FCNTL_H])
1250 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_GELF_H], [/* Define to 1 if you have the <gelf.h> header file. */
1251 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_GELF_H], [/* Define to 1 if you have the <gelf.h> header file. */
1252 @%:@undef HAVE_GELF_H])
1253 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_LIBGEN_H], [/* Define to 1 if you have the <libgen.h> header file. */
1254 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_LIBGEN_H], [/* Define to 1 if you have the <libgen.h> header file. */
1255 @%:@undef HAVE_LIBGEN_H])
1256 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_STDIO_H], [/* Define to 1 if you have the <stdio.h> header file. */
1257 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_STDIO_H], [/* Define to 1 if you have the <stdio.h> header file. */
1258 @%:@undef HAVE_STDIO_H])
1259 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
1260 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
1261 @%:@undef HAVE_STDLIB_H])
1262 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
1263 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
1264 @%:@undef HAVE_STRING_H])
1265 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_SYS_MMAN_H], [/* Define to 1 if you have the <sys/mman.h> header file. */
1266 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_SYS_MMAN_H], [/* Define to 1 if you have the <sys/mman.h> header file. */
1267 @%:@undef HAVE_SYS_MMAN_H])
1268 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
1269 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
1270 @%:@undef HAVE_SYS_STAT_H])
1271 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
1272 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
1273 @%:@undef HAVE_SYS_TYPES_H])
1274 -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
1275 +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
1276 @%:@undef HAVE_UNISTD_H])
1277 -m4trace:configure.ac:78: -1- AC_DEFINE_TRACE_LITERAL([pid_t])
1278 -m4trace:configure.ac:78: -1- m4_pattern_allow([^pid_t$])
1279 -m4trace:configure.ac:78: -1- AH_OUTPUT([pid_t], [/* Define to `int\' if <sys/types.h> does not define. */
1280 +m4trace:configure.ac:80: -1- AC_DEFINE_TRACE_LITERAL([pid_t])
1281 +m4trace:configure.ac:80: -1- m4_pattern_allow([^pid_t$])
1282 +m4trace:configure.ac:80: -1- AH_OUTPUT([pid_t], [/* Define to `int\' if <sys/types.h> does not define. */
1283 @%:@undef pid_t])
1284 -m4trace:configure.ac:79: -1- AC_DEFINE_TRACE_LITERAL([size_t])
1285 -m4trace:configure.ac:79: -1- m4_pattern_allow([^size_t$])
1286 -m4trace:configure.ac:79: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */
1287 +m4trace:configure.ac:81: -1- AC_DEFINE_TRACE_LITERAL([size_t])
1288 +m4trace:configure.ac:81: -1- m4_pattern_allow([^size_t$])
1289 +m4trace:configure.ac:81: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */
1290 @%:@undef size_t])
1291 -m4trace:configure.ac:80: -1- AC_DEFINE_TRACE_LITERAL([_UINT8_T])
1292 -m4trace:configure.ac:80: -1- m4_pattern_allow([^_UINT8_T$])
1293 -m4trace:configure.ac:80: -1- AH_OUTPUT([_UINT8_T], [/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
1294 +m4trace:configure.ac:82: -1- AC_DEFINE_TRACE_LITERAL([_UINT8_T])
1295 +m4trace:configure.ac:82: -1- m4_pattern_allow([^_UINT8_T$])
1296 +m4trace:configure.ac:82: -1- AH_OUTPUT([_UINT8_T], [/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
1297 <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
1298 @%:@define below would cause a syntax error. */
1299 @%:@undef _UINT8_T])
1300 -m4trace:configure.ac:80: -1- AC_DEFINE_TRACE_LITERAL([uint8_t])
1301 -m4trace:configure.ac:80: -1- m4_pattern_allow([^uint8_t$])
1302 -m4trace:configure.ac:80: -1- AH_OUTPUT([uint8_t], [/* Define to the type of an unsigned integer type of width exactly 8 bits if
1303 +m4trace:configure.ac:82: -1- AC_DEFINE_TRACE_LITERAL([uint8_t])
1304 +m4trace:configure.ac:82: -1- m4_pattern_allow([^uint8_t$])
1305 +m4trace:configure.ac:82: -1- AH_OUTPUT([uint8_t], [/* Define to the type of an unsigned integer type of width exactly 8 bits if
1306 such a type exists and the standard includes do not define it. */
1307 @%:@undef uint8_t])
1308 -m4trace:configure.ac:81: -1- AC_DEFINE_TRACE_LITERAL([uint16_t])
1309 -m4trace:configure.ac:81: -1- m4_pattern_allow([^uint16_t$])
1310 -m4trace:configure.ac:81: -1- AH_OUTPUT([uint16_t], [/* Define to the type of an unsigned integer type of width exactly 16 bits if
1311 +m4trace:configure.ac:83: -1- AC_DEFINE_TRACE_LITERAL([uint16_t])
1312 +m4trace:configure.ac:83: -1- m4_pattern_allow([^uint16_t$])
1313 +m4trace:configure.ac:83: -1- AH_OUTPUT([uint16_t], [/* Define to the type of an unsigned integer type of width exactly 16 bits if
1314 such a type exists and the standard includes do not define it. */
1315 @%:@undef uint16_t])
1316 -m4trace:configure.ac:84: -1- AC_LIBSOURCE([error.h])
1317 -m4trace:configure.ac:84: -1- AC_LIBSOURCE([error.c])
1318 -m4trace:configure.ac:84: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS error.$ac_objext"])
1319 -m4trace:configure.ac:84: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
1320 -m4trace:configure.ac:84: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1321 -m4trace:configure.ac:84: -1- AC_LIBSOURCE([error.c])
1322 -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_VFORK_H], [/* Define to 1 if you have the <vfork.h> header file. */
1323 +m4trace:configure.ac:86: -1- AC_LIBSOURCE([error.h])
1324 +m4trace:configure.ac:86: -1- AC_LIBSOURCE([error.c])
1325 +m4trace:configure.ac:86: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS error.$ac_objext"])
1326 +m4trace:configure.ac:86: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
1327 +m4trace:configure.ac:86: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1328 +m4trace:configure.ac:86: -1- AC_LIBSOURCE([error.c])
1329 +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_VFORK_H], [/* Define to 1 if you have the <vfork.h> header file. */
1330 @%:@undef HAVE_VFORK_H])
1331 -m4trace:configure.ac:85: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFORK_H])
1332 -m4trace:configure.ac:85: -1- m4_pattern_allow([^HAVE_VFORK_H$])
1333 -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_FORK], [/* Define to 1 if you have the `fork\' function. */
1334 +m4trace:configure.ac:87: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFORK_H])
1335 +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_VFORK_H$])
1336 +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_FORK], [/* Define to 1 if you have the `fork\' function. */
1337 @%:@undef HAVE_FORK])
1338 -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_VFORK], [/* Define to 1 if you have the `vfork\' function. */
1339 +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_VFORK], [/* Define to 1 if you have the `vfork\' function. */
1340 @%:@undef HAVE_VFORK])
1341 -m4trace:configure.ac:85: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_VFORK])
1342 -m4trace:configure.ac:85: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
1343 -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_WORKING_VFORK], [/* Define to 1 if `vfork\' works. */
1344 +m4trace:configure.ac:87: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_VFORK])
1345 +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
1346 +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_WORKING_VFORK], [/* Define to 1 if `vfork\' works. */
1347 @%:@undef HAVE_WORKING_VFORK])
1348 -m4trace:configure.ac:85: -1- AC_DEFINE_TRACE_LITERAL([vfork])
1349 -m4trace:configure.ac:85: -1- m4_pattern_allow([^vfork$])
1350 -m4trace:configure.ac:85: -1- AH_OUTPUT([vfork], [/* Define as `fork\' if `vfork\' does not work. */
1351 +m4trace:configure.ac:87: -1- AC_DEFINE_TRACE_LITERAL([vfork])
1352 +m4trace:configure.ac:87: -1- m4_pattern_allow([^vfork$])
1353 +m4trace:configure.ac:87: -1- AH_OUTPUT([vfork], [/* Define as `fork\' if `vfork\' does not work. */
1354 @%:@undef vfork])
1355 -m4trace:configure.ac:85: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_FORK])
1356 -m4trace:configure.ac:85: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
1357 -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_WORKING_FORK], [/* Define to 1 if `fork\' works. */
1358 +m4trace:configure.ac:87: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_FORK])
1359 +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
1360 +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_WORKING_FORK], [/* Define to 1 if `fork\' works. */
1361 @%:@undef HAVE_WORKING_FORK])
1362 -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
1363 +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
1364 @%:@undef HAVE_STDLIB_H])
1365 -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
1366 +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
1367 @%:@undef HAVE_UNISTD_H])
1368 -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the <sys/param.h> header file. */
1369 +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the <sys/param.h> header file. */
1370 @%:@undef HAVE_SYS_PARAM_H])
1371 -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_GETPAGESIZE], [/* Define to 1 if you have the `getpagesize\' function. */
1372 +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_GETPAGESIZE], [/* Define to 1 if you have the `getpagesize\' function. */
1373 @%:@undef HAVE_GETPAGESIZE])
1374 -m4trace:configure.ac:86: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPAGESIZE])
1375 -m4trace:configure.ac:86: -1- m4_pattern_allow([^HAVE_GETPAGESIZE$])
1376 -m4trace:configure.ac:86: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MMAP])
1377 -m4trace:configure.ac:86: -1- m4_pattern_allow([^HAVE_MMAP$])
1378 -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_MMAP], [/* Define to 1 if you have a working `mmap\' system call. */
1379 +m4trace:configure.ac:88: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPAGESIZE])
1380 +m4trace:configure.ac:88: -1- m4_pattern_allow([^HAVE_GETPAGESIZE$])
1381 +m4trace:configure.ac:88: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MMAP])
1382 +m4trace:configure.ac:88: -1- m4_pattern_allow([^HAVE_MMAP$])
1383 +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_MMAP], [/* Define to 1 if you have a working `mmap\' system call. */
1384 @%:@undef HAVE_MMAP])
1385 -m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_MEMSET], [/* Define to 1 if you have the `memset\' function. */
1386 +m4trace:configure.ac:89: -1- AH_OUTPUT([HAVE_MEMSET], [/* Define to 1 if you have the `memset\' function. */
1387 @%:@undef HAVE_MEMSET])
1388 -m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_STRERROR], [/* Define to 1 if you have the `strerror\' function. */
1389 +m4trace:configure.ac:89: -1- AH_OUTPUT([HAVE_STRERROR], [/* Define to 1 if you have the `strerror\' function. */
1390 @%:@undef HAVE_STRERROR])
1391 -m4trace:configure.ac:89: -1- AC_CONFIG_FILES([
1392 +m4trace:configure.ac:91: -1- AC_CONFIG_FILES([
1393 Makefile
1394 src/Makefile
1395 scripts/Makefile
1396 @@ -512,29 +540,29 @@ m4trace:configure.ac:89: -1- AC_CONFIG_FILES([
1397 tests/gnustack/Makefile
1398 tests/pxtpax/Makefile
1399 ])
1400 -m4trace:configure.ac:99: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
1401 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
1402 -m4trace:configure.ac:99: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1403 -m4trace:configure.ac:99: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
1404 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([LTLIBOBJS])
1405 -m4trace:configure.ac:99: -1- m4_pattern_allow([^LTLIBOBJS$])
1406 -m4trace:configure.ac:99: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
1407 -m4trace:configure.ac:99: -1- AC_SUBST([am__EXEEXT_TRUE])
1408 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
1409 -m4trace:configure.ac:99: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
1410 -m4trace:configure.ac:99: -1- AC_SUBST([am__EXEEXT_FALSE])
1411 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
1412 -m4trace:configure.ac:99: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
1413 -m4trace:configure.ac:99: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
1414 -m4trace:configure.ac:99: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
1415 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([top_builddir])
1416 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([top_build_prefix])
1417 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([srcdir])
1418 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([abs_srcdir])
1419 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([top_srcdir])
1420 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([abs_top_srcdir])
1421 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([builddir])
1422 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([abs_builddir])
1423 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([abs_top_builddir])
1424 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([INSTALL])
1425 -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([MKDIR_P])
1426 +m4trace:configure.ac:101: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
1427 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
1428 +m4trace:configure.ac:101: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1429 +m4trace:configure.ac:101: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
1430 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([LTLIBOBJS])
1431 +m4trace:configure.ac:101: -1- m4_pattern_allow([^LTLIBOBJS$])
1432 +m4trace:configure.ac:101: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
1433 +m4trace:configure.ac:101: -1- AC_SUBST([am__EXEEXT_TRUE])
1434 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
1435 +m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
1436 +m4trace:configure.ac:101: -1- AC_SUBST([am__EXEEXT_FALSE])
1437 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
1438 +m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
1439 +m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
1440 +m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
1441 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([top_builddir])
1442 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([top_build_prefix])
1443 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([srcdir])
1444 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([abs_srcdir])
1445 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([top_srcdir])
1446 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([abs_top_srcdir])
1447 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([builddir])
1448 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([abs_builddir])
1449 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([abs_top_builddir])
1450 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([INSTALL])
1451 +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([MKDIR_P])
1452
1453 diff --git a/aclocal.m4 b/autom4te.cache/traces.2
1454 similarity index 50%
1455 copy from aclocal.m4
1456 copy to autom4te.cache/traces.2
1457 index 1bc55f4..fefc52e 100644
1458 --- a/aclocal.m4
1459 +++ b/autom4te.cache/traces.2
1460 @@ -1,129 +1,27 @@
1461 -# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
1462 -
1463 -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
1464 -# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
1465 -# This file is free software; the Free Software Foundation
1466 -# gives unlimited permission to copy and/or distribute it,
1467 -# with or without modifications, as long as this notice is preserved.
1468 -
1469 -# This program is distributed in the hope that it will be useful,
1470 -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
1471 -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
1472 -# PARTICULAR PURPOSE.
1473 -
1474 -m4_ifndef([AC_AUTOCONF_VERSION],
1475 - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
1476 -m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
1477 -[m4_warning([this file was generated for autoconf 2.68.
1478 -You have another version of autoconf. It may work, but is not guaranteed to.
1479 -If you have problems, you may need to regenerate the build system entirely.
1480 -To do so, use the procedure documented by the package, typically `autoreconf'.])])
1481 -
1482 -# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
1483 -#
1484 -# This file is free software; the Free Software Foundation
1485 -# gives unlimited permission to copy and/or distribute it,
1486 -# with or without modifications, as long as this notice is preserved.
1487 -
1488 -# AM_AUTOMAKE_VERSION(VERSION)
1489 -# ----------------------------
1490 -# Automake X.Y traces this macro to ensure aclocal.m4 has been
1491 -# generated from the m4 files accompanying Automake X.Y.
1492 -# (This private macro should not be called outside this file.)
1493 -AC_DEFUN([AM_AUTOMAKE_VERSION],
1494 -[am__api_version='1.11'
1495 +m4trace:/usr/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11'
1496 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
1497 dnl require some minimum version. Point them to the right macro.
1498 m4_if([$1], [1.11.1], [],
1499 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
1500 ])
1501 -
1502 -# _AM_AUTOCONF_VERSION(VERSION)
1503 -# -----------------------------
1504 -# aclocal traces this macro to find the Autoconf version.
1505 -# This is a private macro too. Using m4_define simplifies
1506 -# the logic in aclocal, which can simply ignore this definition.
1507 -m4_define([_AM_AUTOCONF_VERSION], [])
1508 -
1509 -# AM_SET_CURRENT_AUTOMAKE_VERSION
1510 -# -------------------------------
1511 -# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
1512 -# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
1513 -AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
1514 -[AM_AUTOMAKE_VERSION([1.11.1])dnl
1515 +m4trace:/usr/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl
1516 m4_ifndef([AC_AUTOCONF_VERSION],
1517 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
1518 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
1519 -
1520 -# AM_AUX_DIR_EXPAND -*- Autoconf -*-
1521 -
1522 -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
1523 -#
1524 -# This file is free software; the Free Software Foundation
1525 -# gives unlimited permission to copy and/or distribute it,
1526 -# with or without modifications, as long as this notice is preserved.
1527 -
1528 -# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
1529 -# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
1530 -# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
1531 -#
1532 -# Of course, Automake must honor this variable whenever it calls a
1533 -# tool from the auxiliary directory. The problem is that $srcdir (and
1534 -# therefore $ac_aux_dir as well) can be either absolute or relative,
1535 -# depending on how configure is run. This is pretty annoying, since
1536 -# it makes $ac_aux_dir quite unusable in subdirectories: in the top
1537 -# source directory, any form will work fine, but in subdirectories a
1538 -# relative path needs to be adjusted first.
1539 -#
1540 -# $ac_aux_dir/missing
1541 -# fails when called from a subdirectory if $ac_aux_dir is relative
1542 -# $top_srcdir/$ac_aux_dir/missing
1543 -# fails if $ac_aux_dir is absolute,
1544 -# fails when called from a subdirectory in a VPATH build with
1545 -# a relative $ac_aux_dir
1546 -#
1547 -# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
1548 -# are both prefixed by $srcdir. In an in-source build this is usually
1549 -# harmless because $srcdir is `.', but things will broke when you
1550 -# start a VPATH build or use an absolute $srcdir.
1551 -#
1552 -# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
1553 -# iff we strip the leading $srcdir from $ac_aux_dir. That would be:
1554 -# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
1555 -# and then we would define $MISSING as
1556 -# MISSING="\${SHELL} $am_aux_dir/missing"
1557 -# This will work as long as MISSING is not called from configure, because
1558 -# unfortunately $(top_srcdir) has no meaning in configure.
1559 -# However there are other variables, like CC, which are often used in
1560 -# configure, and could therefore not use this "fixed" $ac_aux_dir.
1561 -#
1562 -# Another solution, used here, is to always expand $ac_aux_dir to an
1563 -# absolute PATH. The drawback is that using absolute paths prevent a
1564 -# configured tree to be moved without reconfiguration.
1565 -
1566 -AC_DEFUN([AM_AUX_DIR_EXPAND],
1567 -[dnl Rely on autoconf to set up CDPATH properly.
1568 +m4trace:/usr/share/aclocal-1.11/as.m4:13: -1- AC_DEFUN([AM_PROG_AS], [# By default we simply use the C compiler to build assembly code.
1569 +AC_REQUIRE([AC_PROG_CC])
1570 +test "${CCAS+set}" = set || CCAS=$CC
1571 +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
1572 +AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)])
1573 +AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)])
1574 +_AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl
1575 +])
1576 +m4trace:/usr/share/aclocal-1.11/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
1577 AC_PREREQ([2.50])dnl
1578 # expand $ac_aux_dir to an absolute path
1579 am_aux_dir=`cd $ac_aux_dir && pwd`
1580 ])
1581 -
1582 -# AM_CONDITIONAL -*- Autoconf -*-
1583 -
1584 -# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
1585 -# Free Software Foundation, Inc.
1586 -#
1587 -# This file is free software; the Free Software Foundation
1588 -# gives unlimited permission to copy and/or distribute it,
1589 -# with or without modifications, as long as this notice is preserved.
1590 -
1591 -# serial 9
1592 -
1593 -# AM_CONDITIONAL(NAME, SHELL-CONDITION)
1594 -# -------------------------------------
1595 -# Define a conditional.
1596 -AC_DEFUN([AM_CONDITIONAL],
1597 -[AC_PREREQ(2.52)dnl
1598 +m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
1599 ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
1600 [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
1601 AC_SUBST([$1_TRUE])dnl
1602 @@ -143,35 +41,7 @@ AC_CONFIG_COMMANDS_PRE(
1603 AC_MSG_ERROR([[conditional "$1" was never defined.
1604 Usually this means the macro was only invoked conditionally.]])
1605 fi])])
1606 -
1607 -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
1608 -# Free Software Foundation, Inc.
1609 -#
1610 -# This file is free software; the Free Software Foundation
1611 -# gives unlimited permission to copy and/or distribute it,
1612 -# with or without modifications, as long as this notice is preserved.
1613 -
1614 -# serial 10
1615 -
1616 -# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
1617 -# written in clear, in which case automake, when reading aclocal.m4,
1618 -# will think it sees a *use*, and therefore will trigger all it's
1619 -# C support machinery. Also note that it means that autoscan, seeing
1620 -# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
1621 -
1622 -
1623 -# _AM_DEPENDENCIES(NAME)
1624 -# ----------------------
1625 -# See how the compiler implements dependency checking.
1626 -# NAME is "CC", "CXX", "GCJ", or "OBJC".
1627 -# We try a few techniques and use that to set a single cache variable.
1628 -#
1629 -# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
1630 -# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
1631 -# dependency, and given that the user is not expected to run this macro,
1632 -# just rely on AC_PROG_CC.
1633 -AC_DEFUN([_AM_DEPENDENCIES],
1634 -[AC_REQUIRE([AM_SET_DEPDIR])dnl
1635 +m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
1636 AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
1637 AC_REQUIRE([AM_MAKE_INCLUDE])dnl
1638 AC_REQUIRE([AM_DEP_TRACK])dnl
1639 @@ -299,22 +169,10 @@ AM_CONDITIONAL([am__fastdep$1], [
1640 test "x$enable_dependency_tracking" != xno \
1641 && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
1642 ])
1643 -
1644 -
1645 -# AM_SET_DEPDIR
1646 -# -------------
1647 -# Choose a directory name for dependency files.
1648 -# This macro is AC_REQUIREd in _AM_DEPENDENCIES
1649 -AC_DEFUN([AM_SET_DEPDIR],
1650 -[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
1651 +m4trace:/usr/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
1652 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
1653 ])
1654 -
1655 -
1656 -# AM_DEP_TRACK
1657 -# ------------
1658 -AC_DEFUN([AM_DEP_TRACK],
1659 -[AC_ARG_ENABLE(dependency-tracking,
1660 +m4trace:/usr/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
1661 [ --disable-dependency-tracking speeds up one-time build
1662 --enable-dependency-tracking do not reject slow dependency extractors])
1663 if test "x$enable_dependency_tracking" != xno; then
1664 @@ -325,22 +183,7 @@ AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
1665 AC_SUBST([AMDEPBACKSLASH])dnl
1666 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
1667 ])
1668 -
1669 -# Generate code to set up dependency tracking. -*- Autoconf -*-
1670 -
1671 -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
1672 -# Free Software Foundation, Inc.
1673 -#
1674 -# This file is free software; the Free Software Foundation
1675 -# gives unlimited permission to copy and/or distribute it,
1676 -# with or without modifications, as long as this notice is preserved.
1677 -
1678 -#serial 5
1679 -
1680 -# _AM_OUTPUT_DEPENDENCY_COMMANDS
1681 -# ------------------------------
1682 -AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
1683 -[{
1684 +m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
1685 # Autoconf 2.62 quotes --file arguments for eval, but not when files
1686 # are listed without --file. Let's play safe and only enable the eval
1687 # if we detect the quoting.
1688 @@ -390,49 +233,12 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
1689 done
1690 done
1691 }
1692 -])# _AM_OUTPUT_DEPENDENCY_COMMANDS
1693 -
1694 -
1695 -# AM_OUTPUT_DEPENDENCY_COMMANDS
1696 -# -----------------------------
1697 -# This macro should only be invoked once -- use via AC_REQUIRE.
1698 -#
1699 -# This code is only required when automatic dependency tracking
1700 -# is enabled. FIXME. This creates each `.P' file that we will
1701 -# need in order to bootstrap the dependency handling code.
1702 -AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
1703 -[AC_CONFIG_COMMANDS([depfiles],
1704 +])
1705 +m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
1706 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
1707 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
1708 ])
1709 -
1710 -# Do all the work for Automake. -*- Autoconf -*-
1711 -
1712 -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
1713 -# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
1714 -#
1715 -# This file is free software; the Free Software Foundation
1716 -# gives unlimited permission to copy and/or distribute it,
1717 -# with or without modifications, as long as this notice is preserved.
1718 -
1719 -# serial 16
1720 -
1721 -# This macro actually does too much. Some checks are only needed if
1722 -# your package does certain things. But this isn't really a big deal.
1723 -
1724 -# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
1725 -# AM_INIT_AUTOMAKE([OPTIONS])
1726 -# -----------------------------------------------
1727 -# The call with PACKAGE and VERSION arguments is the old style
1728 -# call (pre autoconf-2.50), which is being phased out. PACKAGE
1729 -# and VERSION should now be passed to AC_INIT and removed from
1730 -# the call to AM_INIT_AUTOMAKE.
1731 -# We support both call styles for the transition. After
1732 -# the next Automake release, Autoconf can make the AC_INIT
1733 -# arguments mandatory, and then we can depend on a new Autoconf
1734 -# release and drop the old call support.
1735 -AC_DEFUN([AM_INIT_AUTOMAKE],
1736 -[AC_PREREQ([2.62])dnl
1737 +m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl
1738 dnl Autoconf wants to disallow AM_ names. We explicitly allow
1739 dnl the ones we care about.
1740 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
1741 @@ -516,23 +322,7 @@ AC_CONFIG_COMMANDS_PRE(dnl
1742 [m4_provide_if([_AM_COMPILER_EXEEXT],
1743 [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
1744 ])
1745 -
1746 -dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
1747 -dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
1748 -dnl mangled by Autoconf and run in a shell conditional statement.
1749 -m4_define([_AC_COMPILER_EXEEXT],
1750 -m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
1751 -
1752 -
1753 -# When config.status generates a header, we must update the stamp-h file.
1754 -# This file resides in the same directory as the config header
1755 -# that is generated. The stamp files are numbered to have different names.
1756 -
1757 -# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
1758 -# loop where config.status creates the headers, so we can generate
1759 -# our stamp files there.
1760 -AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
1761 -[# Compute $1's index in $config_headers.
1762 +m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
1763 _am_arg=$1
1764 _am_stamp_count=1
1765 for _am_header in $config_headers :; do
1766 @@ -544,18 +334,7 @@ for _am_header in $config_headers :; do
1767 esac
1768 done
1769 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
1770 -
1771 -# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
1772 -#
1773 -# This file is free software; the Free Software Foundation
1774 -# gives unlimited permission to copy and/or distribute it,
1775 -# with or without modifications, as long as this notice is preserved.
1776 -
1777 -# AM_PROG_INSTALL_SH
1778 -# ------------------
1779 -# Define $install_sh.
1780 -AC_DEFUN([AM_PROG_INSTALL_SH],
1781 -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1782 +m4trace:/usr/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1783 if test x"${install_sh}" != xset; then
1784 case $am_aux_dir in
1785 *\ * | *\ *)
1786 @@ -565,19 +344,7 @@ if test x"${install_sh}" != xset; then
1787 esac
1788 fi
1789 AC_SUBST(install_sh)])
1790 -
1791 -# Copyright (C) 2003, 2005 Free Software Foundation, Inc.
1792 -#
1793 -# This file is free software; the Free Software Foundation
1794 -# gives unlimited permission to copy and/or distribute it,
1795 -# with or without modifications, as long as this notice is preserved.
1796 -
1797 -# serial 2
1798 -
1799 -# Check whether the underlying file-system supports filenames
1800 -# with a leading dot. For instance MS-DOS doesn't.
1801 -AC_DEFUN([AM_SET_LEADING_DOT],
1802 -[rm -rf .tst 2>/dev/null
1803 +m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
1804 mkdir .tst 2>/dev/null
1805 if test -d .tst; then
1806 am__leading_dot=.
1807 @@ -586,22 +353,7 @@ else
1808 fi
1809 rmdir .tst 2>/dev/null
1810 AC_SUBST([am__leading_dot])])
1811 -
1812 -# Check to see how 'make' treats includes. -*- Autoconf -*-
1813 -
1814 -# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc.
1815 -#
1816 -# This file is free software; the Free Software Foundation
1817 -# gives unlimited permission to copy and/or distribute it,
1818 -# with or without modifications, as long as this notice is preserved.
1819 -
1820 -# serial 4
1821 -
1822 -# AM_MAKE_INCLUDE()
1823 -# -----------------
1824 -# Check to see how make treats includes.
1825 -AC_DEFUN([AM_MAKE_INCLUDE],
1826 -[am_make=${MAKE-make}
1827 +m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
1828 cat > confinc << 'END'
1829 am__doit:
1830 @echo this is the am__doit target
1831 @@ -638,32 +390,10 @@ AC_SUBST([am__quote])
1832 AC_MSG_RESULT([$_am_result])
1833 rm -f confinc confmf
1834 ])
1835 -
1836 -# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
1837 -
1838 -# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
1839 -# Free Software Foundation, Inc.
1840 -#
1841 -# This file is free software; the Free Software Foundation
1842 -# gives unlimited permission to copy and/or distribute it,
1843 -# with or without modifications, as long as this notice is preserved.
1844 -
1845 -# serial 6
1846 -
1847 -# AM_MISSING_PROG(NAME, PROGRAM)
1848 -# ------------------------------
1849 -AC_DEFUN([AM_MISSING_PROG],
1850 -[AC_REQUIRE([AM_MISSING_HAS_RUN])
1851 +m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
1852 $1=${$1-"${am_missing_run}$2"}
1853 AC_SUBST($1)])
1854 -
1855 -
1856 -# AM_MISSING_HAS_RUN
1857 -# ------------------
1858 -# Define MISSING if not defined so far and test if it supports --run.
1859 -# If it does, set am_missing_run to use it, otherwise, to nothing.
1860 -AC_DEFUN([AM_MISSING_HAS_RUN],
1861 -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1862 +m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1863 AC_REQUIRE_AUX_FILE([missing])dnl
1864 if test x"${MISSING+set}" != xset; then
1865 case $am_aux_dir in
1866 @@ -681,18 +411,7 @@ else
1867 AC_MSG_WARN([`missing' script is too old or missing])
1868 fi
1869 ])
1870 -
1871 -# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
1872 -#
1873 -# This file is free software; the Free Software Foundation
1874 -# gives unlimited permission to copy and/or distribute it,
1875 -# with or without modifications, as long as this notice is preserved.
1876 -
1877 -# AM_PROG_MKDIR_P
1878 -# ---------------
1879 -# Check for `mkdir -p'.
1880 -AC_DEFUN([AM_PROG_MKDIR_P],
1881 -[AC_PREREQ([2.60])dnl
1882 +m4trace:/usr/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
1883 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
1884 dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
1885 dnl while keeping a definition of mkdir_p for backward compatibility.
1886 @@ -707,55 +426,16 @@ case $mkdir_p in
1887 */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
1888 esac
1889 ])
1890 -
1891 -# Helper functions for option handling. -*- Autoconf -*-
1892 -
1893 -# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc.
1894 -#
1895 -# This file is free software; the Free Software Foundation
1896 -# gives unlimited permission to copy and/or distribute it,
1897 -# with or without modifications, as long as this notice is preserved.
1898 -
1899 -# serial 4
1900 -
1901 -# _AM_MANGLE_OPTION(NAME)
1902 -# -----------------------
1903 -AC_DEFUN([_AM_MANGLE_OPTION],
1904 -[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1905 -
1906 -# _AM_SET_OPTION(NAME)
1907 -# ------------------------------
1908 -# Set option NAME. Presently that only means defining a flag for this option.
1909 -AC_DEFUN([_AM_SET_OPTION],
1910 -[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
1911 -
1912 -# _AM_SET_OPTIONS(OPTIONS)
1913 -# ----------------------------------
1914 -# OPTIONS is a space-separated list of Automake options.
1915 -AC_DEFUN([_AM_SET_OPTIONS],
1916 -[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1917 -
1918 -# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
1919 -# -------------------------------------------
1920 -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
1921 -AC_DEFUN([_AM_IF_OPTION],
1922 -[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1923 -
1924 -# Check to make sure that the build environment is sane. -*- Autoconf -*-
1925 -
1926 -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
1927 -# Free Software Foundation, Inc.
1928 -#
1929 -# This file is free software; the Free Software Foundation
1930 -# gives unlimited permission to copy and/or distribute it,
1931 -# with or without modifications, as long as this notice is preserved.
1932 -
1933 -# serial 5
1934 -
1935 -# AM_SANITY_CHECK
1936 -# ---------------
1937 -AC_DEFUN([AM_SANITY_CHECK],
1938 -[AC_MSG_CHECKING([whether build environment is sane])
1939 +m4trace:/usr/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1940 +m4trace:/usr/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
1941 +m4trace:/usr/share/aclocal-1.11/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1942 +m4trace:/usr/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1943 +m4trace:/usr/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
1944 + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
1945 + ac_status=$?
1946 + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1947 + (exit $ac_status); }])
1948 +m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
1949 # Just in case
1950 sleep 1
1951 echo timestamp > conftest.file
1952 @@ -805,24 +485,20 @@ else
1953 Check your system clock])
1954 fi
1955 AC_MSG_RESULT(yes)])
1956 -
1957 -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
1958 -#
1959 -# This file is free software; the Free Software Foundation
1960 -# gives unlimited permission to copy and/or distribute it,
1961 -# with or without modifications, as long as this notice is preserved.
1962 -
1963 -# AM_PROG_INSTALL_STRIP
1964 -# ---------------------
1965 -# One issue with vendor `install' (even GNU) is that you can't
1966 -# specify the program used to strip binaries. This is especially
1967 -# annoying in cross-compiling environments, where the build's strip
1968 -# is unlikely to handle the host's binaries.
1969 -# Fortunately install-sh will honor a STRIPPROG variable, so we
1970 -# always use install-sh in `make install-strip', and initialize
1971 -# STRIPPROG with the value of the STRIP variable (set by the user).
1972 -AC_DEFUN([AM_PROG_INSTALL_STRIP],
1973 -[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1974 +m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules],
1975 +[ --enable-silent-rules less verbose build output (undo: `make V=1')
1976 + --disable-silent-rules verbose build output (undo: `make V=0')])
1977 +case $enable_silent_rules in
1978 +yes) AM_DEFAULT_VERBOSITY=0;;
1979 +no) AM_DEFAULT_VERBOSITY=1;;
1980 +*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1981 +esac
1982 +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1983 +AM_BACKSLASH='\'
1984 +AC_SUBST([AM_BACKSLASH])dnl
1985 +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1986 +])
1987 +m4trace:/usr/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1988 # Installed binaries are usually stripped using `strip' when the user
1989 # run `make install-strip'. However `strip' might not be the right
1990 # tool to use in cross-compilation environments, therefore Automake
1991 @@ -833,51 +509,9 @@ if test "$cross_compiling" != no; then
1992 fi
1993 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1994 AC_SUBST([INSTALL_STRIP_PROGRAM])])
1995 -
1996 -# Copyright (C) 2006, 2008 Free Software Foundation, Inc.
1997 -#
1998 -# This file is free software; the Free Software Foundation
1999 -# gives unlimited permission to copy and/or distribute it,
2000 -# with or without modifications, as long as this notice is preserved.
2001 -
2002 -# serial 2
2003 -
2004 -# _AM_SUBST_NOTMAKE(VARIABLE)
2005 -# ---------------------------
2006 -# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
2007 -# This macro is traced by Automake.
2008 -AC_DEFUN([_AM_SUBST_NOTMAKE])
2009 -
2010 -# AM_SUBST_NOTMAKE(VARIABLE)
2011 -# ---------------------------
2012 -# Public sister of _AM_SUBST_NOTMAKE.
2013 -AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
2014 -
2015 -# Check how to create a tarball. -*- Autoconf -*-
2016 -
2017 -# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
2018 -#
2019 -# This file is free software; the Free Software Foundation
2020 -# gives unlimited permission to copy and/or distribute it,
2021 -# with or without modifications, as long as this notice is preserved.
2022 -
2023 -# serial 2
2024 -
2025 -# _AM_PROG_TAR(FORMAT)
2026 -# --------------------
2027 -# Check how to create a tarball in format FORMAT.
2028 -# FORMAT should be one of `v7', `ustar', or `pax'.
2029 -#
2030 -# Substitute a variable $(am__tar) that is a command
2031 -# writing to stdout a FORMAT-tarball containing the directory
2032 -# $tardir.
2033 -# tardir=directory && $(am__tar) > result.tar
2034 -#
2035 -# Substitute a variable $(am__untar) that extract such
2036 -# a tarball read from stdin.
2037 -# $(am__untar) < result.tar
2038 -AC_DEFUN([_AM_PROG_TAR],
2039 -[# Always define AMTAR for backward compatibility.
2040 +m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
2041 +m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
2042 +m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
2043 AM_MISSING_PROG([AMTAR], [tar])
2044 m4_if([$1], [v7],
2045 [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
2046 @@ -947,5 +581,244 @@ AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
2047 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
2048 AC_SUBST([am__tar])
2049 AC_SUBST([am__untar])
2050 -]) # _AM_PROG_TAR
2051 -
2052 +])
2053 +m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?A[CHUM]_])
2054 +m4trace:configure.ac:5: -1- m4_pattern_forbid([_AC_])
2055 +m4trace:configure.ac:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
2056 +m4trace:configure.ac:5: -1- m4_pattern_allow([^AS_FLAGS$])
2057 +m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?m4_])
2058 +m4trace:configure.ac:5: -1- m4_pattern_forbid([^dnl$])
2059 +m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?AS_])
2060 +m4trace:configure.ac:5: -1- m4_pattern_allow([^SHELL$])
2061 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PATH_SEPARATOR$])
2062 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
2063 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2064 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2065 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
2066 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2067 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
2068 +m4trace:configure.ac:5: -1- m4_pattern_allow([^exec_prefix$])
2069 +m4trace:configure.ac:5: -1- m4_pattern_allow([^prefix$])
2070 +m4trace:configure.ac:5: -1- m4_pattern_allow([^program_transform_name$])
2071 +m4trace:configure.ac:5: -1- m4_pattern_allow([^bindir$])
2072 +m4trace:configure.ac:5: -1- m4_pattern_allow([^sbindir$])
2073 +m4trace:configure.ac:5: -1- m4_pattern_allow([^libexecdir$])
2074 +m4trace:configure.ac:5: -1- m4_pattern_allow([^datarootdir$])
2075 +m4trace:configure.ac:5: -1- m4_pattern_allow([^datadir$])
2076 +m4trace:configure.ac:5: -1- m4_pattern_allow([^sysconfdir$])
2077 +m4trace:configure.ac:5: -1- m4_pattern_allow([^sharedstatedir$])
2078 +m4trace:configure.ac:5: -1- m4_pattern_allow([^localstatedir$])
2079 +m4trace:configure.ac:5: -1- m4_pattern_allow([^includedir$])
2080 +m4trace:configure.ac:5: -1- m4_pattern_allow([^oldincludedir$])
2081 +m4trace:configure.ac:5: -1- m4_pattern_allow([^docdir$])
2082 +m4trace:configure.ac:5: -1- m4_pattern_allow([^infodir$])
2083 +m4trace:configure.ac:5: -1- m4_pattern_allow([^htmldir$])
2084 +m4trace:configure.ac:5: -1- m4_pattern_allow([^dvidir$])
2085 +m4trace:configure.ac:5: -1- m4_pattern_allow([^pdfdir$])
2086 +m4trace:configure.ac:5: -1- m4_pattern_allow([^psdir$])
2087 +m4trace:configure.ac:5: -1- m4_pattern_allow([^libdir$])
2088 +m4trace:configure.ac:5: -1- m4_pattern_allow([^localedir$])
2089 +m4trace:configure.ac:5: -1- m4_pattern_allow([^mandir$])
2090 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
2091 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2092 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2093 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
2094 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2095 +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
2096 +m4trace:configure.ac:5: -1- m4_pattern_allow([^DEFS$])
2097 +m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_C$])
2098 +m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_N$])
2099 +m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_T$])
2100 +m4trace:configure.ac:5: -1- m4_pattern_allow([^LIBS$])
2101 +m4trace:configure.ac:5: -1- m4_pattern_allow([^build_alias$])
2102 +m4trace:configure.ac:5: -1- m4_pattern_allow([^host_alias$])
2103 +m4trace:configure.ac:5: -1- m4_pattern_allow([^target_alias$])
2104 +m4trace:configure.ac:8: -1- AM_INIT_AUTOMAKE([1.11 foreign])
2105 +m4trace:configure.ac:8: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
2106 +m4trace:configure.ac:8: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
2107 +m4trace:configure.ac:8: -1- AM_AUTOMAKE_VERSION([1.11.1])
2108 +m4trace:configure.ac:8: -1- _AM_AUTOCONF_VERSION([2.68])
2109 +m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
2110 +m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
2111 +m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_DATA$])
2112 +m4trace:configure.ac:8: -1- m4_pattern_allow([^am__isrc$])
2113 +m4trace:configure.ac:8: -1- _AM_SUBST_NOTMAKE([am__isrc])
2114 +m4trace:configure.ac:8: -1- m4_pattern_allow([^CYGPATH_W$])
2115 +m4trace:configure.ac:8: -1- _AM_SET_OPTIONS([1.11 foreign])
2116 +m4trace:configure.ac:8: -1- _AM_SET_OPTION([1.11])
2117 +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([1.11])
2118 +m4trace:configure.ac:8: -1- _AM_SET_OPTION([foreign])
2119 +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([foreign])
2120 +m4trace:configure.ac:8: -1- m4_pattern_allow([^PACKAGE$])
2121 +m4trace:configure.ac:8: -1- m4_pattern_allow([^VERSION$])
2122 +m4trace:configure.ac:8: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
2123 + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
2124 +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([no-define])
2125 +m4trace:configure.ac:8: -1- m4_pattern_allow([^PACKAGE$])
2126 +m4trace:configure.ac:8: -1- m4_pattern_allow([^VERSION$])
2127 +m4trace:configure.ac:8: -1- AM_SANITY_CHECK
2128 +m4trace:configure.ac:8: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
2129 +m4trace:configure.ac:8: -1- AM_MISSING_HAS_RUN
2130 +m4trace:configure.ac:8: -1- AM_AUX_DIR_EXPAND
2131 +m4trace:configure.ac:8: -1- m4_pattern_allow([^ACLOCAL$])
2132 +m4trace:configure.ac:8: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
2133 +m4trace:configure.ac:8: -1- m4_pattern_allow([^AUTOCONF$])
2134 +m4trace:configure.ac:8: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
2135 +m4trace:configure.ac:8: -1- m4_pattern_allow([^AUTOMAKE$])
2136 +m4trace:configure.ac:8: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
2137 +m4trace:configure.ac:8: -1- m4_pattern_allow([^AUTOHEADER$])
2138 +m4trace:configure.ac:8: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
2139 +m4trace:configure.ac:8: -1- m4_pattern_allow([^MAKEINFO$])
2140 +m4trace:configure.ac:8: -1- AM_PROG_INSTALL_SH
2141 +m4trace:configure.ac:8: -1- m4_pattern_allow([^install_sh$])
2142 +m4trace:configure.ac:8: -1- AM_PROG_INSTALL_STRIP
2143 +m4trace:configure.ac:8: -1- m4_pattern_allow([^STRIP$])
2144 +m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
2145 +m4trace:configure.ac:8: -1- AM_PROG_MKDIR_P
2146 +m4trace:configure.ac:8: -1- m4_pattern_allow([^MKDIR_P$])
2147 +m4trace:configure.ac:8: -1- m4_pattern_allow([^mkdir_p$])
2148 +m4trace:configure.ac:8: -1- m4_pattern_allow([^AWK$])
2149 +m4trace:configure.ac:8: -1- m4_pattern_allow([^SET_MAKE$])
2150 +m4trace:configure.ac:8: -1- AM_SET_LEADING_DOT
2151 +m4trace:configure.ac:8: -1- m4_pattern_allow([^am__leading_dot$])
2152 +m4trace:configure.ac:8: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2153 + [_AM_PROG_TAR([v7])])])
2154 +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([tar-ustar])
2155 +m4trace:configure.ac:8: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
2156 +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([tar-pax])
2157 +m4trace:configure.ac:8: -1- _AM_PROG_TAR([v7])
2158 +m4trace:configure.ac:8: -1- AM_MISSING_PROG([AMTAR], [tar])
2159 +m4trace:configure.ac:8: -1- m4_pattern_allow([^AMTAR$])
2160 +m4trace:configure.ac:8: -1- m4_pattern_allow([^am__tar$])
2161 +m4trace:configure.ac:8: -1- m4_pattern_allow([^am__untar$])
2162 +m4trace:configure.ac:8: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
2163 + [_AM_DEPENDENCIES(CC)],
2164 + [define([AC_PROG_CC],
2165 + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
2166 +AC_PROVIDE_IFELSE([AC_PROG_CXX],
2167 + [_AM_DEPENDENCIES(CXX)],
2168 + [define([AC_PROG_CXX],
2169 + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
2170 +AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2171 + [_AM_DEPENDENCIES(OBJC)],
2172 + [define([AC_PROG_OBJC],
2173 + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
2174 +])
2175 +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([no-dependencies])
2176 +m4trace:configure.ac:8: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
2177 +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([silent-rules])
2178 +m4trace:configure.ac:9: -1- AM_SILENT_RULES([yes])
2179 +m4trace:configure.ac:9: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
2180 +m4trace:configure.ac:9: -1- m4_pattern_allow([^AM_BACKSLASH$])
2181 +m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
2182 +m4trace:configure.ac:11: -1- m4_pattern_allow([^has_yasm$])
2183 +m4trace:configure.ac:27: -1- AM_CONDITIONAL([TEST], [test "x$has_yasm" = "xyes"])
2184 +m4trace:configure.ac:27: -1- m4_pattern_allow([^TEST_TRUE$])
2185 +m4trace:configure.ac:27: -1- m4_pattern_allow([^TEST_FALSE$])
2186 +m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([TEST_TRUE])
2187 +m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([TEST_FALSE])
2188 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2189 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CFLAGS$])
2190 +m4trace:configure.ac:29: -1- m4_pattern_allow([^LDFLAGS$])
2191 +m4trace:configure.ac:29: -1- m4_pattern_allow([^LIBS$])
2192 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPPFLAGS$])
2193 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2194 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2195 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2196 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$])
2197 +m4trace:configure.ac:29: -1- m4_pattern_allow([^ac_ct_CC$])
2198 +m4trace:configure.ac:29: -1- m4_pattern_allow([^EXEEXT$])
2199 +m4trace:configure.ac:29: -1- m4_pattern_allow([^OBJEXT$])
2200 +m4trace:configure.ac:29: -1- _AM_DEPENDENCIES([CC])
2201 +m4trace:configure.ac:29: -1- AM_SET_DEPDIR
2202 +m4trace:configure.ac:29: -1- m4_pattern_allow([^DEPDIR$])
2203 +m4trace:configure.ac:29: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
2204 +m4trace:configure.ac:29: -1- AM_MAKE_INCLUDE
2205 +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__include$])
2206 +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__quote$])
2207 +m4trace:configure.ac:29: -1- AM_DEP_TRACK
2208 +m4trace:configure.ac:29: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2209 +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_TRUE$])
2210 +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_FALSE$])
2211 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
2212 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
2213 +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
2214 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
2215 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CCDEPMODE$])
2216 +m4trace:configure.ac:29: -1- AM_CONDITIONAL([am__fastdepCC], [
2217 + test "x$enable_dependency_tracking" != xno \
2218 + && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
2219 +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
2220 +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
2221 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
2222 +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
2223 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPP$])
2224 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPPFLAGS$])
2225 +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPP$])
2226 +m4trace:configure.ac:29: -1- m4_pattern_allow([^GREP$])
2227 +m4trace:configure.ac:29: -1- m4_pattern_allow([^EGREP$])
2228 +m4trace:configure.ac:29: -1- m4_pattern_allow([^STDC_HEADERS$])
2229 +m4trace:configure.ac:29: -1- m4_pattern_allow([^HAVE_ATTR_XATTR_H$])
2230 +m4trace:configure.ac:29: -1- m4_pattern_allow([^HAVE_LIBATTR$])
2231 +m4trace:configure.ac:63: -1- m4_pattern_allow([^AWK$])
2232 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
2233 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CFLAGS$])
2234 +m4trace:configure.ac:64: -1- m4_pattern_allow([^LDFLAGS$])
2235 +m4trace:configure.ac:64: -1- m4_pattern_allow([^LIBS$])
2236 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CPPFLAGS$])
2237 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
2238 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
2239 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
2240 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$])
2241 +m4trace:configure.ac:64: -1- m4_pattern_allow([^ac_ct_CC$])
2242 +m4trace:configure.ac:64: -1- _AM_DEPENDENCIES([CC])
2243 +m4trace:configure.ac:64: -1- m4_pattern_allow([^CCDEPMODE$])
2244 +m4trace:configure.ac:64: -1- AM_CONDITIONAL([am__fastdepCC], [
2245 + test "x$enable_dependency_tracking" != xno \
2246 + && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
2247 +m4trace:configure.ac:64: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
2248 +m4trace:configure.ac:64: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
2249 +m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
2250 +m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
2251 +m4trace:configure.ac:65: -1- AM_PROG_AS
2252 +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCAS$])
2253 +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCASFLAGS$])
2254 +m4trace:configure.ac:65: -1- _AM_IF_OPTION([no-dependencies], [], [_AM_DEPENDENCIES([CCAS])])
2255 +m4trace:configure.ac:65: -2- _AM_MANGLE_OPTION([no-dependencies])
2256 +m4trace:configure.ac:65: -1- _AM_DEPENDENCIES([CCAS])
2257 +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCASDEPMODE$])
2258 +m4trace:configure.ac:65: -1- AM_CONDITIONAL([am__fastdepCCAS], [
2259 + test "x$enable_dependency_tracking" != xno \
2260 + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3])
2261 +m4trace:configure.ac:65: -1- m4_pattern_allow([^am__fastdepCCAS_TRUE$])
2262 +m4trace:configure.ac:65: -1- m4_pattern_allow([^am__fastdepCCAS_FALSE$])
2263 +m4trace:configure.ac:65: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_TRUE])
2264 +m4trace:configure.ac:65: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_FALSE])
2265 +m4trace:configure.ac:68: -1- m4_pattern_allow([^HAVE_LIBELF$])
2266 +m4trace:configure.ac:80: -1- m4_pattern_allow([^pid_t$])
2267 +m4trace:configure.ac:81: -1- m4_pattern_allow([^size_t$])
2268 +m4trace:configure.ac:82: -1- m4_pattern_allow([^_UINT8_T$])
2269 +m4trace:configure.ac:82: -1- m4_pattern_allow([^uint8_t$])
2270 +m4trace:configure.ac:83: -1- m4_pattern_allow([^uint16_t$])
2271 +m4trace:configure.ac:86: -1- m4_pattern_allow([^LIB@&t@OBJS$])
2272 +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_VFORK_H$])
2273 +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
2274 +m4trace:configure.ac:87: -1- m4_pattern_allow([^vfork$])
2275 +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
2276 +m4trace:configure.ac:88: -1- AC_DEFUN([_AC_Header_stdlib_h], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_header_list], [" stdlib.h"])])
2277 +_AC_HEADERS_EXPANSION])
2278 +m4trace:configure.ac:88: -1- AC_DEFUN([_AC_Header_unistd_h], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_header_list], [" unistd.h"])])
2279 +_AC_HEADERS_EXPANSION])
2280 +m4trace:configure.ac:88: -1- AC_DEFUN([_AC_Header_sys_param_h], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_header_list], [" sys/param.h"])])
2281 +_AC_HEADERS_EXPANSION])
2282 +m4trace:configure.ac:88: -1- m4_pattern_allow([^HAVE_GETPAGESIZE$])
2283 +m4trace:configure.ac:88: -1- m4_pattern_allow([^HAVE_MMAP$])
2284 +m4trace:configure.ac:101: -1- m4_pattern_allow([^LIB@&t@OBJS$])
2285 +m4trace:configure.ac:101: -1- m4_pattern_allow([^LTLIBOBJS$])
2286 +m4trace:configure.ac:101: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
2287 +m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
2288 +m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
2289 +m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
2290 +m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
2291 +m4trace:configure.ac:101: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
2292 +m4trace:configure.ac:101: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
2293
2294 diff --git a/configure b/configure
2295 index 06e0f48..88381f8 100755
2296 --- a/configure
2297 +++ b/configure
2298 @@ -1,6 +1,6 @@
2299 #! /bin/sh
2300 # Guess values for system-dependent variables and create Makefiles.
2301 -# Generated by GNU Autoconf 2.68 for elfix 0.5.0.
2302 +# Generated by GNU Autoconf 2.68 for elfix 0.5.1.
2303 #
2304 # Report bugs to <http://bugs.gentoo.org/>.
2305 #
2306 @@ -560,8 +560,8 @@ MAKEFLAGS=
2307 # Identity of this package.
2308 PACKAGE_NAME='elfix'
2309 PACKAGE_TARNAME='elfix'
2310 -PACKAGE_VERSION='0.5.0'
2311 -PACKAGE_STRING='elfix 0.5.0'
2312 +PACKAGE_VERSION='0.5.1'
2313 +PACKAGE_STRING='elfix 0.5.1'
2314 PACKAGE_BUGREPORT='http://bugs.gentoo.org/'
2315 PACKAGE_URL=''
2316
2317 @@ -607,6 +607,11 @@ ac_subst_vars='am__EXEEXT_FALSE
2318 am__EXEEXT_TRUE
2319 LTLIBOBJS
2320 LIBOBJS
2321 +am__fastdepCCAS_FALSE
2322 +am__fastdepCCAS_TRUE
2323 +CCASDEPMODE
2324 +CCASFLAGS
2325 +CCAS
2326 EGREP
2327 GREP
2328 CPP
2329 @@ -629,6 +634,8 @@ CC
2330 TEST_FALSE
2331 TEST_TRUE
2332 has_yasm
2333 +AM_BACKSLASH
2334 +AM_DEFAULT_VERBOSITY
2335 am__untar
2336 am__tar
2337 AMTAR
2338 @@ -693,6 +700,7 @@ SHELL'
2339 ac_subst_files=''
2340 ac_user_opts='
2341 enable_option_checking
2342 +enable_silent_rules
2343 enable_tests
2344 enable_xattr
2345 enable_dependency_tracking
2346 @@ -705,7 +713,9 @@ CFLAGS
2347 LDFLAGS
2348 LIBS
2349 CPPFLAGS
2350 -CPP'
2351 +CPP
2352 +CCAS
2353 +CCASFLAGS'
2354
2355
2356 # Initialize some variables set by options.
2357 @@ -1248,7 +1258,7 @@ if test "$ac_init_help" = "long"; then
2358 # Omit some internal or obsolete options to make the list less imposing.
2359 # This message is too long to be a string in the A/UX 3.1 sh.
2360 cat <<_ACEOF
2361 -\`configure' configures elfix 0.5.0 to adapt to many kinds of systems.
2362 +\`configure' configures elfix 0.5.1 to adapt to many kinds of systems.
2363
2364 Usage: $0 [OPTION]... [VAR=VALUE]...
2365
2366 @@ -1314,7 +1324,7 @@ fi
2367
2368 if test -n "$ac_init_help"; then
2369 case $ac_init_help in
2370 - short | recursive ) echo "Configuration of elfix 0.5.0:";;
2371 + short | recursive ) echo "Configuration of elfix 0.5.1:";;
2372 esac
2373 cat <<\_ACEOF
2374
2375 @@ -1322,6 +1332,8 @@ Optional Features:
2376 --disable-option-checking ignore unrecognized --enable/--with options
2377 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
2378 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
2379 + --enable-silent-rules less verbose build output (undo: `make V=1')
2380 + --disable-silent-rules verbose build output (undo: `make V=0')
2381 --enable-tests perform tests
2382 --enable-xattr enable support for pax markings in xattrs
2383 --disable-dependency-tracking speeds up one-time build
2384 @@ -1336,6 +1348,8 @@ Some influential environment variables:
2385 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
2386 you have headers in a nonstandard directory <include dir>
2387 CPP C preprocessor
2388 + CCAS assembler compiler command (defaults to CC)
2389 + CCASFLAGS assembler compiler flags (defaults to CFLAGS)
2390
2391 Use these variables to override the choices made by `configure' or to help
2392 it to find libraries and programs with nonstandard names/locations.
2393 @@ -1403,7 +1417,7 @@ fi
2394 test -n "$ac_init_help" && exit $ac_status
2395 if $ac_init_version; then
2396 cat <<\_ACEOF
2397 -elfix configure 0.5.0
2398 +elfix configure 0.5.1
2399 generated by GNU Autoconf 2.68
2400
2401 Copyright (C) 2010 Free Software Foundation, Inc.
2402 @@ -1879,7 +1893,7 @@ cat >config.log <<_ACEOF
2403 This file contains any messages produced by compilers while
2404 running configure, to aid debugging if configure makes a mistake.
2405
2406 -It was created by elfix $as_me 0.5.0, which was
2407 +It was created by elfix $as_me 0.5.1, which was
2408 generated by GNU Autoconf 2.68. Invocation command line was
2409
2410 $ $0 $@
2411 @@ -2700,7 +2714,7 @@ fi
2412
2413 # Define the identity of the package.
2414 PACKAGE='elfix'
2415 - VERSION='0.5.0'
2416 + VERSION='0.5.1'
2417
2418
2419 cat >>confdefs.h <<_ACEOF
2420 @@ -2740,6 +2754,18 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
2421
2422
2423
2424 +# Check whether --enable-silent-rules was given.
2425 +if test "${enable_silent_rules+set}" = set; then :
2426 + enableval=$enable_silent_rules;
2427 +fi
2428 +
2429 +case $enable_silent_rules in
2430 +yes) AM_DEFAULT_VERBOSITY=0;;
2431 +no) AM_DEFAULT_VERBOSITY=1;;
2432 +*) AM_DEFAULT_VERBOSITY=0;;
2433 +esac
2434 +AM_BACKSLASH='\'
2435 +
2436
2437 # Check whether --enable-tests was given.
2438 if test "${enable_tests+set}" = set; then :
2439 @@ -4975,6 +5001,138 @@ else
2440 fi
2441
2442
2443 +# By default we simply use the C compiler to build assembly code.
2444 +
2445 +test "${CCAS+set}" = set || CCAS=$CC
2446 +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
2447 +
2448 +
2449 +
2450 +depcc="$CCAS" am_compiler_list=
2451 +
2452 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
2453 +$as_echo_n "checking dependency style of $depcc... " >&6; }
2454 +if ${am_cv_CCAS_dependencies_compiler_type+:} false; then :
2455 + $as_echo_n "(cached) " >&6
2456 +else
2457 + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
2458 + # We make a subdir and do the tests there. Otherwise we can end up
2459 + # making bogus files that we don't know about and never remove. For
2460 + # instance it was reported that on HP-UX the gcc test will end up
2461 + # making a dummy file named `D' -- because `-MD' means `put the output
2462 + # in D'.
2463 + mkdir conftest.dir
2464 + # Copy depcomp to subdir because otherwise we won't find it if we're
2465 + # using a relative directory.
2466 + cp "$am_depcomp" conftest.dir
2467 + cd conftest.dir
2468 + # We will build objects and dependencies in a subdirectory because
2469 + # it helps to detect inapplicable dependency modes. For instance
2470 + # both Tru64's cc and ICC support -MD to output dependencies as a
2471 + # side effect of compilation, but ICC will put the dependencies in
2472 + # the current directory while Tru64 will put them in the object
2473 + # directory.
2474 + mkdir sub
2475 +
2476 + am_cv_CCAS_dependencies_compiler_type=none
2477 + if test "$am_compiler_list" = ""; then
2478 + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
2479 + fi
2480 + am__universal=false
2481 +
2482 +
2483 + for depmode in $am_compiler_list; do
2484 + # Setup a source with many dependencies, because some compilers
2485 + # like to wrap large dependency lists on column 80 (with \), and
2486 + # we should not choose a depcomp mode which is confused by this.
2487 + #
2488 + # We need to recreate these files for each test, as the compiler may
2489 + # overwrite some of them when testing with obscure command lines.
2490 + # This happens at least with the AIX C compiler.
2491 + : > sub/conftest.c
2492 + for i in 1 2 3 4 5 6; do
2493 + echo '#include "conftst'$i'.h"' >> sub/conftest.c
2494 + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
2495 + # Solaris 8's {/usr,}/bin/sh.
2496 + touch sub/conftst$i.h
2497 + done
2498 + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
2499 +
2500 + # We check with `-c' and `-o' for the sake of the "dashmstdout"
2501 + # mode. It turns out that the SunPro C++ compiler does not properly
2502 + # handle `-M -o', and we need to detect this. Also, some Intel
2503 + # versions had trouble with output in subdirs
2504 + am__obj=sub/conftest.${OBJEXT-o}
2505 + am__minus_obj="-o $am__obj"
2506 + case $depmode in
2507 + gcc)
2508 + # This depmode causes a compiler race in universal mode.
2509 + test "$am__universal" = false || continue
2510 + ;;
2511 + nosideeffect)
2512 + # after this tag, mechanisms are not by side-effect, so they'll
2513 + # only be used when explicitly requested
2514 + if test "x$enable_dependency_tracking" = xyes; then
2515 + continue
2516 + else
2517 + break
2518 + fi
2519 + ;;
2520 + msvisualcpp | msvcmsys)
2521 + # This compiler won't grok `-c -o', but also, the minuso test has
2522 + # not run yet. These depmodes are late enough in the game, and
2523 + # so weak that their functioning should not be impacted.
2524 + am__obj=conftest.${OBJEXT-o}
2525 + am__minus_obj=
2526 + ;;
2527 + none) break ;;
2528 + esac
2529 + if depmode=$depmode \
2530 + source=sub/conftest.c object=$am__obj \
2531 + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
2532 + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
2533 + >/dev/null 2>conftest.err &&
2534 + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
2535 + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
2536 + grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
2537 + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
2538 + # icc doesn't choke on unknown options, it will just issue warnings
2539 + # or remarks (even with -Werror). So we grep stderr for any message
2540 + # that says an option was ignored or not supported.
2541 + # When given -MP, icc 7.0 and 7.1 complain thusly:
2542 + # icc: Command line warning: ignoring option '-M'; no argument required
2543 + # The diagnosis changed in icc 8.0:
2544 + # icc: Command line remark: option '-MP' not supported
2545 + if (grep 'ignoring option' conftest.err ||
2546 + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
2547 + am_cv_CCAS_dependencies_compiler_type=$depmode
2548 + break
2549 + fi
2550 + fi
2551 + done
2552 +
2553 + cd ..
2554 + rm -rf conftest.dir
2555 +else
2556 + am_cv_CCAS_dependencies_compiler_type=none
2557 +fi
2558 +
2559 +fi
2560 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&5
2561 +$as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; }
2562 +CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type
2563 +
2564 + if
2565 + test "x$enable_dependency_tracking" != xno \
2566 + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then
2567 + am__fastdepCCAS_TRUE=
2568 + am__fastdepCCAS_FALSE='#'
2569 +else
2570 + am__fastdepCCAS_TRUE='#'
2571 + am__fastdepCCAS_FALSE=
2572 +fi
2573 +
2574 +
2575
2576 # Checks for libraries.
2577 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5
2578 @@ -5694,6 +5852,10 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
2579 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
2580 Usually this means the macro was only invoked conditionally." "$LINENO" 5
2581 fi
2582 +if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then
2583 + as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined.
2584 +Usually this means the macro was only invoked conditionally." "$LINENO" 5
2585 +fi
2586
2587 : "${CONFIG_STATUS=./config.status}"
2588 ac_write_fail=0
2589 @@ -6103,7 +6265,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2590 # report actual input values of CONFIG_FILES etc. instead of their
2591 # values after options handling.
2592 ac_log="
2593 -This file was extended by elfix $as_me 0.5.0, which was
2594 +This file was extended by elfix $as_me 0.5.1, which was
2595 generated by GNU Autoconf 2.68. Invocation command line was
2596
2597 CONFIG_FILES = $CONFIG_FILES
2598 @@ -6169,7 +6331,7 @@ _ACEOF
2599 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2600 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2601 ac_cs_version="\\
2602 -elfix config.status 0.5.0
2603 +elfix config.status 0.5.1
2604 configured by $0, generated by GNU Autoconf 2.68,
2605 with options \\"\$ac_cs_config\\"
2606
2607
2608 diff --git a/configure.ac b/configure.ac
2609 index c817686..9f32eb3 100644
2610 --- a/configure.ac
2611 +++ b/configure.ac
2612 @@ -2,7 +2,7 @@
2613 # Process this file with autoconf to produce a configure script.
2614
2615 AC_PREREQ([2.65])
2616 -AC_INIT([elfix], [0.5.0], [http://bugs.gentoo.org/])
2617 +AC_INIT([elfix], [0.5.1], [http://bugs.gentoo.org/])
2618 AC_CONFIG_SRCDIR([src/fix-gnustack.c])
2619 AC_CONFIG_HEADERS([config.h])
2620 AM_INIT_AUTOMAKE([1.11 foreign])
2621
2622 diff --git a/doc/Makefile.in b/doc/Makefile.in
2623 index 9150213..d67aaf1 100644
2624 --- a/doc/Makefile.in
2625 +++ b/doc/Makefile.in
2626 @@ -42,6 +42,12 @@ mkinstalldirs = $(install_sh) -d
2627 CONFIG_HEADER = $(top_builddir)/config.h
2628 CONFIG_CLEAN_FILES =
2629 CONFIG_CLEAN_VPATH_FILES =
2630 +AM_V_GEN = $(am__v_GEN_$(V))
2631 +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
2632 +am__v_GEN_0 = @echo " GEN " $@;
2633 +AM_V_at = $(am__v_at_$(V))
2634 +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
2635 +am__v_at_0 = @
2636 SOURCES =
2637 DIST_SOURCES =
2638 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
2639 @@ -72,11 +78,15 @@ MANS = $(dist_man_MANS)
2640 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
2641 ACLOCAL = @ACLOCAL@
2642 AMTAR = @AMTAR@
2643 +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
2644 AUTOCONF = @AUTOCONF@
2645 AUTOHEADER = @AUTOHEADER@
2646 AUTOMAKE = @AUTOMAKE@
2647 AWK = @AWK@
2648 CC = @CC@
2649 +CCAS = @CCAS@
2650 +CCASDEPMODE = @CCASDEPMODE@
2651 +CCASFLAGS = @CCASFLAGS@
2652 CCDEPMODE = @CCDEPMODE@
2653 CFLAGS = @CFLAGS@
2654 CPP = @CPP@
2655
2656 diff --git a/scripts/Makefile.in b/scripts/Makefile.in
2657 index d0e6f75..344b78d 100644
2658 --- a/scripts/Makefile.in
2659 +++ b/scripts/Makefile.in
2660 @@ -66,16 +66,26 @@ am__base_list = \
2661 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
2662 am__installdirs = "$(DESTDIR)$(sbindir)"
2663 SCRIPTS = $(dist_sbin_SCRIPTS)
2664 +AM_V_GEN = $(am__v_GEN_$(V))
2665 +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
2666 +am__v_GEN_0 = @echo " GEN " $@;
2667 +AM_V_at = $(am__v_at_$(V))
2668 +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
2669 +am__v_at_0 = @
2670 SOURCES =
2671 DIST_SOURCES =
2672 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
2673 ACLOCAL = @ACLOCAL@
2674 AMTAR = @AMTAR@
2675 +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
2676 AUTOCONF = @AUTOCONF@
2677 AUTOHEADER = @AUTOHEADER@
2678 AUTOMAKE = @AUTOMAKE@
2679 AWK = @AWK@
2680 CC = @CC@
2681 +CCAS = @CCAS@
2682 +CCASDEPMODE = @CCASDEPMODE@
2683 +CCASFLAGS = @CCASFLAGS@
2684 CCDEPMODE = @CCDEPMODE@
2685 CFLAGS = @CFLAGS@
2686 CPP = @CPP@
2687
2688 diff --git a/src/Makefile.in b/src/Makefile.in
2689 index 7ff5546..cb6830d 100644
2690 --- a/src/Makefile.in
2691 +++ b/src/Makefile.in
2692 @@ -57,8 +57,20 @@ am__depfiles_maybe = depfiles
2693 am__mv = mv -f
2694 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
2695 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
2696 +AM_V_CC = $(am__v_CC_$(V))
2697 +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
2698 +am__v_CC_0 = @echo " CC " $@;
2699 +AM_V_at = $(am__v_at_$(V))
2700 +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
2701 +am__v_at_0 = @
2702 CCLD = $(CC)
2703 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
2704 +AM_V_CCLD = $(am__v_CCLD_$(V))
2705 +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
2706 +am__v_CCLD_0 = @echo " CCLD " $@;
2707 +AM_V_GEN = $(am__v_GEN_$(V))
2708 +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
2709 +am__v_GEN_0 = @echo " GEN " $@;
2710 SOURCES = $(fix_gnustack_SOURCES) $(paxctl_ng_SOURCES)
2711 DIST_SOURCES = $(fix_gnustack_SOURCES) $(paxctl_ng_SOURCES)
2712 ETAGS = etags
2713 @@ -66,11 +78,15 @@ CTAGS = ctags
2714 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
2715 ACLOCAL = @ACLOCAL@
2716 AMTAR = @AMTAR@
2717 +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
2718 AUTOCONF = @AUTOCONF@
2719 AUTOHEADER = @AUTOHEADER@
2720 AUTOMAKE = @AUTOMAKE@
2721 AWK = @AWK@
2722 CC = @CC@
2723 +CCAS = @CCAS@
2724 +CCASDEPMODE = @CCASDEPMODE@
2725 +CCASFLAGS = @CCASFLAGS@
2726 CCDEPMODE = @CCDEPMODE@
2727 CFLAGS = @CFLAGS@
2728 CPP = @CPP@
2729 @@ -226,10 +242,10 @@ clean-sbinPROGRAMS:
2730 -test -z "$(sbin_PROGRAMS)" || rm -f $(sbin_PROGRAMS)
2731 fix-gnustack$(EXEEXT): $(fix_gnustack_OBJECTS) $(fix_gnustack_DEPENDENCIES)
2732 @rm -f fix-gnustack$(EXEEXT)
2733 - $(LINK) $(fix_gnustack_OBJECTS) $(fix_gnustack_LDADD) $(LIBS)
2734 + $(AM_V_CCLD)$(LINK) $(fix_gnustack_OBJECTS) $(fix_gnustack_LDADD) $(LIBS)
2735 paxctl-ng$(EXEEXT): $(paxctl_ng_OBJECTS) $(paxctl_ng_DEPENDENCIES)
2736 @rm -f paxctl-ng$(EXEEXT)
2737 - $(LINK) $(paxctl_ng_OBJECTS) $(paxctl_ng_LDADD) $(LIBS)
2738 + $(AM_V_CCLD)$(LINK) $(paxctl_ng_OBJECTS) $(paxctl_ng_LDADD) $(LIBS)
2739
2740 mostlyclean-compile:
2741 -rm -f *.$(OBJEXT)
2742 @@ -241,15 +257,17 @@ distclean-compile:
2743 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/paxctl-ng.Po@am__quote@
2744
2745 .c.o:
2746 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
2747 -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2748 +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
2749 +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2750 +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2751 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2752 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2753 @am__fastdepCC_FALSE@ $(COMPILE) -c $<
2754
2755 .c.obj:
2756 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
2757 -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2758 +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
2759 +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2760 +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
2761 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2762 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2763 @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
2764
2765 diff --git a/tests/Makefile.in b/tests/Makefile.in
2766 index 00fb601..6541640 100644
2767 --- a/tests/Makefile.in
2768 +++ b/tests/Makefile.in
2769 @@ -41,6 +41,12 @@ mkinstalldirs = $(install_sh) -d
2770 CONFIG_HEADER = $(top_builddir)/config.h
2771 CONFIG_CLEAN_FILES =
2772 CONFIG_CLEAN_VPATH_FILES =
2773 +AM_V_GEN = $(am__v_GEN_$(V))
2774 +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
2775 +am__v_GEN_0 = @echo " GEN " $@;
2776 +AM_V_at = $(am__v_at_$(V))
2777 +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
2778 +am__v_at_0 = @
2779 SOURCES =
2780 DIST_SOURCES =
2781 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
2782 @@ -86,11 +92,15 @@ am__relativize = \
2783 reldir="$$dir2"
2784 ACLOCAL = @ACLOCAL@
2785 AMTAR = @AMTAR@
2786 +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
2787 AUTOCONF = @AUTOCONF@
2788 AUTOHEADER = @AUTOHEADER@
2789 AUTOMAKE = @AUTOMAKE@
2790 AWK = @AWK@
2791 CC = @CC@
2792 +CCAS = @CCAS@
2793 +CCASDEPMODE = @CCASDEPMODE@
2794 +CCASFLAGS = @CCASFLAGS@
2795 CCDEPMODE = @CCDEPMODE@
2796 CFLAGS = @CFLAGS@
2797 CPP = @CPP@
2798
2799 diff --git a/tests/gnustack/Makefile.in b/tests/gnustack/Makefile.in
2800 index 954ccb1..566e3ad 100644
2801 --- a/tests/gnustack/Makefile.in
2802 +++ b/tests/gnustack/Makefile.in
2803 @@ -44,16 +44,30 @@ CONFIG_HEADER = $(top_builddir)/config.h
2804 CONFIG_CLEAN_FILES =
2805 CONFIG_CLEAN_VPATH_FILES =
2806 PROGRAMS = $(noinst_PROGRAMS)
2807 -am_bad_gnustack_OBJECTS = bad-gnustack.$(OBJEXT)
2808 +am_bad_gnustack_OBJECTS = bad64.$(OBJEXT) bad32.$(OBJEXT)
2809 bad_gnustack_OBJECTS = $(am_bad_gnustack_OBJECTS)
2810 +bad_gnustack_LDADD = $(LDADD)
2811 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
2812 -depcomp = $(SHELL) $(top_srcdir)/depcomp
2813 -am__depfiles_maybe = depfiles
2814 -am__mv = mv -f
2815 +CCASCOMPILE = $(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS)
2816 +AM_V_CCAS = $(am__v_CCAS_$(V))
2817 +am__v_CCAS_ = $(am__v_CCAS_$(AM_DEFAULT_VERBOSITY))
2818 +am__v_CCAS_0 = @echo " CCAS " $@;
2819 +AM_V_at = $(am__v_at_$(V))
2820 +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
2821 +am__v_at_0 = @
2822 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
2823 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
2824 +AM_V_CC = $(am__v_CC_$(V))
2825 +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
2826 +am__v_CC_0 = @echo " CC " $@;
2827 CCLD = $(CC)
2828 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
2829 +AM_V_CCLD = $(am__v_CCLD_$(V))
2830 +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
2831 +am__v_CCLD_0 = @echo " CCLD " $@;
2832 +AM_V_GEN = $(am__v_GEN_$(V))
2833 +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
2834 +am__v_GEN_0 = @echo " GEN " $@;
2835 SOURCES = $(bad_gnustack_SOURCES)
2836 DIST_SOURCES = $(bad_gnustack_SOURCES)
2837 ETAGS = etags
2838 @@ -61,11 +75,15 @@ CTAGS = ctags
2839 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
2840 ACLOCAL = @ACLOCAL@
2841 AMTAR = @AMTAR@
2842 +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
2843 AUTOCONF = @AUTOCONF@
2844 AUTOHEADER = @AUTOHEADER@
2845 AUTOMAKE = @AUTOMAKE@
2846 AWK = @AWK@
2847 CC = @CC@
2848 +CCAS = @CCAS@
2849 +CCASDEPMODE = @CCASDEPMODE@
2850 +CCASFLAGS = @CCASFLAGS@
2851 CCDEPMODE = @CCDEPMODE@
2852 CFLAGS = @CFLAGS@
2853 CPP = @CPP@
2854 @@ -146,18 +164,15 @@ target_alias = @target_alias@
2855 top_build_prefix = @top_build_prefix@
2856 top_builddir = @top_builddir@
2857 top_srcdir = @top_srcdir@
2858 -bad_gnustack_SOURCES = bad-gnustack.c
2859 -bad_gnustack_DEPENDENCIES = bad-asm.o
2860 -bad_gnustack_LDADD = bad-asm.o
2861 -EXTRA_DIST = bad64.asm bad32.asm
2862 +bad_gnustack_SOURCES = bad64.s bad32.s
2863 ARCH = $(shell uname -m | sed -e 's/i./x/')
2864 check_SCRIPTS = test.sh
2865 TEST = $(check_SCRIPTS)
2866 -CLEANFILES = bad-asm.o test.sh
2867 +CLEANFILES = *.o test.sh
2868 all: all-am
2869
2870 .SUFFIXES:
2871 -.SUFFIXES: .c .o .obj
2872 +.SUFFIXES: .o .obj .s
2873 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
2874 @for dep in $?; do \
2875 case '$(am__configure_deps)' in \
2876 @@ -191,9 +206,6 @@ $(am__aclocal_m4_deps):
2877
2878 clean-noinstPROGRAMS:
2879 -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
2880 -bad-gnustack$(EXEEXT): $(bad_gnustack_OBJECTS) $(bad_gnustack_DEPENDENCIES)
2881 - @rm -f bad-gnustack$(EXEEXT)
2882 - $(LINK) $(bad_gnustack_OBJECTS) $(bad_gnustack_LDADD) $(LIBS)
2883
2884 mostlyclean-compile:
2885 -rm -f *.$(OBJEXT)
2886 @@ -201,21 +213,13 @@ mostlyclean-compile:
2887 distclean-compile:
2888 -rm -f *.tab.c
2889
2890 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bad-gnustack.Po@am__quote@
2891 +.s.o:
2892 + $(AM_V_CCAS) @AM_BACKSLASH@
2893 + $(CCASCOMPILE) -c -o $@ $<
2894
2895 -.c.o:
2896 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
2897 -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2898 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2899 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2900 -@am__fastdepCC_FALSE@ $(COMPILE) -c $<
2901 -
2902 -.c.obj:
2903 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
2904 -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
2905 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
2906 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2907 -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
2908 +.s.obj:
2909 + $(AM_V_CCAS) @AM_BACKSLASH@
2910 + $(CCASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
2911
2912 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
2913 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
2914 @@ -335,7 +339,6 @@ clean: clean-am
2915 clean-am: clean-generic clean-noinstPROGRAMS mostlyclean-am
2916
2917 distclean: distclean-am
2918 - -rm -rf ./$(DEPDIR)
2919 -rm -f Makefile
2920 distclean-am: clean-am distclean-compile distclean-generic \
2921 distclean-tags
2922 @@ -381,7 +384,6 @@ install-ps-am:
2923 installcheck-am:
2924
2925 maintainer-clean: maintainer-clean-am
2926 - -rm -rf ./$(DEPDIR)
2927 -rm -f Makefile
2928 maintainer-clean-am: distclean-am maintainer-clean-generic
2929
2930 @@ -415,17 +417,17 @@ uninstall-am:
2931 uninstall-am
2932
2933
2934 -bad-asm.o: bad64.asm bad32.asm
2935 - [[ "$(ARCH)" == "x86" ]] && yasm -f elf -m x86 bad32.asm && mv bad32.o bad-asm.o || true
2936 - [[ "$(ARCH)" == "x86_64" ]] && yasm -f elf -m amd64 bad64.asm && mv bad64.o bad-asm.o || true
2937 +bad-gnustack: bad64.s bad32.s
2938 + [[ "$(ARCH)" == "x86" ]] && $(CCAS) -m32 -o bad-gnustack bad32.s || true
2939 + [[ "$(ARCH)" == "x86_64" ]] && $(CCAS) -m64 -o bad-gnustack bad64.s || true
2940
2941 test.sh:
2942 @echo "================================================================================"
2943 @echo
2944 - @echo "Fixing Bad GNU_STACK Elf"
2945 + @echo "Before GNU_STACK Elf: "
2946 @../../src/fix-gnustack -f bad-gnustack
2947 @echo
2948 - @echo "Fixed Bad GNU_STACK Elf"
2949 + @echo "After GNU_STACK Elf: "
2950 @../../src/fix-gnustack bad-gnustack
2951 @echo
2952 @echo "================================================================================"
2953
2954 diff --git a/tests/pxtpax/Makefile.in b/tests/pxtpax/Makefile.in
2955 index 0b0d61e..5118421 100644
2956 --- a/tests/pxtpax/Makefile.in
2957 +++ b/tests/pxtpax/Makefile.in
2958 @@ -53,8 +53,20 @@ am__depfiles_maybe = depfiles
2959 am__mv = mv -f
2960 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
2961 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
2962 +AM_V_CC = $(am__v_CC_$(V))
2963 +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
2964 +am__v_CC_0 = @echo " CC " $@;
2965 +AM_V_at = $(am__v_at_$(V))
2966 +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
2967 +am__v_at_0 = @
2968 CCLD = $(CC)
2969 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
2970 +AM_V_CCLD = $(am__v_CCLD_$(V))
2971 +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
2972 +am__v_CCLD_0 = @echo " CCLD " $@;
2973 +AM_V_GEN = $(am__v_GEN_$(V))
2974 +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
2975 +am__v_GEN_0 = @echo " GEN " $@;
2976 SOURCES = $(daemon_SOURCES)
2977 DIST_SOURCES = $(daemon_SOURCES)
2978 ETAGS = etags
2979 @@ -62,11 +74,15 @@ CTAGS = ctags
2980 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
2981 ACLOCAL = @ACLOCAL@
2982 AMTAR = @AMTAR@
2983 +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
2984 AUTOCONF = @AUTOCONF@
2985 AUTOHEADER = @AUTOHEADER@
2986 AUTOMAKE = @AUTOMAKE@
2987 AWK = @AWK@
2988 CC = @CC@
2989 +CCAS = @CCAS@
2990 +CCASDEPMODE = @CCASDEPMODE@
2991 +CCASFLAGS = @CCASFLAGS@
2992 CCDEPMODE = @CCDEPMODE@
2993 CFLAGS = @CFLAGS@
2994 CPP = @CPP@
2995 @@ -191,7 +207,7 @@ clean-noinstPROGRAMS:
2996 -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
2997 daemon$(EXEEXT): $(daemon_OBJECTS) $(daemon_DEPENDENCIES)
2998 @rm -f daemon$(EXEEXT)
2999 - $(LINK) $(daemon_OBJECTS) $(daemon_LDADD) $(LIBS)
3000 + $(AM_V_CCLD)$(LINK) $(daemon_OBJECTS) $(daemon_LDADD) $(LIBS)
3001
3002 mostlyclean-compile:
3003 -rm -f *.$(OBJEXT)
3004 @@ -202,15 +218,17 @@ distclean-compile:
3005 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/daemon.Po@am__quote@
3006
3007 .c.o:
3008 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
3009 -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
3010 +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
3011 +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
3012 +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3013 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
3014 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3015 @am__fastdepCC_FALSE@ $(COMPILE) -c $<
3016
3017 .c.obj:
3018 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
3019 -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
3020 +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
3021 +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
3022 +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
3023 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
3024 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3025 @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`