From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 612A313800E for ; Fri, 27 Jul 2012 22:40:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A89B2E0771; Fri, 27 Jul 2012 22:40:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2D0E8E0771 for ; Fri, 27 Jul 2012 22:40:08 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 652D11B4091 for ; Fri, 27 Jul 2012 22:40:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 58CE1E5436 for ; Fri, 27 Jul 2012 22:40:04 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1343428794.e1b57ee677ddccc2af47a5a05f5eb4d6bea77d4c.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:elfix-0.5.x commit in: src/, scripts/, /, tests/gnustack/, doc/, autom4te.cache/, tests/, tests/pxtpax/ X-VCS-Repository: proj/elfix X-VCS-Files: ChangeLog Makefile.in aclocal.m4 autom4te.cache/output.1 autom4te.cache/output.2 autom4te.cache/requests autom4te.cache/traces.1 autom4te.cache/traces.2 configure configure.ac doc/Makefile.in scripts/Makefile.in src/Makefile.in tests/Makefile.in tests/gnustack/Makefile.in tests/pxtpax/Makefile.in X-VCS-Directories: src/ scripts/ / tests/gnustack/ doc/ autom4te.cache/ tests/ tests/pxtpax/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: e1b57ee677ddccc2af47a5a05f5eb4d6bea77d4c X-VCS-Branch: elfix-0.5.x Date: Fri, 27 Jul 2012 22:40:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 24fae235-9e7a-4e1a-9ad7-05893d2406a5 X-Archives-Hash: 38876b03ced82f3fa31a49ce59a27c86 commit: e1b57ee677ddccc2af47a5a05f5eb4d6bea77d4c Author: Anthony G. Basile gentoo org> AuthorDate: Fri Jul 27 22:39:54 2012 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Fri Jul 27 22:39:54 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=e1b57ee6 Prepare release 0.5.1 --- ChangeLog | 1 + Makefile.in | 10 + aclocal.m4 | 49 +++ autom4te.cache/output.1 | 184 ++++++++- autom4te.cache/{output.1 => output.2} | 184 ++++++++- autom4te.cache/requests | 70 ++++ autom4te.cache/traces.1 | 526 +++++++++++++------------ aclocal.m4 => autom4te.cache/traces.2 | 715 ++++++++++++++------------------- configure | 184 ++++++++- configure.ac | 2 +- doc/Makefile.in | 10 + scripts/Makefile.in | 10 + src/Makefile.in | 30 ++- tests/Makefile.in | 10 + tests/gnustack/Makefile.in | 70 ++-- tests/pxtpax/Makefile.in | 28 +- 16 files changed, 1334 insertions(+), 749 deletions(-) diff --git a/ChangeLog b/ChangeLog index a1f6659..1ec9b6d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ 2012-07-27 + * Release 0.5.1 * switch from yasm to gcc for assembler for arches other than x86 and amd64 * opening an ELF_C_RDWR does not work for either libelf or diff --git a/Makefile.in b/Makefile.in index 6f5493f..82dfda6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,6 +46,12 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ @@ -101,11 +107,15 @@ distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ diff --git a/aclocal.m4 b/aclocal.m4 index 1bc55f4..8d33c23 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -55,6 +55,28 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) +# Figure out how to run the assembler. -*- Autoconf -*- + +# Copyright (C) 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# AM_PROG_AS +# ---------- +AC_DEFUN([AM_PROG_AS], +[# By default we simply use the C compiler to build assembly code. +AC_REQUIRE([AC_PROG_CC]) +test "${CCAS+set}" = set || CCAS=$CC +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS +AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)]) +AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)]) +_AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl +]) + # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. @@ -806,6 +828,33 @@ Check your system clock]) fi AC_MSG_RESULT(yes)]) +# Copyright (C) 2009 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_SILENT_RULES([DEFAULT]) +# -------------------------- +# Enable less verbose build rules; with the default set to DEFAULT +# (`yes' being less verbose, `no' or empty being verbose). +AC_DEFUN([AM_SILENT_RULES], +[AC_ARG_ENABLE([silent-rules], +[ --enable-silent-rules less verbose build output (undo: `make V=1') + --disable-silent-rules verbose build output (undo: `make V=0')]) +case $enable_silent_rules in +yes) AM_DEFAULT_VERBOSITY=0;; +no) AM_DEFAULT_VERBOSITY=1;; +*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) + # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation diff --git a/autom4te.cache/output.1 b/autom4te.cache/output.1 index c8b2546..f95d883 100644 --- a/autom4te.cache/output.1 +++ b/autom4te.cache/output.1 @@ -1,6 +1,6 @@ @%:@! /bin/sh @%:@ Guess values for system-dependent variables and create Makefiles. -@%:@ Generated by GNU Autoconf 2.68 for elfix 0.5.0. +@%:@ Generated by GNU Autoconf 2.68 for elfix 0.5.1. @%:@ @%:@ Report bugs to . @%:@ @@ -560,8 +560,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='elfix' PACKAGE_TARNAME='elfix' -PACKAGE_VERSION='0.5.0' -PACKAGE_STRING='elfix 0.5.0' +PACKAGE_VERSION='0.5.1' +PACKAGE_STRING='elfix 0.5.1' PACKAGE_BUGREPORT='http://bugs.gentoo.org/' PACKAGE_URL='' @@ -607,6 +607,11 @@ ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIB@&t@OBJS +am__fastdepCCAS_FALSE +am__fastdepCCAS_TRUE +CCASDEPMODE +CCASFLAGS +CCAS EGREP GREP CPP @@ -629,6 +634,8 @@ CC TEST_FALSE TEST_TRUE has_yasm +AM_BACKSLASH +AM_DEFAULT_VERBOSITY am__untar am__tar AMTAR @@ -693,6 +700,7 @@ SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking +enable_silent_rules enable_tests enable_xattr enable_dependency_tracking @@ -705,7 +713,9 @@ CFLAGS LDFLAGS LIBS CPPFLAGS -CPP' +CPP +CCAS +CCASFLAGS' # Initialize some variables set by options. @@ -1248,7 +1258,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures elfix 0.5.0 to adapt to many kinds of systems. +\`configure' configures elfix 0.5.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1314,7 +1324,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of elfix 0.5.0:";; + short | recursive ) echo "Configuration of elfix 0.5.1:";; esac cat <<\_ACEOF @@ -1322,6 +1332,8 @@ Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-silent-rules less verbose build output (undo: `make V=1') + --disable-silent-rules verbose build output (undo: `make V=0') --enable-tests perform tests --enable-xattr enable support for pax markings in xattrs --disable-dependency-tracking speeds up one-time build @@ -1336,6 +1348,8 @@ Some influential environment variables: CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor + CCAS assembler compiler command (defaults to CC) + CCASFLAGS assembler compiler flags (defaults to CFLAGS) Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. @@ -1403,7 +1417,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -elfix configure 0.5.0 +elfix configure 0.5.1 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1879,7 +1893,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by elfix $as_me 0.5.0, which was +It was created by elfix $as_me 0.5.1, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2700,7 +2714,7 @@ fi # Define the identity of the package. PACKAGE='elfix' - VERSION='0.5.0' + VERSION='0.5.1' cat >>confdefs.h <<_ACEOF @@ -2740,6 +2754,18 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' +@%:@ Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in +yes) AM_DEFAULT_VERBOSITY=0;; +no) AM_DEFAULT_VERBOSITY=1;; +*) AM_DEFAULT_VERBOSITY=0;; +esac +AM_BACKSLASH='\' + @%:@ Check whether --enable-tests was given. if test "${enable_tests+set}" = set; then : @@ -4975,6 +5001,138 @@ else fi +# By default we simply use the C compiler to build assembly code. + +test "${CCAS+set}" = set || CCAS=$CC +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS + + + +depcc="$CCAS" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CCAS_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CCAS_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CCAS_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CCAS_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; } +CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then + am__fastdepCCAS_TRUE= + am__fastdepCCAS_FALSE='#' +else + am__fastdepCCAS_TRUE='#' + am__fastdepCCAS_FALSE= +fi + + # Checks for libraries. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5 @@ -5694,6 +5852,10 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 @@ -6103,7 +6265,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by elfix $as_me 0.5.0, which was +This file was extended by elfix $as_me 0.5.1, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6169,7 +6331,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -elfix config.status 0.5.0 +elfix config.status 0.5.1 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff --git a/autom4te.cache/output.1 b/autom4te.cache/output.2 similarity index 97% copy from autom4te.cache/output.1 copy to autom4te.cache/output.2 index c8b2546..f95d883 100644 --- a/autom4te.cache/output.1 +++ b/autom4te.cache/output.2 @@ -1,6 +1,6 @@ @%:@! /bin/sh @%:@ Guess values for system-dependent variables and create Makefiles. -@%:@ Generated by GNU Autoconf 2.68 for elfix 0.5.0. +@%:@ Generated by GNU Autoconf 2.68 for elfix 0.5.1. @%:@ @%:@ Report bugs to . @%:@ @@ -560,8 +560,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='elfix' PACKAGE_TARNAME='elfix' -PACKAGE_VERSION='0.5.0' -PACKAGE_STRING='elfix 0.5.0' +PACKAGE_VERSION='0.5.1' +PACKAGE_STRING='elfix 0.5.1' PACKAGE_BUGREPORT='http://bugs.gentoo.org/' PACKAGE_URL='' @@ -607,6 +607,11 @@ ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIB@&t@OBJS +am__fastdepCCAS_FALSE +am__fastdepCCAS_TRUE +CCASDEPMODE +CCASFLAGS +CCAS EGREP GREP CPP @@ -629,6 +634,8 @@ CC TEST_FALSE TEST_TRUE has_yasm +AM_BACKSLASH +AM_DEFAULT_VERBOSITY am__untar am__tar AMTAR @@ -693,6 +700,7 @@ SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking +enable_silent_rules enable_tests enable_xattr enable_dependency_tracking @@ -705,7 +713,9 @@ CFLAGS LDFLAGS LIBS CPPFLAGS -CPP' +CPP +CCAS +CCASFLAGS' # Initialize some variables set by options. @@ -1248,7 +1258,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures elfix 0.5.0 to adapt to many kinds of systems. +\`configure' configures elfix 0.5.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1314,7 +1324,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of elfix 0.5.0:";; + short | recursive ) echo "Configuration of elfix 0.5.1:";; esac cat <<\_ACEOF @@ -1322,6 +1332,8 @@ Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-silent-rules less verbose build output (undo: `make V=1') + --disable-silent-rules verbose build output (undo: `make V=0') --enable-tests perform tests --enable-xattr enable support for pax markings in xattrs --disable-dependency-tracking speeds up one-time build @@ -1336,6 +1348,8 @@ Some influential environment variables: CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor + CCAS assembler compiler command (defaults to CC) + CCASFLAGS assembler compiler flags (defaults to CFLAGS) Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. @@ -1403,7 +1417,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -elfix configure 0.5.0 +elfix configure 0.5.1 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1879,7 +1893,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by elfix $as_me 0.5.0, which was +It was created by elfix $as_me 0.5.1, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2700,7 +2714,7 @@ fi # Define the identity of the package. PACKAGE='elfix' - VERSION='0.5.0' + VERSION='0.5.1' cat >>confdefs.h <<_ACEOF @@ -2740,6 +2754,18 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' +@%:@ Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in +yes) AM_DEFAULT_VERBOSITY=0;; +no) AM_DEFAULT_VERBOSITY=1;; +*) AM_DEFAULT_VERBOSITY=0;; +esac +AM_BACKSLASH='\' + @%:@ Check whether --enable-tests was given. if test "${enable_tests+set}" = set; then : @@ -4975,6 +5001,138 @@ else fi +# By default we simply use the C compiler to build assembly code. + +test "${CCAS+set}" = set || CCAS=$CC +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS + + + +depcc="$CCAS" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CCAS_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CCAS_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CCAS_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CCAS_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; } +CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then + am__fastdepCCAS_TRUE= + am__fastdepCCAS_FALSE='#' +else + am__fastdepCCAS_TRUE='#' + am__fastdepCCAS_FALSE= +fi + + # Checks for libraries. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5 @@ -5694,6 +5852,10 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 @@ -6103,7 +6265,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by elfix $as_me 0.5.0, which was +This file was extended by elfix $as_me 0.5.1, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6169,7 +6331,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -elfix config.status 0.5.0 +elfix config.status 0.5.1 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff --git a/autom4te.cache/requests b/autom4te.cache/requests index 9162197..861aa79 100644 --- a/autom4te.cache/requests +++ b/autom4te.cache/requests @@ -139,6 +139,76 @@ '_AM_COND_ELSE' => 1, 'AC_SUBST_TRACE' => 1 } + ], 'Autom4te::Request' ), + bless( [ + '2', + 1, + [ + '/usr/share/autoconf' + ], + [ + '/usr/share/autoconf/autoconf/autoconf.m4f', + '/usr/share/aclocal-1.11/amversion.m4', + '/usr/share/aclocal-1.11/as.m4', + '/usr/share/aclocal-1.11/auxdir.m4', + '/usr/share/aclocal-1.11/cond.m4', + '/usr/share/aclocal-1.11/depend.m4', + '/usr/share/aclocal-1.11/depout.m4', + '/usr/share/aclocal-1.11/init.m4', + '/usr/share/aclocal-1.11/install-sh.m4', + '/usr/share/aclocal-1.11/lead-dot.m4', + '/usr/share/aclocal-1.11/make.m4', + '/usr/share/aclocal-1.11/missing.m4', + '/usr/share/aclocal-1.11/mkdirp.m4', + '/usr/share/aclocal-1.11/options.m4', + '/usr/share/aclocal-1.11/runlog.m4', + '/usr/share/aclocal-1.11/sanity.m4', + '/usr/share/aclocal-1.11/silent.m4', + '/usr/share/aclocal-1.11/strip.m4', + '/usr/share/aclocal-1.11/substnot.m4', + '/usr/share/aclocal-1.11/tar.m4', + 'configure.ac' + ], + { + 'm4_pattern_forbid' => 1, + 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1, + '_AM_SET_OPTION' => 1, + 'AC_DEFUN' => 1, + 'AM_PROG_MKDIR_P' => 1, + 'AM_INIT_AUTOMAKE' => 1, + 'AM_AUTOMAKE_VERSION' => 1, + 'AM_MISSING_HAS_RUN' => 1, + 'AM_SUBST_NOTMAKE' => 1, + 'AM_MISSING_PROG' => 1, + 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, + 'AC_DEFUN_ONCE' => 1, + 'AM_PROG_INSTALL_STRIP' => 1, + '_m4_warn' => 1, + 'AM_SANITY_CHECK' => 1, + 'AM_SILENT_RULES' => 1, + 'include' => 1, + '_AM_PROG_TAR' => 1, + 'AM_PROG_AS' => 1, + 'AM_AUX_DIR_EXPAND' => 1, + 'AM_DEP_TRACK' => 1, + '_AM_SET_OPTIONS' => 1, + '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, + 'AM_RUN_LOG' => 1, + '_AM_IF_OPTION' => 1, + '_AM_SUBST_NOTMAKE' => 1, + 'm4_pattern_allow' => 1, + '_AM_AUTOCONF_VERSION' => 1, + '_AM_MANGLE_OPTION' => 1, + 'AM_CONDITIONAL' => 1, + 'AM_SET_LEADING_DOT' => 1, + 'AM_SET_DEPDIR' => 1, + '_AM_DEPENDENCIES' => 1, + 'AM_PROG_INSTALL_SH' => 1, + 'm4_include' => 1, + '_AC_AM_CONFIG_HEADER_HOOK' => 1, + 'AU_DEFUN' => 1, + 'AM_MAKE_INCLUDE' => 1 + } ], 'Autom4te::Request' ) ); diff --git a/autom4te.cache/traces.1 b/autom4te.cache/traces.1 index 75effaf..7335824 100644 --- a/autom4te.cache/traces.1 +++ b/autom4te.cache/traces.1 @@ -1,4 +1,4 @@ -m4trace:configure.ac:5: -1- AC_INIT([elfix], [0.5.0], [http://bugs.gentoo.org/]) +m4trace:configure.ac:5: -1- AC_INIT([elfix], [0.5.1], [http://bugs.gentoo.org/]) m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?A[CHUM]_]) m4trace:configure.ac:5: -1- m4_pattern_forbid([_AC_]) m4trace:configure.ac:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) @@ -231,279 +231,307 @@ m4trace:configure.ac:8: -1- m4_pattern_allow([^am__tar$]) m4trace:configure.ac:8: -1- AC_SUBST([am__untar]) m4trace:configure.ac:8: -1- AC_SUBST_TRACE([am__untar]) m4trace:configure.ac:8: -1- m4_pattern_allow([^am__untar$]) -m4trace:configure.ac:10: -1- AC_SUBST([has_yasm]) -m4trace:configure.ac:10: -1- AC_SUBST_TRACE([has_yasm]) -m4trace:configure.ac:10: -1- m4_pattern_allow([^has_yasm$]) -m4trace:configure.ac:26: -1- AM_CONDITIONAL([TEST], [test "x$has_yasm" = "xyes"]) -m4trace:configure.ac:26: -1- AC_SUBST([TEST_TRUE]) -m4trace:configure.ac:26: -1- AC_SUBST_TRACE([TEST_TRUE]) -m4trace:configure.ac:26: -1- m4_pattern_allow([^TEST_TRUE$]) -m4trace:configure.ac:26: -1- AC_SUBST([TEST_FALSE]) -m4trace:configure.ac:26: -1- AC_SUBST_TRACE([TEST_FALSE]) -m4trace:configure.ac:26: -1- m4_pattern_allow([^TEST_FALSE$]) -m4trace:configure.ac:26: -1- _AM_SUBST_NOTMAKE([TEST_TRUE]) -m4trace:configure.ac:26: -1- _AM_SUBST_NOTMAKE([TEST_FALSE]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_ATTR_XATTR_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:9: -1- AM_SILENT_RULES([yes]) +m4trace:configure.ac:9: -1- AC_SUBST([AM_DEFAULT_VERBOSITY]) +m4trace:configure.ac:9: -1- AC_SUBST_TRACE([AM_DEFAULT_VERBOSITY]) +m4trace:configure.ac:9: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) +m4trace:configure.ac:9: -1- AC_SUBST([AM_BACKSLASH]) +m4trace:configure.ac:9: -1- AC_SUBST_TRACE([AM_BACKSLASH]) +m4trace:configure.ac:9: -1- m4_pattern_allow([^AM_BACKSLASH$]) +m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) +m4trace:configure.ac:11: -1- AC_SUBST([has_yasm]) +m4trace:configure.ac:11: -1- AC_SUBST_TRACE([has_yasm]) +m4trace:configure.ac:11: -1- m4_pattern_allow([^has_yasm$]) +m4trace:configure.ac:27: -1- AM_CONDITIONAL([TEST], [test "x$has_yasm" = "xyes"]) +m4trace:configure.ac:27: -1- AC_SUBST([TEST_TRUE]) +m4trace:configure.ac:27: -1- AC_SUBST_TRACE([TEST_TRUE]) +m4trace:configure.ac:27: -1- m4_pattern_allow([^TEST_TRUE$]) +m4trace:configure.ac:27: -1- AC_SUBST([TEST_FALSE]) +m4trace:configure.ac:27: -1- AC_SUBST_TRACE([TEST_FALSE]) +m4trace:configure.ac:27: -1- m4_pattern_allow([^TEST_FALSE$]) +m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([TEST_TRUE]) +m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([TEST_FALSE]) +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_ATTR_XATTR_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_ATTR_XATTR_H]) -m4trace:configure.ac:28: -1- AC_SUBST([CC]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:28: -1- AC_SUBST([CFLAGS]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CFLAGS]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CFLAGS$]) -m4trace:configure.ac:28: -1- AC_SUBST([LDFLAGS]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([LDFLAGS]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:28: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:28: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:28: -1- AC_SUBST([CC]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:28: -1- AC_SUBST([CC]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:28: -1- AC_SUBST([CC]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:28: -1- AC_SUBST([CC]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:28: -1- AC_SUBST([ac_ct_CC]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([ac_ct_CC]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^ac_ct_CC$]) -m4trace:configure.ac:28: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([EXEEXT]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^EXEEXT$]) -m4trace:configure.ac:28: -1- AC_SUBST([OBJEXT], [$ac_cv_objext]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([OBJEXT]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^OBJEXT$]) -m4trace:configure.ac:28: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([DEPDIR]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^DEPDIR$]) -m4trace:configure.ac:28: -1- AC_SUBST([am__include]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([am__include]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^am__include$]) -m4trace:configure.ac:28: -1- AC_SUBST([am__quote]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([am__quote]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^am__quote$]) -m4trace:configure.ac:28: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -m4trace:configure.ac:28: -1- AC_SUBST([AMDEP_TRUE]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AMDEP_TRUE]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^AMDEP_TRUE$]) -m4trace:configure.ac:28: -1- AC_SUBST([AMDEP_FALSE]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AMDEP_FALSE]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^AMDEP_FALSE$]) -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) -m4trace:configure.ac:28: -1- AC_SUBST([AMDEPBACKSLASH]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AMDEPBACKSLASH]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) -m4trace:configure.ac:28: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CCDEPMODE]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CCDEPMODE$]) -m4trace:configure.ac:28: -1- AM_CONDITIONAL([am__fastdepCC], [ +m4trace:configure.ac:29: -1- AC_SUBST([CC]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- AC_SUBST([CFLAGS]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CFLAGS]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CFLAGS$]) +m4trace:configure.ac:29: -1- AC_SUBST([LDFLAGS]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([LDFLAGS]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^LDFLAGS$]) +m4trace:configure.ac:29: -1- AC_SUBST([LIBS]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([LIBS]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.ac:29: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CPPFLAGS]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.ac:29: -1- AC_SUBST([CC]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- AC_SUBST([CC]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- AC_SUBST([CC]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- AC_SUBST([CC]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([ac_ct_CC]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^ac_ct_CC$]) +m4trace:configure.ac:29: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([EXEEXT]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^EXEEXT$]) +m4trace:configure.ac:29: -1- AC_SUBST([OBJEXT], [$ac_cv_objext]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([OBJEXT]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^OBJEXT$]) +m4trace:configure.ac:29: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([DEPDIR]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^DEPDIR$]) +m4trace:configure.ac:29: -1- AC_SUBST([am__include]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([am__include]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__include$]) +m4trace:configure.ac:29: -1- AC_SUBST([am__quote]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([am__quote]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__quote$]) +m4trace:configure.ac:29: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +m4trace:configure.ac:29: -1- AC_SUBST([AMDEP_TRUE]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([AMDEP_TRUE]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_TRUE$]) +m4trace:configure.ac:29: -1- AC_SUBST([AMDEP_FALSE]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([AMDEP_FALSE]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_FALSE$]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) +m4trace:configure.ac:29: -1- AC_SUBST([AMDEPBACKSLASH]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([AMDEPBACKSLASH]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) +m4trace:configure.ac:29: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CCDEPMODE]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CCDEPMODE$]) +m4trace:configure.ac:29: -1- AM_CONDITIONAL([am__fastdepCC], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) -m4trace:configure.ac:28: -1- AC_SUBST([am__fastdepCC_TRUE]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) -m4trace:configure.ac:28: -1- AC_SUBST([am__fastdepCC_FALSE]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) -m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) -m4trace:configure.ac:28: -1- AC_SUBST([CPP]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CPP]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CPP$]) -m4trace:configure.ac:28: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:28: -1- AC_SUBST([CPP]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([CPP]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^CPP$]) -m4trace:configure.ac:28: -1- AC_SUBST([GREP]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([GREP]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^GREP$]) -m4trace:configure.ac:28: -1- AC_SUBST([EGREP]) -m4trace:configure.ac:28: -1- AC_SUBST_TRACE([EGREP]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^EGREP$]) -m4trace:configure.ac:28: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^STDC_HEADERS$]) -m4trace:configure.ac:28: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ +m4trace:configure.ac:29: -1- AC_SUBST([am__fastdepCC_TRUE]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) +m4trace:configure.ac:29: -1- AC_SUBST([am__fastdepCC_FALSE]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) +m4trace:configure.ac:29: -1- AC_SUBST([CPP]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CPP]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPP$]) +m4trace:configure.ac:29: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CPPFLAGS]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.ac:29: -1- AC_SUBST([CPP]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([CPP]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPP$]) +m4trace:configure.ac:29: -1- AC_SUBST([GREP]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([GREP]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^GREP$]) +m4trace:configure.ac:29: -1- AC_SUBST([EGREP]) +m4trace:configure.ac:29: -1- AC_SUBST_TRACE([EGREP]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^EGREP$]) +m4trace:configure.ac:29: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^STDC_HEADERS$]) +m4trace:configure.ac:29: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ @%:@undef STDC_HEADERS]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_SYS_TYPES_H]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_SYS_STAT_H]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STDLIB_H]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STRING_H]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_MEMORY_H]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STRINGS_H]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_INTTYPES_H]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STDINT_H]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_UNISTD_H]) -m4trace:configure.ac:28: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATTR_XATTR_H]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^HAVE_ATTR_XATTR_H$]) -m4trace:configure.ac:28: -1- AH_OUTPUT([HAVE_LIBATTR], [/* Define to 1 if you have the `attr\' library (-lattr). */ +m4trace:configure.ac:29: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATTR_XATTR_H]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^HAVE_ATTR_XATTR_H$]) +m4trace:configure.ac:29: -1- AH_OUTPUT([HAVE_LIBATTR], [/* Define to 1 if you have the `attr\' library (-lattr). */ @%:@undef HAVE_LIBATTR]) -m4trace:configure.ac:28: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBATTR]) -m4trace:configure.ac:28: -1- m4_pattern_allow([^HAVE_LIBATTR$]) -m4trace:configure.ac:62: -1- AC_SUBST([AWK]) -m4trace:configure.ac:62: -1- AC_SUBST_TRACE([AWK]) -m4trace:configure.ac:62: -1- m4_pattern_allow([^AWK$]) -m4trace:configure.ac:63: -1- AC_SUBST([CC]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:63: -1- AC_SUBST([CFLAGS]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CFLAGS]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^CFLAGS$]) -m4trace:configure.ac:63: -1- AC_SUBST([LDFLAGS]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([LDFLAGS]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:63: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:63: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:63: -1- AC_SUBST([CC]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:63: -1- AC_SUBST([CC]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:63: -1- AC_SUBST([CC]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:63: -1- AC_SUBST([CC]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:63: -1- AC_SUBST([ac_ct_CC]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([ac_ct_CC]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^ac_ct_CC$]) -m4trace:configure.ac:63: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([CCDEPMODE]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^CCDEPMODE$]) -m4trace:configure.ac:63: -1- AM_CONDITIONAL([am__fastdepCC], [ +m4trace:configure.ac:29: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBATTR]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^HAVE_LIBATTR$]) +m4trace:configure.ac:63: -1- AC_SUBST([AWK]) +m4trace:configure.ac:63: -1- AC_SUBST_TRACE([AWK]) +m4trace:configure.ac:63: -1- m4_pattern_allow([^AWK$]) +m4trace:configure.ac:64: -1- AC_SUBST([CC]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- AC_SUBST([CFLAGS]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CFLAGS]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CFLAGS$]) +m4trace:configure.ac:64: -1- AC_SUBST([LDFLAGS]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([LDFLAGS]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^LDFLAGS$]) +m4trace:configure.ac:64: -1- AC_SUBST([LIBS]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([LIBS]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.ac:64: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CPPFLAGS]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.ac:64: -1- AC_SUBST([CC]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- AC_SUBST([CC]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- AC_SUBST([CC]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- AC_SUBST([CC]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([ac_ct_CC]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^ac_ct_CC$]) +m4trace:configure.ac:64: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([CCDEPMODE]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CCDEPMODE$]) +m4trace:configure.ac:64: -1- AM_CONDITIONAL([am__fastdepCC], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) -m4trace:configure.ac:63: -1- AC_SUBST([am__fastdepCC_TRUE]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) -m4trace:configure.ac:63: -1- AC_SUBST([am__fastdepCC_FALSE]) -m4trace:configure.ac:63: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE]) -m4trace:configure.ac:63: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) -m4trace:configure.ac:63: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) -m4trace:configure.ac:63: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) -m4trace:configure.ac:66: -1- AH_OUTPUT([HAVE_LIBELF], [/* Define to 1 if you have the `elf\' library (-lelf). */ +m4trace:configure.ac:64: -1- AC_SUBST([am__fastdepCC_TRUE]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) +m4trace:configure.ac:64: -1- AC_SUBST([am__fastdepCC_FALSE]) +m4trace:configure.ac:64: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) +m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) +m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) +m4trace:configure.ac:65: -1- AC_SUBST([CCAS]) +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([CCAS]) +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCAS$]) +m4trace:configure.ac:65: -1- AC_SUBST([CCASFLAGS]) +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([CCASFLAGS]) +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCASFLAGS$]) +m4trace:configure.ac:65: -1- AC_SUBST([CCASDEPMODE], [depmode=$am_cv_CCAS_dependencies_compiler_type]) +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([CCASDEPMODE]) +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCASDEPMODE$]) +m4trace:configure.ac:65: -1- AM_CONDITIONAL([am__fastdepCCAS], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3]) +m4trace:configure.ac:65: -1- AC_SUBST([am__fastdepCCAS_TRUE]) +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([am__fastdepCCAS_TRUE]) +m4trace:configure.ac:65: -1- m4_pattern_allow([^am__fastdepCCAS_TRUE$]) +m4trace:configure.ac:65: -1- AC_SUBST([am__fastdepCCAS_FALSE]) +m4trace:configure.ac:65: -1- AC_SUBST_TRACE([am__fastdepCCAS_FALSE]) +m4trace:configure.ac:65: -1- m4_pattern_allow([^am__fastdepCCAS_FALSE$]) +m4trace:configure.ac:65: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_TRUE]) +m4trace:configure.ac:65: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_FALSE]) +m4trace:configure.ac:68: -1- AH_OUTPUT([HAVE_LIBELF], [/* Define to 1 if you have the `elf\' library (-lelf). */ @%:@undef HAVE_LIBELF]) -m4trace:configure.ac:66: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBELF]) -m4trace:configure.ac:66: -1- m4_pattern_allow([^HAVE_LIBELF$]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_ERRNO_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:68: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBELF]) +m4trace:configure.ac:68: -1- m4_pattern_allow([^HAVE_LIBELF$]) +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_ERRNO_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_ERRNO_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_ERROR_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_ERROR_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_ERROR_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_FCNTL_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_GELF_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_GELF_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_GELF_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_LIBGEN_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_LIBGEN_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_LIBGEN_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_STDIO_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_STDIO_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STDIO_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STDLIB_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STRING_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_SYS_MMAN_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_SYS_MMAN_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_SYS_MMAN_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_SYS_STAT_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_SYS_TYPES_H]) -m4trace:configure.ac:70: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_UNISTD_H]) -m4trace:configure.ac:78: -1- AC_DEFINE_TRACE_LITERAL([pid_t]) -m4trace:configure.ac:78: -1- m4_pattern_allow([^pid_t$]) -m4trace:configure.ac:78: -1- AH_OUTPUT([pid_t], [/* Define to `int\' if does not define. */ +m4trace:configure.ac:80: -1- AC_DEFINE_TRACE_LITERAL([pid_t]) +m4trace:configure.ac:80: -1- m4_pattern_allow([^pid_t$]) +m4trace:configure.ac:80: -1- AH_OUTPUT([pid_t], [/* Define to `int\' if does not define. */ @%:@undef pid_t]) -m4trace:configure.ac:79: -1- AC_DEFINE_TRACE_LITERAL([size_t]) -m4trace:configure.ac:79: -1- m4_pattern_allow([^size_t$]) -m4trace:configure.ac:79: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if does not define. */ +m4trace:configure.ac:81: -1- AC_DEFINE_TRACE_LITERAL([size_t]) +m4trace:configure.ac:81: -1- m4_pattern_allow([^size_t$]) +m4trace:configure.ac:81: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if does not define. */ @%:@undef size_t]) -m4trace:configure.ac:80: -1- AC_DEFINE_TRACE_LITERAL([_UINT8_T]) -m4trace:configure.ac:80: -1- m4_pattern_allow([^_UINT8_T$]) -m4trace:configure.ac:80: -1- AH_OUTPUT([_UINT8_T], [/* Define for Solaris 2.5.1 so the uint8_t typedef from , +m4trace:configure.ac:82: -1- AC_DEFINE_TRACE_LITERAL([_UINT8_T]) +m4trace:configure.ac:82: -1- m4_pattern_allow([^_UINT8_T$]) +m4trace:configure.ac:82: -1- AH_OUTPUT([_UINT8_T], [/* Define for Solaris 2.5.1 so the uint8_t typedef from , , or is not used. If the typedef were allowed, the @%:@define below would cause a syntax error. */ @%:@undef _UINT8_T]) -m4trace:configure.ac:80: -1- AC_DEFINE_TRACE_LITERAL([uint8_t]) -m4trace:configure.ac:80: -1- m4_pattern_allow([^uint8_t$]) -m4trace:configure.ac:80: -1- AH_OUTPUT([uint8_t], [/* Define to the type of an unsigned integer type of width exactly 8 bits if +m4trace:configure.ac:82: -1- AC_DEFINE_TRACE_LITERAL([uint8_t]) +m4trace:configure.ac:82: -1- m4_pattern_allow([^uint8_t$]) +m4trace:configure.ac:82: -1- AH_OUTPUT([uint8_t], [/* Define to the type of an unsigned integer type of width exactly 8 bits if such a type exists and the standard includes do not define it. */ @%:@undef uint8_t]) -m4trace:configure.ac:81: -1- AC_DEFINE_TRACE_LITERAL([uint16_t]) -m4trace:configure.ac:81: -1- m4_pattern_allow([^uint16_t$]) -m4trace:configure.ac:81: -1- AH_OUTPUT([uint16_t], [/* Define to the type of an unsigned integer type of width exactly 16 bits if +m4trace:configure.ac:83: -1- AC_DEFINE_TRACE_LITERAL([uint16_t]) +m4trace:configure.ac:83: -1- m4_pattern_allow([^uint16_t$]) +m4trace:configure.ac:83: -1- AH_OUTPUT([uint16_t], [/* Define to the type of an unsigned integer type of width exactly 16 bits if such a type exists and the standard includes do not define it. */ @%:@undef uint16_t]) -m4trace:configure.ac:84: -1- AC_LIBSOURCE([error.h]) -m4trace:configure.ac:84: -1- AC_LIBSOURCE([error.c]) -m4trace:configure.ac:84: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS error.$ac_objext"]) -m4trace:configure.ac:84: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) -m4trace:configure.ac:84: -1- m4_pattern_allow([^LIB@&t@OBJS$]) -m4trace:configure.ac:84: -1- AC_LIBSOURCE([error.c]) -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_VFORK_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:86: -1- AC_LIBSOURCE([error.h]) +m4trace:configure.ac:86: -1- AC_LIBSOURCE([error.c]) +m4trace:configure.ac:86: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS error.$ac_objext"]) +m4trace:configure.ac:86: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) +m4trace:configure.ac:86: -1- m4_pattern_allow([^LIB@&t@OBJS$]) +m4trace:configure.ac:86: -1- AC_LIBSOURCE([error.c]) +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_VFORK_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_VFORK_H]) -m4trace:configure.ac:85: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFORK_H]) -m4trace:configure.ac:85: -1- m4_pattern_allow([^HAVE_VFORK_H$]) -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_FORK], [/* Define to 1 if you have the `fork\' function. */ +m4trace:configure.ac:87: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFORK_H]) +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_VFORK_H$]) +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_FORK], [/* Define to 1 if you have the `fork\' function. */ @%:@undef HAVE_FORK]) -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_VFORK], [/* Define to 1 if you have the `vfork\' function. */ +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_VFORK], [/* Define to 1 if you have the `vfork\' function. */ @%:@undef HAVE_VFORK]) -m4trace:configure.ac:85: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_VFORK]) -m4trace:configure.ac:85: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$]) -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_WORKING_VFORK], [/* Define to 1 if `vfork\' works. */ +m4trace:configure.ac:87: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_VFORK]) +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$]) +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_WORKING_VFORK], [/* Define to 1 if `vfork\' works. */ @%:@undef HAVE_WORKING_VFORK]) -m4trace:configure.ac:85: -1- AC_DEFINE_TRACE_LITERAL([vfork]) -m4trace:configure.ac:85: -1- m4_pattern_allow([^vfork$]) -m4trace:configure.ac:85: -1- AH_OUTPUT([vfork], [/* Define as `fork\' if `vfork\' does not work. */ +m4trace:configure.ac:87: -1- AC_DEFINE_TRACE_LITERAL([vfork]) +m4trace:configure.ac:87: -1- m4_pattern_allow([^vfork$]) +m4trace:configure.ac:87: -1- AH_OUTPUT([vfork], [/* Define as `fork\' if `vfork\' does not work. */ @%:@undef vfork]) -m4trace:configure.ac:85: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_FORK]) -m4trace:configure.ac:85: -1- m4_pattern_allow([^HAVE_WORKING_FORK$]) -m4trace:configure.ac:85: -1- AH_OUTPUT([HAVE_WORKING_FORK], [/* Define to 1 if `fork\' works. */ +m4trace:configure.ac:87: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_FORK]) +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_WORKING_FORK$]) +m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_WORKING_FORK], [/* Define to 1 if `fork\' works. */ @%:@undef HAVE_WORKING_FORK]) -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_STDLIB_H]) -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_UNISTD_H]) -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the header file. */ +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the header file. */ @%:@undef HAVE_SYS_PARAM_H]) -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_GETPAGESIZE], [/* Define to 1 if you have the `getpagesize\' function. */ +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_GETPAGESIZE], [/* Define to 1 if you have the `getpagesize\' function. */ @%:@undef HAVE_GETPAGESIZE]) -m4trace:configure.ac:86: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPAGESIZE]) -m4trace:configure.ac:86: -1- m4_pattern_allow([^HAVE_GETPAGESIZE$]) -m4trace:configure.ac:86: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MMAP]) -m4trace:configure.ac:86: -1- m4_pattern_allow([^HAVE_MMAP$]) -m4trace:configure.ac:86: -1- AH_OUTPUT([HAVE_MMAP], [/* Define to 1 if you have a working `mmap\' system call. */ +m4trace:configure.ac:88: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPAGESIZE]) +m4trace:configure.ac:88: -1- m4_pattern_allow([^HAVE_GETPAGESIZE$]) +m4trace:configure.ac:88: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MMAP]) +m4trace:configure.ac:88: -1- m4_pattern_allow([^HAVE_MMAP$]) +m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_MMAP], [/* Define to 1 if you have a working `mmap\' system call. */ @%:@undef HAVE_MMAP]) -m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_MEMSET], [/* Define to 1 if you have the `memset\' function. */ +m4trace:configure.ac:89: -1- AH_OUTPUT([HAVE_MEMSET], [/* Define to 1 if you have the `memset\' function. */ @%:@undef HAVE_MEMSET]) -m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_STRERROR], [/* Define to 1 if you have the `strerror\' function. */ +m4trace:configure.ac:89: -1- AH_OUTPUT([HAVE_STRERROR], [/* Define to 1 if you have the `strerror\' function. */ @%:@undef HAVE_STRERROR]) -m4trace:configure.ac:89: -1- AC_CONFIG_FILES([ +m4trace:configure.ac:91: -1- AC_CONFIG_FILES([ Makefile src/Makefile scripts/Makefile @@ -512,29 +540,29 @@ m4trace:configure.ac:89: -1- AC_CONFIG_FILES([ tests/gnustack/Makefile tests/pxtpax/Makefile ]) -m4trace:configure.ac:99: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) -m4trace:configure.ac:99: -1- m4_pattern_allow([^LIB@&t@OBJS$]) -m4trace:configure.ac:99: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([LTLIBOBJS]) -m4trace:configure.ac:99: -1- m4_pattern_allow([^LTLIBOBJS$]) -m4trace:configure.ac:99: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) -m4trace:configure.ac:99: -1- AC_SUBST([am__EXEEXT_TRUE]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE]) -m4trace:configure.ac:99: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) -m4trace:configure.ac:99: -1- AC_SUBST([am__EXEEXT_FALSE]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE]) -m4trace:configure.ac:99: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) -m4trace:configure.ac:99: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) -m4trace:configure.ac:99: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([top_builddir]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([top_build_prefix]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([srcdir]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([abs_srcdir]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([top_srcdir]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([abs_top_srcdir]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([builddir]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([abs_builddir]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([abs_top_builddir]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([INSTALL]) -m4trace:configure.ac:99: -1- AC_SUBST_TRACE([MKDIR_P]) +m4trace:configure.ac:101: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) +m4trace:configure.ac:101: -1- m4_pattern_allow([^LIB@&t@OBJS$]) +m4trace:configure.ac:101: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([LTLIBOBJS]) +m4trace:configure.ac:101: -1- m4_pattern_allow([^LTLIBOBJS$]) +m4trace:configure.ac:101: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) +m4trace:configure.ac:101: -1- AC_SUBST([am__EXEEXT_TRUE]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE]) +m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) +m4trace:configure.ac:101: -1- AC_SUBST([am__EXEEXT_FALSE]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE]) +m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) +m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) +m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([top_builddir]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([top_build_prefix]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([srcdir]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([abs_srcdir]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([top_srcdir]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([abs_top_srcdir]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([builddir]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([abs_builddir]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([abs_top_builddir]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([INSTALL]) +m4trace:configure.ac:101: -1- AC_SUBST_TRACE([MKDIR_P]) diff --git a/aclocal.m4 b/autom4te.cache/traces.2 similarity index 50% copy from aclocal.m4 copy to autom4te.cache/traces.2 index 1bc55f4..fefc52e 100644 --- a/aclocal.m4 +++ b/autom4te.cache/traces.2 @@ -1,129 +1,27 @@ -# generated automatically by aclocal 1.11.1 -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, -[m4_warning([this file was generated for autoconf 2.68. -You have another version of autoconf. It may work, but is not guaranteed to. -If you have problems, you may need to regenerate the build system entirely. -To do so, use the procedure documented by the package, typically `autoreconf'.])]) - -# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_AUTOMAKE_VERSION(VERSION) -# ---------------------------- -# Automake X.Y traces this macro to ensure aclocal.m4 has been -# generated from the m4 files accompanying Automake X.Y. -# (This private macro should not be called outside this file.) -AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.11' +m4trace:/usr/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) - -# _AM_AUTOCONF_VERSION(VERSION) -# ----------------------------- -# aclocal traces this macro to find the Autoconf version. -# This is a private macro too. Using m4_define simplifies -# the logic in aclocal, which can simply ignore this definition. -m4_define([_AM_AUTOCONF_VERSION], []) - -# AM_SET_CURRENT_AUTOMAKE_VERSION -# ------------------------------- -# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. -# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. -AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.11.1])dnl +m4trace:/usr/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) - -# AM_AUX_DIR_EXPAND -*- Autoconf -*- - -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets -# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to -# `$srcdir', `$srcdir/..', or `$srcdir/../..'. -# -# Of course, Automake must honor this variable whenever it calls a -# tool from the auxiliary directory. The problem is that $srcdir (and -# therefore $ac_aux_dir as well) can be either absolute or relative, -# depending on how configure is run. This is pretty annoying, since -# it makes $ac_aux_dir quite unusable in subdirectories: in the top -# source directory, any form will work fine, but in subdirectories a -# relative path needs to be adjusted first. -# -# $ac_aux_dir/missing -# fails when called from a subdirectory if $ac_aux_dir is relative -# $top_srcdir/$ac_aux_dir/missing -# fails if $ac_aux_dir is absolute, -# fails when called from a subdirectory in a VPATH build with -# a relative $ac_aux_dir -# -# The reason of the latter failure is that $top_srcdir and $ac_aux_dir -# are both prefixed by $srcdir. In an in-source build this is usually -# harmless because $srcdir is `.', but things will broke when you -# start a VPATH build or use an absolute $srcdir. -# -# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, -# iff we strip the leading $srcdir from $ac_aux_dir. That would be: -# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` -# and then we would define $MISSING as -# MISSING="\${SHELL} $am_aux_dir/missing" -# This will work as long as MISSING is not called from configure, because -# unfortunately $(top_srcdir) has no meaning in configure. -# However there are other variables, like CC, which are often used in -# configure, and could therefore not use this "fixed" $ac_aux_dir. -# -# Another solution, used here, is to always expand $ac_aux_dir to an -# absolute PATH. The drawback is that using absolute paths prevent a -# configured tree to be moved without reconfiguration. - -AC_DEFUN([AM_AUX_DIR_EXPAND], -[dnl Rely on autoconf to set up CDPATH properly. +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. +AC_REQUIRE([AC_PROG_CC]) +test "${CCAS+set}" = set || CCAS=$CC +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS +AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)]) +AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)]) +_AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl +]) +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. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) - -# AM_CONDITIONAL -*- Autoconf -*- - -# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 9 - -# AM_CONDITIONAL(NAME, SHELL-CONDITION) -# ------------------------------------- -# Define a conditional. -AC_DEFUN([AM_CONDITIONAL], -[AC_PREREQ(2.52)dnl +m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl @@ -143,35 +41,7 @@ AC_CONFIG_COMMANDS_PRE( AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) - -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 10 - -# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be -# written in clear, in which case automake, when reading aclocal.m4, -# will think it sees a *use*, and therefore will trigger all it's -# C support machinery. Also note that it means that autoscan, seeing -# CC etc. in the Makefile, will ask for an AC_PROG_CC use... - - -# _AM_DEPENDENCIES(NAME) -# ---------------------- -# See how the compiler implements dependency checking. -# NAME is "CC", "CXX", "GCJ", or "OBJC". -# We try a few techniques and use that to set a single cache variable. -# -# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was -# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular -# dependency, and given that the user is not expected to run this macro, -# just rely on AC_PROG_CC. -AC_DEFUN([_AM_DEPENDENCIES], -[AC_REQUIRE([AM_SET_DEPDIR])dnl +m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl @@ -299,22 +169,10 @@ AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) - - -# AM_SET_DEPDIR -# ------------- -# Choose a directory name for dependency files. -# This macro is AC_REQUIREd in _AM_DEPENDENCIES -AC_DEFUN([AM_SET_DEPDIR], -[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +m4trace:/usr/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) - - -# AM_DEP_TRACK -# ------------ -AC_DEFUN([AM_DEP_TRACK], -[AC_ARG_ENABLE(dependency-tracking, +m4trace:/usr/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then @@ -325,22 +183,7 @@ AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) - -# Generate code to set up dependency tracking. -*- Autoconf -*- - -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -#serial 5 - -# _AM_OUTPUT_DEPENDENCY_COMMANDS -# ------------------------------ -AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], -[{ +m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. @@ -390,49 +233,12 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], done done } -])# _AM_OUTPUT_DEPENDENCY_COMMANDS - - -# AM_OUTPUT_DEPENDENCY_COMMANDS -# ----------------------------- -# This macro should only be invoked once -- use via AC_REQUIRE. -# -# This code is only required when automatic dependency tracking -# is enabled. FIXME. This creates each `.P' file that we will -# need in order to bootstrap the dependency handling code. -AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], -[AC_CONFIG_COMMANDS([depfiles], +]) +m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) - -# Do all the work for Automake. -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 16 - -# This macro actually does too much. Some checks are only needed if -# your package does certain things. But this isn't really a big deal. - -# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) -# AM_INIT_AUTOMAKE([OPTIONS]) -# ----------------------------------------------- -# The call with PACKAGE and VERSION arguments is the old style -# call (pre autoconf-2.50), which is being phased out. PACKAGE -# and VERSION should now be passed to AC_INIT and removed from -# the call to AM_INIT_AUTOMAKE. -# We support both call styles for the transition. After -# the next Automake release, Autoconf can make the AC_INIT -# arguments mandatory, and then we can depend on a new Autoconf -# release and drop the old call support. -AC_DEFUN([AM_INIT_AUTOMAKE], -[AC_PREREQ([2.62])dnl +m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl @@ -516,23 +322,7 @@ AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) - -dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not -dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further -dnl mangled by Autoconf and run in a shell conditional statement. -m4_define([_AC_COMPILER_EXEEXT], -m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) - - -# When config.status generates a header, we must update the stamp-h file. -# This file resides in the same directory as the config header -# that is generated. The stamp files are numbered to have different names. - -# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the -# loop where config.status creates the headers, so we can generate -# our stamp files there. -AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], -[# Compute $1's index in $config_headers. +m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do @@ -544,18 +334,7 @@ for _am_header in $config_headers :; do esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) - -# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_INSTALL_SH -# ------------------ -# Define $install_sh. -AC_DEFUN([AM_PROG_INSTALL_SH], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +m4trace:/usr/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) @@ -565,19 +344,7 @@ if test x"${install_sh}" != xset; then esac fi AC_SUBST(install_sh)]) - -# Copyright (C) 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# Check whether the underlying file-system supports filenames -# with a leading dot. For instance MS-DOS doesn't. -AC_DEFUN([AM_SET_LEADING_DOT], -[rm -rf .tst 2>/dev/null +m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. @@ -586,22 +353,7 @@ else fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) - -# Check to see how 'make' treats includes. -*- Autoconf -*- - -# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 4 - -# AM_MAKE_INCLUDE() -# ----------------- -# Check to see how make treats includes. -AC_DEFUN([AM_MAKE_INCLUDE], -[am_make=${MAKE-make} +m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target @@ -638,32 +390,10 @@ AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) - -# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- - -# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 6 - -# AM_MISSING_PROG(NAME, PROGRAM) -# ------------------------------ -AC_DEFUN([AM_MISSING_PROG], -[AC_REQUIRE([AM_MISSING_HAS_RUN]) +m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) - - -# AM_MISSING_HAS_RUN -# ------------------ -# Define MISSING if not defined so far and test if it supports --run. -# If it does, set am_missing_run to use it, otherwise, to nothing. -AC_DEFUN([AM_MISSING_HAS_RUN], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in @@ -681,18 +411,7 @@ else AC_MSG_WARN([`missing' script is too old or missing]) fi ]) - -# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_MKDIR_P -# --------------- -# Check for `mkdir -p'. -AC_DEFUN([AM_PROG_MKDIR_P], -[AC_PREREQ([2.60])dnl +m4trace:/usr/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. @@ -707,55 +426,16 @@ case $mkdir_p in */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) - -# Helper functions for option handling. -*- Autoconf -*- - -# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 4 - -# _AM_MANGLE_OPTION(NAME) -# ----------------------- -AC_DEFUN([_AM_MANGLE_OPTION], -[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) - -# _AM_SET_OPTION(NAME) -# ------------------------------ -# Set option NAME. Presently that only means defining a flag for this option. -AC_DEFUN([_AM_SET_OPTION], -[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) - -# _AM_SET_OPTIONS(OPTIONS) -# ---------------------------------- -# OPTIONS is a space-separated list of Automake options. -AC_DEFUN([_AM_SET_OPTIONS], -[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) - -# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) -# ------------------------------------------- -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. -AC_DEFUN([_AM_IF_OPTION], -[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) - -# Check to make sure that the build environment is sane. -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 5 - -# AM_SANITY_CHECK -# --------------- -AC_DEFUN([AM_SANITY_CHECK], -[AC_MSG_CHECKING([whether build environment is sane]) +m4trace:/usr/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) +m4trace:/usr/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) +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)])]) +m4trace:/usr/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) +m4trace:/usr/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) +m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file @@ -805,24 +485,20 @@ else Check your system clock]) fi AC_MSG_RESULT(yes)]) - -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_INSTALL_STRIP -# --------------------- -# One issue with vendor `install' (even GNU) is that you can't -# specify the program used to strip binaries. This is especially -# annoying in cross-compiling environments, where the build's strip -# is unlikely to handle the host's binaries. -# Fortunately install-sh will honor a STRIPPROG variable, so we -# always use install-sh in `make install-strip', and initialize -# STRIPPROG with the value of the STRIP variable (set by the user). -AC_DEFUN([AM_PROG_INSTALL_STRIP], -[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], +[ --enable-silent-rules less verbose build output (undo: `make V=1') + --disable-silent-rules verbose build output (undo: `make V=0')]) +case $enable_silent_rules in +yes) AM_DEFAULT_VERBOSITY=0;; +no) AM_DEFAULT_VERBOSITY=1;; +*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) +m4trace:/usr/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake @@ -833,51 +509,9 @@ if test "$cross_compiling" != no; then fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) - -# Copyright (C) 2006, 2008 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# _AM_SUBST_NOTMAKE(VARIABLE) -# --------------------------- -# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. -# This macro is traced by Automake. -AC_DEFUN([_AM_SUBST_NOTMAKE]) - -# AM_SUBST_NOTMAKE(VARIABLE) -# --------------------------- -# Public sister of _AM_SUBST_NOTMAKE. -AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) - -# Check how to create a tarball. -*- Autoconf -*- - -# Copyright (C) 2004, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# _AM_PROG_TAR(FORMAT) -# -------------------- -# Check how to create a tarball in format FORMAT. -# FORMAT should be one of `v7', `ustar', or `pax'. -# -# Substitute a variable $(am__tar) that is a command -# writing to stdout a FORMAT-tarball containing the directory -# $tardir. -# tardir=directory && $(am__tar) > result.tar -# -# Substitute a variable $(am__untar) that extract such -# a tarball read from stdin. -# $(am__untar) < result.tar -AC_DEFUN([_AM_PROG_TAR], -[# Always define AMTAR for backward compatibility. +m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE]) +m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) +m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], @@ -947,5 +581,244 @@ AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) -]) # _AM_PROG_TAR - +]) +m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?A[CHUM]_]) +m4trace:configure.ac:5: -1- m4_pattern_forbid([_AC_]) +m4trace:configure.ac:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) +m4trace:configure.ac:5: -1- m4_pattern_allow([^AS_FLAGS$]) +m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?m4_]) +m4trace:configure.ac:5: -1- m4_pattern_forbid([^dnl$]) +m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?AS_]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^SHELL$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PATH_SEPARATOR$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^exec_prefix$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^prefix$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^program_transform_name$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^bindir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^sbindir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^libexecdir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^datarootdir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^datadir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^sysconfdir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^sharedstatedir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^localstatedir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^includedir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^oldincludedir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^docdir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^infodir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^htmldir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^dvidir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^pdfdir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^psdir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^libdir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^localedir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^mandir$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^DEFS$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_C$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_N$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_T$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^build_alias$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^host_alias$]) +m4trace:configure.ac:5: -1- m4_pattern_allow([^target_alias$]) +m4trace:configure.ac:8: -1- AM_INIT_AUTOMAKE([1.11 foreign]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) +m4trace:configure.ac:8: -1- AM_SET_CURRENT_AUTOMAKE_VERSION +m4trace:configure.ac:8: -1- AM_AUTOMAKE_VERSION([1.11.1]) +m4trace:configure.ac:8: -1- _AM_AUTOCONF_VERSION([2.68]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_DATA$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^am__isrc$]) +m4trace:configure.ac:8: -1- _AM_SUBST_NOTMAKE([am__isrc]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^CYGPATH_W$]) +m4trace:configure.ac:8: -1- _AM_SET_OPTIONS([1.11 foreign]) +m4trace:configure.ac:8: -1- _AM_SET_OPTION([1.11]) +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([1.11]) +m4trace:configure.ac:8: -1- _AM_SET_OPTION([foreign]) +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([foreign]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^PACKAGE$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^VERSION$]) +m4trace:configure.ac:8: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])]) +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([no-define]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^PACKAGE$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^VERSION$]) +m4trace:configure.ac:8: -1- AM_SANITY_CHECK +m4trace:configure.ac:8: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) +m4trace:configure.ac:8: -1- AM_MISSING_HAS_RUN +m4trace:configure.ac:8: -1- AM_AUX_DIR_EXPAND +m4trace:configure.ac:8: -1- m4_pattern_allow([^ACLOCAL$]) +m4trace:configure.ac:8: -1- AM_MISSING_PROG([AUTOCONF], [autoconf]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^AUTOCONF$]) +m4trace:configure.ac:8: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^AUTOMAKE$]) +m4trace:configure.ac:8: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^AUTOHEADER$]) +m4trace:configure.ac:8: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^MAKEINFO$]) +m4trace:configure.ac:8: -1- AM_PROG_INSTALL_SH +m4trace:configure.ac:8: -1- m4_pattern_allow([^install_sh$]) +m4trace:configure.ac:8: -1- AM_PROG_INSTALL_STRIP +m4trace:configure.ac:8: -1- m4_pattern_allow([^STRIP$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) +m4trace:configure.ac:8: -1- AM_PROG_MKDIR_P +m4trace:configure.ac:8: -1- m4_pattern_allow([^MKDIR_P$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^mkdir_p$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^AWK$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^SET_MAKE$]) +m4trace:configure.ac:8: -1- AM_SET_LEADING_DOT +m4trace:configure.ac:8: -1- m4_pattern_allow([^am__leading_dot$]) +m4trace:configure.ac:8: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([tar-ustar]) +m4trace:configure.ac:8: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])]) +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([tar-pax]) +m4trace:configure.ac:8: -1- _AM_PROG_TAR([v7]) +m4trace:configure.ac:8: -1- AM_MISSING_PROG([AMTAR], [tar]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^AMTAR$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^am__tar$]) +m4trace:configure.ac:8: -1- m4_pattern_allow([^am__untar$]) +m4trace:configure.ac:8: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([no-dependencies]) +m4trace:configure.ac:8: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])]) +m4trace:configure.ac:8: -2- _AM_MANGLE_OPTION([silent-rules]) +m4trace:configure.ac:9: -1- AM_SILENT_RULES([yes]) +m4trace:configure.ac:9: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) +m4trace:configure.ac:9: -1- m4_pattern_allow([^AM_BACKSLASH$]) +m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) +m4trace:configure.ac:11: -1- m4_pattern_allow([^has_yasm$]) +m4trace:configure.ac:27: -1- AM_CONDITIONAL([TEST], [test "x$has_yasm" = "xyes"]) +m4trace:configure.ac:27: -1- m4_pattern_allow([^TEST_TRUE$]) +m4trace:configure.ac:27: -1- m4_pattern_allow([^TEST_FALSE$]) +m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([TEST_TRUE]) +m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([TEST_FALSE]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CFLAGS$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^LDFLAGS$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^ac_ct_CC$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^EXEEXT$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^OBJEXT$]) +m4trace:configure.ac:29: -1- _AM_DEPENDENCIES([CC]) +m4trace:configure.ac:29: -1- AM_SET_DEPDIR +m4trace:configure.ac:29: -1- m4_pattern_allow([^DEPDIR$]) +m4trace:configure.ac:29: -1- AM_OUTPUT_DEPENDENCY_COMMANDS +m4trace:configure.ac:29: -1- AM_MAKE_INCLUDE +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__include$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__quote$]) +m4trace:configure.ac:29: -1- AM_DEP_TRACK +m4trace:configure.ac:29: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_TRUE$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEP_FALSE$]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CCDEPMODE$]) +m4trace:configure.ac:29: -1- AM_CONDITIONAL([am__fastdepCC], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) +m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPP$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^CPP$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^GREP$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^EGREP$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^STDC_HEADERS$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^HAVE_ATTR_XATTR_H$]) +m4trace:configure.ac:29: -1- m4_pattern_allow([^HAVE_LIBATTR$]) +m4trace:configure.ac:63: -1- m4_pattern_allow([^AWK$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CFLAGS$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^LDFLAGS$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CC$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^ac_ct_CC$]) +m4trace:configure.ac:64: -1- _AM_DEPENDENCIES([CC]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^CCDEPMODE$]) +m4trace:configure.ac:64: -1- AM_CONDITIONAL([am__fastdepCC], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) +m4trace:configure.ac:64: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) +m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) +m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) +m4trace:configure.ac:65: -1- AM_PROG_AS +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCAS$]) +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCASFLAGS$]) +m4trace:configure.ac:65: -1- _AM_IF_OPTION([no-dependencies], [], [_AM_DEPENDENCIES([CCAS])]) +m4trace:configure.ac:65: -2- _AM_MANGLE_OPTION([no-dependencies]) +m4trace:configure.ac:65: -1- _AM_DEPENDENCIES([CCAS]) +m4trace:configure.ac:65: -1- m4_pattern_allow([^CCASDEPMODE$]) +m4trace:configure.ac:65: -1- AM_CONDITIONAL([am__fastdepCCAS], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3]) +m4trace:configure.ac:65: -1- m4_pattern_allow([^am__fastdepCCAS_TRUE$]) +m4trace:configure.ac:65: -1- m4_pattern_allow([^am__fastdepCCAS_FALSE$]) +m4trace:configure.ac:65: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_TRUE]) +m4trace:configure.ac:65: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_FALSE]) +m4trace:configure.ac:68: -1- m4_pattern_allow([^HAVE_LIBELF$]) +m4trace:configure.ac:80: -1- m4_pattern_allow([^pid_t$]) +m4trace:configure.ac:81: -1- m4_pattern_allow([^size_t$]) +m4trace:configure.ac:82: -1- m4_pattern_allow([^_UINT8_T$]) +m4trace:configure.ac:82: -1- m4_pattern_allow([^uint8_t$]) +m4trace:configure.ac:83: -1- m4_pattern_allow([^uint16_t$]) +m4trace:configure.ac:86: -1- m4_pattern_allow([^LIB@&t@OBJS$]) +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_VFORK_H$]) +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$]) +m4trace:configure.ac:87: -1- m4_pattern_allow([^vfork$]) +m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_WORKING_FORK$]) +m4trace:configure.ac:88: -1- AC_DEFUN([_AC_Header_stdlib_h], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_header_list], [" stdlib.h"])]) +_AC_HEADERS_EXPANSION]) +m4trace:configure.ac:88: -1- AC_DEFUN([_AC_Header_unistd_h], [m4_divert_text([INIT_PREPARE], [AS_VAR_APPEND([ac_header_list], [" unistd.h"])]) +_AC_HEADERS_EXPANSION]) +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"])]) +_AC_HEADERS_EXPANSION]) +m4trace:configure.ac:88: -1- m4_pattern_allow([^HAVE_GETPAGESIZE$]) +m4trace:configure.ac:88: -1- m4_pattern_allow([^HAVE_MMAP$]) +m4trace:configure.ac:101: -1- m4_pattern_allow([^LIB@&t@OBJS$]) +m4trace:configure.ac:101: -1- m4_pattern_allow([^LTLIBOBJS$]) +m4trace:configure.ac:101: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) +m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) +m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) +m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) +m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) +m4trace:configure.ac:101: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"]) +m4trace:configure.ac:101: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS diff --git a/configure b/configure index 06e0f48..88381f8 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for elfix 0.5.0. +# Generated by GNU Autoconf 2.68 for elfix 0.5.1. # # Report bugs to . # @@ -560,8 +560,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='elfix' PACKAGE_TARNAME='elfix' -PACKAGE_VERSION='0.5.0' -PACKAGE_STRING='elfix 0.5.0' +PACKAGE_VERSION='0.5.1' +PACKAGE_STRING='elfix 0.5.1' PACKAGE_BUGREPORT='http://bugs.gentoo.org/' PACKAGE_URL='' @@ -607,6 +607,11 @@ ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS +am__fastdepCCAS_FALSE +am__fastdepCCAS_TRUE +CCASDEPMODE +CCASFLAGS +CCAS EGREP GREP CPP @@ -629,6 +634,8 @@ CC TEST_FALSE TEST_TRUE has_yasm +AM_BACKSLASH +AM_DEFAULT_VERBOSITY am__untar am__tar AMTAR @@ -693,6 +700,7 @@ SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking +enable_silent_rules enable_tests enable_xattr enable_dependency_tracking @@ -705,7 +713,9 @@ CFLAGS LDFLAGS LIBS CPPFLAGS -CPP' +CPP +CCAS +CCASFLAGS' # Initialize some variables set by options. @@ -1248,7 +1258,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures elfix 0.5.0 to adapt to many kinds of systems. +\`configure' configures elfix 0.5.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1314,7 +1324,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of elfix 0.5.0:";; + short | recursive ) echo "Configuration of elfix 0.5.1:";; esac cat <<\_ACEOF @@ -1322,6 +1332,8 @@ Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-silent-rules less verbose build output (undo: `make V=1') + --disable-silent-rules verbose build output (undo: `make V=0') --enable-tests perform tests --enable-xattr enable support for pax markings in xattrs --disable-dependency-tracking speeds up one-time build @@ -1336,6 +1348,8 @@ Some influential environment variables: CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor + CCAS assembler compiler command (defaults to CC) + CCASFLAGS assembler compiler flags (defaults to CFLAGS) Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. @@ -1403,7 +1417,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -elfix configure 0.5.0 +elfix configure 0.5.1 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1879,7 +1893,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by elfix $as_me 0.5.0, which was +It was created by elfix $as_me 0.5.1, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2700,7 +2714,7 @@ fi # Define the identity of the package. PACKAGE='elfix' - VERSION='0.5.0' + VERSION='0.5.1' cat >>confdefs.h <<_ACEOF @@ -2740,6 +2754,18 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' +# Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in +yes) AM_DEFAULT_VERBOSITY=0;; +no) AM_DEFAULT_VERBOSITY=1;; +*) AM_DEFAULT_VERBOSITY=0;; +esac +AM_BACKSLASH='\' + # Check whether --enable-tests was given. if test "${enable_tests+set}" = set; then : @@ -4975,6 +5001,138 @@ else fi +# By default we simply use the C compiler to build assembly code. + +test "${CCAS+set}" = set || CCAS=$CC +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS + + + +depcc="$CCAS" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CCAS_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CCAS_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CCAS_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CCAS_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; } +CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then + am__fastdepCCAS_TRUE= + am__fastdepCCAS_FALSE='#' +else + am__fastdepCCAS_TRUE='#' + am__fastdepCCAS_FALSE= +fi + + # Checks for libraries. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5 @@ -5694,6 +5852,10 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 @@ -6103,7 +6265,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by elfix $as_me 0.5.0, which was +This file was extended by elfix $as_me 0.5.1, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6169,7 +6331,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -elfix config.status 0.5.0 +elfix config.status 0.5.1 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index c817686..9f32eb3 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) -AC_INIT([elfix], [0.5.0], [http://bugs.gentoo.org/]) +AC_INIT([elfix], [0.5.1], [http://bugs.gentoo.org/]) AC_CONFIG_SRCDIR([src/fix-gnustack.c]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([1.11 foreign]) diff --git a/doc/Makefile.in b/doc/Makefile.in index 9150213..d67aaf1 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -42,6 +42,12 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; @@ -72,11 +78,15 @@ MANS = $(dist_man_MANS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ diff --git a/scripts/Makefile.in b/scripts/Makefile.in index d0e6f75..344b78d 100644 --- a/scripts/Makefile.in +++ b/scripts/Makefile.in @@ -66,16 +66,26 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(sbindir)" SCRIPTS = $(dist_sbin_SCRIPTS) +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ diff --git a/src/Makefile.in b/src/Makefile.in index 7ff5546..cb6830d 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -57,8 +57,20 @@ am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(fix_gnustack_SOURCES) $(paxctl_ng_SOURCES) DIST_SOURCES = $(fix_gnustack_SOURCES) $(paxctl_ng_SOURCES) ETAGS = etags @@ -66,11 +78,15 @@ CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ @@ -226,10 +242,10 @@ clean-sbinPROGRAMS: -test -z "$(sbin_PROGRAMS)" || rm -f $(sbin_PROGRAMS) fix-gnustack$(EXEEXT): $(fix_gnustack_OBJECTS) $(fix_gnustack_DEPENDENCIES) @rm -f fix-gnustack$(EXEEXT) - $(LINK) $(fix_gnustack_OBJECTS) $(fix_gnustack_LDADD) $(LIBS) + $(AM_V_CCLD)$(LINK) $(fix_gnustack_OBJECTS) $(fix_gnustack_LDADD) $(LIBS) paxctl-ng$(EXEEXT): $(paxctl_ng_OBJECTS) $(paxctl_ng_DEPENDENCIES) @rm -f paxctl-ng$(EXEEXT) - $(LINK) $(paxctl_ng_OBJECTS) $(paxctl_ng_LDADD) $(LIBS) + $(AM_V_CCLD)$(LINK) $(paxctl_ng_OBJECTS) $(paxctl_ng_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -241,15 +257,17 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/paxctl-ng.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` diff --git a/tests/Makefile.in b/tests/Makefile.in index 00fb601..6541640 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -41,6 +41,12 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ @@ -86,11 +92,15 @@ am__relativize = \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ diff --git a/tests/gnustack/Makefile.in b/tests/gnustack/Makefile.in index 954ccb1..566e3ad 100644 --- a/tests/gnustack/Makefile.in +++ b/tests/gnustack/Makefile.in @@ -44,16 +44,30 @@ CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) -am_bad_gnustack_OBJECTS = bad-gnustack.$(OBJEXT) +am_bad_gnustack_OBJECTS = bad64.$(OBJEXT) bad32.$(OBJEXT) bad_gnustack_OBJECTS = $(am_bad_gnustack_OBJECTS) +bad_gnustack_LDADD = $(LDADD) DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +CCASCOMPILE = $(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS) +AM_V_CCAS = $(am__v_CCAS_$(V)) +am__v_CCAS_ = $(am__v_CCAS_$(AM_DEFAULT_VERBOSITY)) +am__v_CCAS_0 = @echo " CCAS " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(bad_gnustack_SOURCES) DIST_SOURCES = $(bad_gnustack_SOURCES) ETAGS = etags @@ -61,11 +75,15 @@ CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ @@ -146,18 +164,15 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -bad_gnustack_SOURCES = bad-gnustack.c -bad_gnustack_DEPENDENCIES = bad-asm.o -bad_gnustack_LDADD = bad-asm.o -EXTRA_DIST = bad64.asm bad32.asm +bad_gnustack_SOURCES = bad64.s bad32.s ARCH = $(shell uname -m | sed -e 's/i./x/') check_SCRIPTS = test.sh TEST = $(check_SCRIPTS) -CLEANFILES = bad-asm.o test.sh +CLEANFILES = *.o test.sh all: all-am .SUFFIXES: -.SUFFIXES: .c .o .obj +.SUFFIXES: .o .obj .s $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ @@ -191,9 +206,6 @@ $(am__aclocal_m4_deps): clean-noinstPROGRAMS: -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) -bad-gnustack$(EXEEXT): $(bad_gnustack_OBJECTS) $(bad_gnustack_DEPENDENCIES) - @rm -f bad-gnustack$(EXEEXT) - $(LINK) $(bad_gnustack_OBJECTS) $(bad_gnustack_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -201,21 +213,13 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bad-gnustack.Po@am__quote@ +.s.o: + $(AM_V_CCAS) @AM_BACKSLASH@ + $(CCASCOMPILE) -c -o $@ $< -.c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` +.s.obj: + $(AM_V_CCAS) @AM_BACKSLASH@ + $(CCASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -335,7 +339,6 @@ clean: clean-am clean-am: clean-generic clean-noinstPROGRAMS mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -381,7 +384,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -415,17 +417,17 @@ uninstall-am: uninstall-am -bad-asm.o: bad64.asm bad32.asm - [[ "$(ARCH)" == "x86" ]] && yasm -f elf -m x86 bad32.asm && mv bad32.o bad-asm.o || true - [[ "$(ARCH)" == "x86_64" ]] && yasm -f elf -m amd64 bad64.asm && mv bad64.o bad-asm.o || true +bad-gnustack: bad64.s bad32.s + [[ "$(ARCH)" == "x86" ]] && $(CCAS) -m32 -o bad-gnustack bad32.s || true + [[ "$(ARCH)" == "x86_64" ]] && $(CCAS) -m64 -o bad-gnustack bad64.s || true test.sh: @echo "================================================================================" @echo - @echo "Fixing Bad GNU_STACK Elf" + @echo "Before GNU_STACK Elf: " @../../src/fix-gnustack -f bad-gnustack @echo - @echo "Fixed Bad GNU_STACK Elf" + @echo "After GNU_STACK Elf: " @../../src/fix-gnustack bad-gnustack @echo @echo "================================================================================" diff --git a/tests/pxtpax/Makefile.in b/tests/pxtpax/Makefile.in index 0b0d61e..5118421 100644 --- a/tests/pxtpax/Makefile.in +++ b/tests/pxtpax/Makefile.in @@ -53,8 +53,20 @@ am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(daemon_SOURCES) DIST_SOURCES = $(daemon_SOURCES) ETAGS = etags @@ -62,11 +74,15 @@ CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ @@ -191,7 +207,7 @@ clean-noinstPROGRAMS: -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) daemon$(EXEEXT): $(daemon_OBJECTS) $(daemon_DEPENDENCIES) @rm -f daemon$(EXEEXT) - $(LINK) $(daemon_OBJECTS) $(daemon_LDADD) $(LIBS) + $(AM_V_CCLD)$(LINK) $(daemon_OBJECTS) $(daemon_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -202,15 +218,17 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/daemon.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`