aclocal.m4

changeset 48
0d2c13c24fd0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/aclocal.m4	Wed May 31 12:20:04 2017 +0200
     1.3 @@ -0,0 +1,1039 @@
     1.4 +# generated automatically by aclocal 1.13.4 -*- Autoconf -*-
     1.5 +
     1.6 +# Copyright (C) 1996-2013 Free Software Foundation, Inc.
     1.7 +
     1.8 +# This file is free software; the Free Software Foundation
     1.9 +# gives unlimited permission to copy and/or distribute it,
    1.10 +# with or without modifications, as long as this notice is preserved.
    1.11 +
    1.12 +# This program is distributed in the hope that it will be useful,
    1.13 +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
    1.14 +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
    1.15 +# PARTICULAR PURPOSE.
    1.16 +
    1.17 +m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
    1.18 +m4_ifndef([AC_AUTOCONF_VERSION],
    1.19 +  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
    1.20 +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
    1.21 +[m4_warning([this file was generated for autoconf 2.69.
    1.22 +You have another version of autoconf.  It may work, but is not guaranteed to.
    1.23 +If you have problems, you may need to regenerate the build system entirely.
    1.24 +To do so, use the procedure documented by the package, typically 'autoreconf'.])])
    1.25 +
    1.26 +# Copyright (C) 2002-2013 Free Software Foundation, Inc.
    1.27 +#
    1.28 +# This file is free software; the Free Software Foundation
    1.29 +# gives unlimited permission to copy and/or distribute it,
    1.30 +# with or without modifications, as long as this notice is preserved.
    1.31 +
    1.32 +# AM_AUTOMAKE_VERSION(VERSION)
    1.33 +# ----------------------------
    1.34 +# Automake X.Y traces this macro to ensure aclocal.m4 has been
    1.35 +# generated from the m4 files accompanying Automake X.Y.
    1.36 +# (This private macro should not be called outside this file.)
    1.37 +AC_DEFUN([AM_AUTOMAKE_VERSION],
    1.38 +[am__api_version='1.13'
    1.39 +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
    1.40 +dnl require some minimum version.  Point them to the right macro.
    1.41 +m4_if([$1], [1.13.4], [],
    1.42 +      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
    1.43 +])
    1.44 +
    1.45 +# _AM_AUTOCONF_VERSION(VERSION)
    1.46 +# -----------------------------
    1.47 +# aclocal traces this macro to find the Autoconf version.
    1.48 +# This is a private macro too.  Using m4_define simplifies
    1.49 +# the logic in aclocal, which can simply ignore this definition.
    1.50 +m4_define([_AM_AUTOCONF_VERSION], [])
    1.51 +
    1.52 +# AM_SET_CURRENT_AUTOMAKE_VERSION
    1.53 +# -------------------------------
    1.54 +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
    1.55 +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
    1.56 +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
    1.57 +[AM_AUTOMAKE_VERSION([1.13.4])dnl
    1.58 +m4_ifndef([AC_AUTOCONF_VERSION],
    1.59 +  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
    1.60 +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
    1.61 +
    1.62 +# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
    1.63 +
    1.64 +# Copyright (C) 2001-2013 Free Software Foundation, Inc.
    1.65 +#
    1.66 +# This file is free software; the Free Software Foundation
    1.67 +# gives unlimited permission to copy and/or distribute it,
    1.68 +# with or without modifications, as long as this notice is preserved.
    1.69 +
    1.70 +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
    1.71 +# $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
    1.72 +# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
    1.73 +#
    1.74 +# Of course, Automake must honor this variable whenever it calls a
    1.75 +# tool from the auxiliary directory.  The problem is that $srcdir (and
    1.76 +# therefore $ac_aux_dir as well) can be either absolute or relative,
    1.77 +# depending on how configure is run.  This is pretty annoying, since
    1.78 +# it makes $ac_aux_dir quite unusable in subdirectories: in the top
    1.79 +# source directory, any form will work fine, but in subdirectories a
    1.80 +# relative path needs to be adjusted first.
    1.81 +#
    1.82 +# $ac_aux_dir/missing
    1.83 +#    fails when called from a subdirectory if $ac_aux_dir is relative
    1.84 +# $top_srcdir/$ac_aux_dir/missing
    1.85 +#    fails if $ac_aux_dir is absolute,
    1.86 +#    fails when called from a subdirectory in a VPATH build with
    1.87 +#          a relative $ac_aux_dir
    1.88 +#
    1.89 +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
    1.90 +# are both prefixed by $srcdir.  In an in-source build this is usually
    1.91 +# harmless because $srcdir is '.', but things will broke when you
    1.92 +# start a VPATH build or use an absolute $srcdir.
    1.93 +#
    1.94 +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
    1.95 +# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
    1.96 +#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
    1.97 +# and then we would define $MISSING as
    1.98 +#   MISSING="\${SHELL} $am_aux_dir/missing"
    1.99 +# This will work as long as MISSING is not called from configure, because
   1.100 +# unfortunately $(top_srcdir) has no meaning in configure.
   1.101 +# However there are other variables, like CC, which are often used in
   1.102 +# configure, and could therefore not use this "fixed" $ac_aux_dir.
   1.103 +#
   1.104 +# Another solution, used here, is to always expand $ac_aux_dir to an
   1.105 +# absolute PATH.  The drawback is that using absolute paths prevent a
   1.106 +# configured tree to be moved without reconfiguration.
   1.107 +
   1.108 +AC_DEFUN([AM_AUX_DIR_EXPAND],
   1.109 +[dnl Rely on autoconf to set up CDPATH properly.
   1.110 +AC_PREREQ([2.50])dnl
   1.111 +# expand $ac_aux_dir to an absolute path
   1.112 +am_aux_dir=`cd $ac_aux_dir && pwd`
   1.113 +])
   1.114 +
   1.115 +# AM_CONDITIONAL                                            -*- Autoconf -*-
   1.116 +
   1.117 +# Copyright (C) 1997-2013 Free Software Foundation, Inc.
   1.118 +#
   1.119 +# This file is free software; the Free Software Foundation
   1.120 +# gives unlimited permission to copy and/or distribute it,
   1.121 +# with or without modifications, as long as this notice is preserved.
   1.122 +
   1.123 +# AM_CONDITIONAL(NAME, SHELL-CONDITION)
   1.124 +# -------------------------------------
   1.125 +# Define a conditional.
   1.126 +AC_DEFUN([AM_CONDITIONAL],
   1.127 +[AC_PREREQ([2.52])dnl
   1.128 + m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
   1.129 +       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
   1.130 +AC_SUBST([$1_TRUE])dnl
   1.131 +AC_SUBST([$1_FALSE])dnl
   1.132 +_AM_SUBST_NOTMAKE([$1_TRUE])dnl
   1.133 +_AM_SUBST_NOTMAKE([$1_FALSE])dnl
   1.134 +m4_define([_AM_COND_VALUE_$1], [$2])dnl
   1.135 +if $2; then
   1.136 +  $1_TRUE=
   1.137 +  $1_FALSE='#'
   1.138 +else
   1.139 +  $1_TRUE='#'
   1.140 +  $1_FALSE=
   1.141 +fi
   1.142 +AC_CONFIG_COMMANDS_PRE(
   1.143 +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
   1.144 +  AC_MSG_ERROR([[conditional "$1" was never defined.
   1.145 +Usually this means the macro was only invoked conditionally.]])
   1.146 +fi])])
   1.147 +
   1.148 +# Copyright (C) 1999-2013 Free Software Foundation, Inc.
   1.149 +#
   1.150 +# This file is free software; the Free Software Foundation
   1.151 +# gives unlimited permission to copy and/or distribute it,
   1.152 +# with or without modifications, as long as this notice is preserved.
   1.153 +
   1.154 +
   1.155 +# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
   1.156 +# written in clear, in which case automake, when reading aclocal.m4,
   1.157 +# will think it sees a *use*, and therefore will trigger all it's
   1.158 +# C support machinery.  Also note that it means that autoscan, seeing
   1.159 +# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
   1.160 +
   1.161 +
   1.162 +# _AM_DEPENDENCIES(NAME)
   1.163 +# ----------------------
   1.164 +# See how the compiler implements dependency checking.
   1.165 +# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
   1.166 +# We try a few techniques and use that to set a single cache variable.
   1.167 +#
   1.168 +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
   1.169 +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
   1.170 +# dependency, and given that the user is not expected to run this macro,
   1.171 +# just rely on AC_PROG_CC.
   1.172 +AC_DEFUN([_AM_DEPENDENCIES],
   1.173 +[AC_REQUIRE([AM_SET_DEPDIR])dnl
   1.174 +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
   1.175 +AC_REQUIRE([AM_MAKE_INCLUDE])dnl
   1.176 +AC_REQUIRE([AM_DEP_TRACK])dnl
   1.177 +
   1.178 +m4_if([$1], [CC],   [depcc="$CC"   am_compiler_list=],
   1.179 +      [$1], [CXX],  [depcc="$CXX"  am_compiler_list=],
   1.180 +      [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
   1.181 +      [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
   1.182 +      [$1], [UPC],  [depcc="$UPC"  am_compiler_list=],
   1.183 +      [$1], [GCJ],  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
   1.184 +                    [depcc="$$1"   am_compiler_list=])
   1.185 +
   1.186 +AC_CACHE_CHECK([dependency style of $depcc],
   1.187 +               [am_cv_$1_dependencies_compiler_type],
   1.188 +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
   1.189 +  # We make a subdir and do the tests there.  Otherwise we can end up
   1.190 +  # making bogus files that we don't know about and never remove.  For
   1.191 +  # instance it was reported that on HP-UX the gcc test will end up
   1.192 +  # making a dummy file named 'D' -- because '-MD' means "put the output
   1.193 +  # in D".
   1.194 +  rm -rf conftest.dir
   1.195 +  mkdir conftest.dir
   1.196 +  # Copy depcomp to subdir because otherwise we won't find it if we're
   1.197 +  # using a relative directory.
   1.198 +  cp "$am_depcomp" conftest.dir
   1.199 +  cd conftest.dir
   1.200 +  # We will build objects and dependencies in a subdirectory because
   1.201 +  # it helps to detect inapplicable dependency modes.  For instance
   1.202 +  # both Tru64's cc and ICC support -MD to output dependencies as a
   1.203 +  # side effect of compilation, but ICC will put the dependencies in
   1.204 +  # the current directory while Tru64 will put them in the object
   1.205 +  # directory.
   1.206 +  mkdir sub
   1.207 +
   1.208 +  am_cv_$1_dependencies_compiler_type=none
   1.209 +  if test "$am_compiler_list" = ""; then
   1.210 +     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
   1.211 +  fi
   1.212 +  am__universal=false
   1.213 +  m4_case([$1], [CC],
   1.214 +    [case " $depcc " in #(
   1.215 +     *\ -arch\ *\ -arch\ *) am__universal=true ;;
   1.216 +     esac],
   1.217 +    [CXX],
   1.218 +    [case " $depcc " in #(
   1.219 +     *\ -arch\ *\ -arch\ *) am__universal=true ;;
   1.220 +     esac])
   1.221 +
   1.222 +  for depmode in $am_compiler_list; do
   1.223 +    # Setup a source with many dependencies, because some compilers
   1.224 +    # like to wrap large dependency lists on column 80 (with \), and
   1.225 +    # we should not choose a depcomp mode which is confused by this.
   1.226 +    #
   1.227 +    # We need to recreate these files for each test, as the compiler may
   1.228 +    # overwrite some of them when testing with obscure command lines.
   1.229 +    # This happens at least with the AIX C compiler.
   1.230 +    : > sub/conftest.c
   1.231 +    for i in 1 2 3 4 5 6; do
   1.232 +      echo '#include "conftst'$i'.h"' >> sub/conftest.c
   1.233 +      # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
   1.234 +      # Solaris 10 /bin/sh.
   1.235 +      echo '/* dummy */' > sub/conftst$i.h
   1.236 +    done
   1.237 +    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
   1.238 +
   1.239 +    # We check with '-c' and '-o' for the sake of the "dashmstdout"
   1.240 +    # mode.  It turns out that the SunPro C++ compiler does not properly
   1.241 +    # handle '-M -o', and we need to detect this.  Also, some Intel
   1.242 +    # versions had trouble with output in subdirs.
   1.243 +    am__obj=sub/conftest.${OBJEXT-o}
   1.244 +    am__minus_obj="-o $am__obj"
   1.245 +    case $depmode in
   1.246 +    gcc)
   1.247 +      # This depmode causes a compiler race in universal mode.
   1.248 +      test "$am__universal" = false || continue
   1.249 +      ;;
   1.250 +    nosideeffect)
   1.251 +      # After this tag, mechanisms are not by side-effect, so they'll
   1.252 +      # only be used when explicitly requested.
   1.253 +      if test "x$enable_dependency_tracking" = xyes; then
   1.254 +	continue
   1.255 +      else
   1.256 +	break
   1.257 +      fi
   1.258 +      ;;
   1.259 +    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
   1.260 +      # This compiler won't grok '-c -o', but also, the minuso test has
   1.261 +      # not run yet.  These depmodes are late enough in the game, and
   1.262 +      # so weak that their functioning should not be impacted.
   1.263 +      am__obj=conftest.${OBJEXT-o}
   1.264 +      am__minus_obj=
   1.265 +      ;;
   1.266 +    none) break ;;
   1.267 +    esac
   1.268 +    if depmode=$depmode \
   1.269 +       source=sub/conftest.c object=$am__obj \
   1.270 +       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
   1.271 +       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
   1.272 +         >/dev/null 2>conftest.err &&
   1.273 +       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
   1.274 +       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
   1.275 +       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
   1.276 +       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
   1.277 +      # icc doesn't choke on unknown options, it will just issue warnings
   1.278 +      # or remarks (even with -Werror).  So we grep stderr for any message
   1.279 +      # that says an option was ignored or not supported.
   1.280 +      # When given -MP, icc 7.0 and 7.1 complain thusly:
   1.281 +      #   icc: Command line warning: ignoring option '-M'; no argument required
   1.282 +      # The diagnosis changed in icc 8.0:
   1.283 +      #   icc: Command line remark: option '-MP' not supported
   1.284 +      if (grep 'ignoring option' conftest.err ||
   1.285 +          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
   1.286 +        am_cv_$1_dependencies_compiler_type=$depmode
   1.287 +        break
   1.288 +      fi
   1.289 +    fi
   1.290 +  done
   1.291 +
   1.292 +  cd ..
   1.293 +  rm -rf conftest.dir
   1.294 +else
   1.295 +  am_cv_$1_dependencies_compiler_type=none
   1.296 +fi
   1.297 +])
   1.298 +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
   1.299 +AM_CONDITIONAL([am__fastdep$1], [
   1.300 +  test "x$enable_dependency_tracking" != xno \
   1.301 +  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
   1.302 +])
   1.303 +
   1.304 +
   1.305 +# AM_SET_DEPDIR
   1.306 +# -------------
   1.307 +# Choose a directory name for dependency files.
   1.308 +# This macro is AC_REQUIREd in _AM_DEPENDENCIES.
   1.309 +AC_DEFUN([AM_SET_DEPDIR],
   1.310 +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
   1.311 +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
   1.312 +])
   1.313 +
   1.314 +
   1.315 +# AM_DEP_TRACK
   1.316 +# ------------
   1.317 +AC_DEFUN([AM_DEP_TRACK],
   1.318 +[AC_ARG_ENABLE([dependency-tracking], [dnl
   1.319 +AS_HELP_STRING(
   1.320 +  [--enable-dependency-tracking],
   1.321 +  [do not reject slow dependency extractors])
   1.322 +AS_HELP_STRING(
   1.323 +  [--disable-dependency-tracking],
   1.324 +  [speeds up one-time build])])
   1.325 +if test "x$enable_dependency_tracking" != xno; then
   1.326 +  am_depcomp="$ac_aux_dir/depcomp"
   1.327 +  AMDEPBACKSLASH='\'
   1.328 +  am__nodep='_no'
   1.329 +fi
   1.330 +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
   1.331 +AC_SUBST([AMDEPBACKSLASH])dnl
   1.332 +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
   1.333 +AC_SUBST([am__nodep])dnl
   1.334 +_AM_SUBST_NOTMAKE([am__nodep])dnl
   1.335 +])
   1.336 +
   1.337 +# Generate code to set up dependency tracking.              -*- Autoconf -*-
   1.338 +
   1.339 +# Copyright (C) 1999-2013 Free Software Foundation, Inc.
   1.340 +#
   1.341 +# This file is free software; the Free Software Foundation
   1.342 +# gives unlimited permission to copy and/or distribute it,
   1.343 +# with or without modifications, as long as this notice is preserved.
   1.344 +
   1.345 +
   1.346 +# _AM_OUTPUT_DEPENDENCY_COMMANDS
   1.347 +# ------------------------------
   1.348 +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
   1.349 +[{
   1.350 +  # Older Autoconf quotes --file arguments for eval, but not when files
   1.351 +  # are listed without --file.  Let's play safe and only enable the eval
   1.352 +  # if we detect the quoting.
   1.353 +  case $CONFIG_FILES in
   1.354 +  *\'*) eval set x "$CONFIG_FILES" ;;
   1.355 +  *)   set x $CONFIG_FILES ;;
   1.356 +  esac
   1.357 +  shift
   1.358 +  for mf
   1.359 +  do
   1.360 +    # Strip MF so we end up with the name of the file.
   1.361 +    mf=`echo "$mf" | sed -e 's/:.*$//'`
   1.362 +    # Check whether this is an Automake generated Makefile or not.
   1.363 +    # We used to match only the files named 'Makefile.in', but
   1.364 +    # some people rename them; so instead we look at the file content.
   1.365 +    # Grep'ing the first line is not enough: some people post-process
   1.366 +    # each Makefile.in and add a new line on top of each file to say so.
   1.367 +    # Grep'ing the whole file is not good either: AIX grep has a line
   1.368 +    # limit of 2048, but all sed's we know have understand at least 4000.
   1.369 +    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
   1.370 +      dirpart=`AS_DIRNAME("$mf")`
   1.371 +    else
   1.372 +      continue
   1.373 +    fi
   1.374 +    # Extract the definition of DEPDIR, am__include, and am__quote
   1.375 +    # from the Makefile without running 'make'.
   1.376 +    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
   1.377 +    test -z "$DEPDIR" && continue
   1.378 +    am__include=`sed -n 's/^am__include = //p' < "$mf"`
   1.379 +    test -z "$am__include" && continue
   1.380 +    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
   1.381 +    # Find all dependency output files, they are included files with
   1.382 +    # $(DEPDIR) in their names.  We invoke sed twice because it is the
   1.383 +    # simplest approach to changing $(DEPDIR) to its actual value in the
   1.384 +    # expansion.
   1.385 +    for file in `sed -n "
   1.386 +      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
   1.387 +	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
   1.388 +      # Make sure the directory exists.
   1.389 +      test -f "$dirpart/$file" && continue
   1.390 +      fdir=`AS_DIRNAME(["$file"])`
   1.391 +      AS_MKDIR_P([$dirpart/$fdir])
   1.392 +      # echo "creating $dirpart/$file"
   1.393 +      echo '# dummy' > "$dirpart/$file"
   1.394 +    done
   1.395 +  done
   1.396 +}
   1.397 +])# _AM_OUTPUT_DEPENDENCY_COMMANDS
   1.398 +
   1.399 +
   1.400 +# AM_OUTPUT_DEPENDENCY_COMMANDS
   1.401 +# -----------------------------
   1.402 +# This macro should only be invoked once -- use via AC_REQUIRE.
   1.403 +#
   1.404 +# This code is only required when automatic dependency tracking
   1.405 +# is enabled.  FIXME.  This creates each '.P' file that we will
   1.406 +# need in order to bootstrap the dependency handling code.
   1.407 +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
   1.408 +[AC_CONFIG_COMMANDS([depfiles],
   1.409 +     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
   1.410 +     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
   1.411 +])
   1.412 +
   1.413 +# Do all the work for Automake.                             -*- Autoconf -*-
   1.414 +
   1.415 +# Copyright (C) 1996-2013 Free Software Foundation, Inc.
   1.416 +#
   1.417 +# This file is free software; the Free Software Foundation
   1.418 +# gives unlimited permission to copy and/or distribute it,
   1.419 +# with or without modifications, as long as this notice is preserved.
   1.420 +
   1.421 +# This macro actually does too much.  Some checks are only needed if
   1.422 +# your package does certain things.  But this isn't really a big deal.
   1.423 +
   1.424 +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
   1.425 +# AM_INIT_AUTOMAKE([OPTIONS])
   1.426 +# -----------------------------------------------
   1.427 +# The call with PACKAGE and VERSION arguments is the old style
   1.428 +# call (pre autoconf-2.50), which is being phased out.  PACKAGE
   1.429 +# and VERSION should now be passed to AC_INIT and removed from
   1.430 +# the call to AM_INIT_AUTOMAKE.
   1.431 +# We support both call styles for the transition.  After
   1.432 +# the next Automake release, Autoconf can make the AC_INIT
   1.433 +# arguments mandatory, and then we can depend on a new Autoconf
   1.434 +# release and drop the old call support.
   1.435 +AC_DEFUN([AM_INIT_AUTOMAKE],
   1.436 +[AC_PREREQ([2.65])dnl
   1.437 +dnl Autoconf wants to disallow AM_ names.  We explicitly allow
   1.438 +dnl the ones we care about.
   1.439 +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
   1.440 +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
   1.441 +AC_REQUIRE([AC_PROG_INSTALL])dnl
   1.442 +if test "`cd $srcdir && pwd`" != "`pwd`"; then
   1.443 +  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
   1.444 +  # is not polluted with repeated "-I."
   1.445 +  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
   1.446 +  # test to see if srcdir already configured
   1.447 +  if test -f $srcdir/config.status; then
   1.448 +    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
   1.449 +  fi
   1.450 +fi
   1.451 +
   1.452 +# test whether we have cygpath
   1.453 +if test -z "$CYGPATH_W"; then
   1.454 +  if (cygpath --version) >/dev/null 2>/dev/null; then
   1.455 +    CYGPATH_W='cygpath -w'
   1.456 +  else
   1.457 +    CYGPATH_W=echo
   1.458 +  fi
   1.459 +fi
   1.460 +AC_SUBST([CYGPATH_W])
   1.461 +
   1.462 +# Define the identity of the package.
   1.463 +dnl Distinguish between old-style and new-style calls.
   1.464 +m4_ifval([$2],
   1.465 +[AC_DIAGNOSE([obsolete],
   1.466 +             [$0: two- and three-arguments forms are deprecated.])
   1.467 +m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
   1.468 + AC_SUBST([PACKAGE], [$1])dnl
   1.469 + AC_SUBST([VERSION], [$2])],
   1.470 +[_AM_SET_OPTIONS([$1])dnl
   1.471 +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
   1.472 +m4_if(
   1.473 +  m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
   1.474 +  [ok:ok],,
   1.475 +  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
   1.476 + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
   1.477 + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
   1.478 +
   1.479 +_AM_IF_OPTION([no-define],,
   1.480 +[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
   1.481 + AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
   1.482 +
   1.483 +# Some tools Automake needs.
   1.484 +AC_REQUIRE([AM_SANITY_CHECK])dnl
   1.485 +AC_REQUIRE([AC_ARG_PROGRAM])dnl
   1.486 +AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
   1.487 +AM_MISSING_PROG([AUTOCONF], [autoconf])
   1.488 +AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
   1.489 +AM_MISSING_PROG([AUTOHEADER], [autoheader])
   1.490 +AM_MISSING_PROG([MAKEINFO], [makeinfo])
   1.491 +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
   1.492 +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
   1.493 +AC_REQUIRE([AC_PROG_MKDIR_P])dnl
   1.494 +# For better backward compatibility.  To be removed once Automake 1.9.x
   1.495 +# dies out for good.  For more background, see:
   1.496 +# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
   1.497 +# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
   1.498 +AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
   1.499 +# We need awk for the "check" target.  The system "awk" is bad on
   1.500 +# some platforms.
   1.501 +AC_REQUIRE([AC_PROG_AWK])dnl
   1.502 +AC_REQUIRE([AC_PROG_MAKE_SET])dnl
   1.503 +AC_REQUIRE([AM_SET_LEADING_DOT])dnl
   1.504 +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
   1.505 +	      [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
   1.506 +			     [_AM_PROG_TAR([v7])])])
   1.507 +_AM_IF_OPTION([no-dependencies],,
   1.508 +[AC_PROVIDE_IFELSE([AC_PROG_CC],
   1.509 +		  [_AM_DEPENDENCIES([CC])],
   1.510 +		  [m4_define([AC_PROG_CC],
   1.511 +			     m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
   1.512 +AC_PROVIDE_IFELSE([AC_PROG_CXX],
   1.513 +		  [_AM_DEPENDENCIES([CXX])],
   1.514 +		  [m4_define([AC_PROG_CXX],
   1.515 +			     m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
   1.516 +AC_PROVIDE_IFELSE([AC_PROG_OBJC],
   1.517 +		  [_AM_DEPENDENCIES([OBJC])],
   1.518 +		  [m4_define([AC_PROG_OBJC],
   1.519 +			     m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
   1.520 +AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
   1.521 +		  [_AM_DEPENDENCIES([OBJCXX])],
   1.522 +		  [m4_define([AC_PROG_OBJCXX],
   1.523 +			     m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
   1.524 +])
   1.525 +AC_REQUIRE([AM_SILENT_RULES])dnl
   1.526 +dnl The testsuite driver may need to know about EXEEXT, so add the
   1.527 +dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This
   1.528 +dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
   1.529 +AC_CONFIG_COMMANDS_PRE(dnl
   1.530 +[m4_provide_if([_AM_COMPILER_EXEEXT],
   1.531 +  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
   1.532 +])
   1.533 +
   1.534 +dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
   1.535 +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
   1.536 +dnl mangled by Autoconf and run in a shell conditional statement.
   1.537 +m4_define([_AC_COMPILER_EXEEXT],
   1.538 +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
   1.539 +
   1.540 +
   1.541 +# When config.status generates a header, we must update the stamp-h file.
   1.542 +# This file resides in the same directory as the config header
   1.543 +# that is generated.  The stamp files are numbered to have different names.
   1.544 +
   1.545 +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
   1.546 +# loop where config.status creates the headers, so we can generate
   1.547 +# our stamp files there.
   1.548 +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
   1.549 +[# Compute $1's index in $config_headers.
   1.550 +_am_arg=$1
   1.551 +_am_stamp_count=1
   1.552 +for _am_header in $config_headers :; do
   1.553 +  case $_am_header in
   1.554 +    $_am_arg | $_am_arg:* )
   1.555 +      break ;;
   1.556 +    * )
   1.557 +      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
   1.558 +  esac
   1.559 +done
   1.560 +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
   1.561 +
   1.562 +# Copyright (C) 2001-2013 Free Software Foundation, Inc.
   1.563 +#
   1.564 +# This file is free software; the Free Software Foundation
   1.565 +# gives unlimited permission to copy and/or distribute it,
   1.566 +# with or without modifications, as long as this notice is preserved.
   1.567 +
   1.568 +# AM_PROG_INSTALL_SH
   1.569 +# ------------------
   1.570 +# Define $install_sh.
   1.571 +AC_DEFUN([AM_PROG_INSTALL_SH],
   1.572 +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
   1.573 +if test x"${install_sh}" != xset; then
   1.574 +  case $am_aux_dir in
   1.575 +  *\ * | *\	*)
   1.576 +    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
   1.577 +  *)
   1.578 +    install_sh="\${SHELL} $am_aux_dir/install-sh"
   1.579 +  esac
   1.580 +fi
   1.581 +AC_SUBST([install_sh])])
   1.582 +
   1.583 +# Copyright (C) 2003-2013 Free Software Foundation, Inc.
   1.584 +#
   1.585 +# This file is free software; the Free Software Foundation
   1.586 +# gives unlimited permission to copy and/or distribute it,
   1.587 +# with or without modifications, as long as this notice is preserved.
   1.588 +
   1.589 +# Check whether the underlying file-system supports filenames
   1.590 +# with a leading dot.  For instance MS-DOS doesn't.
   1.591 +AC_DEFUN([AM_SET_LEADING_DOT],
   1.592 +[rm -rf .tst 2>/dev/null
   1.593 +mkdir .tst 2>/dev/null
   1.594 +if test -d .tst; then
   1.595 +  am__leading_dot=.
   1.596 +else
   1.597 +  am__leading_dot=_
   1.598 +fi
   1.599 +rmdir .tst 2>/dev/null
   1.600 +AC_SUBST([am__leading_dot])])
   1.601 +
   1.602 +# Check to see how 'make' treats includes.	            -*- Autoconf -*-
   1.603 +
   1.604 +# Copyright (C) 2001-2013 Free Software Foundation, Inc.
   1.605 +#
   1.606 +# This file is free software; the Free Software Foundation
   1.607 +# gives unlimited permission to copy and/or distribute it,
   1.608 +# with or without modifications, as long as this notice is preserved.
   1.609 +
   1.610 +# AM_MAKE_INCLUDE()
   1.611 +# -----------------
   1.612 +# Check to see how make treats includes.
   1.613 +AC_DEFUN([AM_MAKE_INCLUDE],
   1.614 +[am_make=${MAKE-make}
   1.615 +cat > confinc << 'END'
   1.616 +am__doit:
   1.617 +	@echo this is the am__doit target
   1.618 +.PHONY: am__doit
   1.619 +END
   1.620 +# If we don't find an include directive, just comment out the code.
   1.621 +AC_MSG_CHECKING([for style of include used by $am_make])
   1.622 +am__include="#"
   1.623 +am__quote=
   1.624 +_am_result=none
   1.625 +# First try GNU make style include.
   1.626 +echo "include confinc" > confmf
   1.627 +# Ignore all kinds of additional output from 'make'.
   1.628 +case `$am_make -s -f confmf 2> /dev/null` in #(
   1.629 +*the\ am__doit\ target*)
   1.630 +  am__include=include
   1.631 +  am__quote=
   1.632 +  _am_result=GNU
   1.633 +  ;;
   1.634 +esac
   1.635 +# Now try BSD make style include.
   1.636 +if test "$am__include" = "#"; then
   1.637 +   echo '.include "confinc"' > confmf
   1.638 +   case `$am_make -s -f confmf 2> /dev/null` in #(
   1.639 +   *the\ am__doit\ target*)
   1.640 +     am__include=.include
   1.641 +     am__quote="\""
   1.642 +     _am_result=BSD
   1.643 +     ;;
   1.644 +   esac
   1.645 +fi
   1.646 +AC_SUBST([am__include])
   1.647 +AC_SUBST([am__quote])
   1.648 +AC_MSG_RESULT([$_am_result])
   1.649 +rm -f confinc confmf
   1.650 +])
   1.651 +
   1.652 +# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
   1.653 +
   1.654 +# Copyright (C) 1997-2013 Free Software Foundation, Inc.
   1.655 +#
   1.656 +# This file is free software; the Free Software Foundation
   1.657 +# gives unlimited permission to copy and/or distribute it,
   1.658 +# with or without modifications, as long as this notice is preserved.
   1.659 +
   1.660 +# AM_MISSING_PROG(NAME, PROGRAM)
   1.661 +# ------------------------------
   1.662 +AC_DEFUN([AM_MISSING_PROG],
   1.663 +[AC_REQUIRE([AM_MISSING_HAS_RUN])
   1.664 +$1=${$1-"${am_missing_run}$2"}
   1.665 +AC_SUBST($1)])
   1.666 +
   1.667 +# AM_MISSING_HAS_RUN
   1.668 +# ------------------
   1.669 +# Define MISSING if not defined so far and test if it is modern enough.
   1.670 +# If it is, set am_missing_run to use it, otherwise, to nothing.
   1.671 +AC_DEFUN([AM_MISSING_HAS_RUN],
   1.672 +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
   1.673 +AC_REQUIRE_AUX_FILE([missing])dnl
   1.674 +if test x"${MISSING+set}" != xset; then
   1.675 +  case $am_aux_dir in
   1.676 +  *\ * | *\	*)
   1.677 +    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
   1.678 +  *)
   1.679 +    MISSING="\${SHELL} $am_aux_dir/missing" ;;
   1.680 +  esac
   1.681 +fi
   1.682 +# Use eval to expand $SHELL
   1.683 +if eval "$MISSING --is-lightweight"; then
   1.684 +  am_missing_run="$MISSING "
   1.685 +else
   1.686 +  am_missing_run=
   1.687 +  AC_MSG_WARN(['missing' script is too old or missing])
   1.688 +fi
   1.689 +])
   1.690 +
   1.691 +# Helper functions for option handling.                     -*- Autoconf -*-
   1.692 +
   1.693 +# Copyright (C) 2001-2013 Free Software Foundation, Inc.
   1.694 +#
   1.695 +# This file is free software; the Free Software Foundation
   1.696 +# gives unlimited permission to copy and/or distribute it,
   1.697 +# with or without modifications, as long as this notice is preserved.
   1.698 +
   1.699 +# _AM_MANGLE_OPTION(NAME)
   1.700 +# -----------------------
   1.701 +AC_DEFUN([_AM_MANGLE_OPTION],
   1.702 +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
   1.703 +
   1.704 +# _AM_SET_OPTION(NAME)
   1.705 +# --------------------
   1.706 +# Set option NAME.  Presently that only means defining a flag for this option.
   1.707 +AC_DEFUN([_AM_SET_OPTION],
   1.708 +[m4_define(_AM_MANGLE_OPTION([$1]), [1])])
   1.709 +
   1.710 +# _AM_SET_OPTIONS(OPTIONS)
   1.711 +# ------------------------
   1.712 +# OPTIONS is a space-separated list of Automake options.
   1.713 +AC_DEFUN([_AM_SET_OPTIONS],
   1.714 +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
   1.715 +
   1.716 +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
   1.717 +# -------------------------------------------
   1.718 +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
   1.719 +AC_DEFUN([_AM_IF_OPTION],
   1.720 +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
   1.721 +
   1.722 +# Check to make sure that the build environment is sane.    -*- Autoconf -*-
   1.723 +
   1.724 +# Copyright (C) 1996-2013 Free Software Foundation, Inc.
   1.725 +#
   1.726 +# This file is free software; the Free Software Foundation
   1.727 +# gives unlimited permission to copy and/or distribute it,
   1.728 +# with or without modifications, as long as this notice is preserved.
   1.729 +
   1.730 +# AM_SANITY_CHECK
   1.731 +# ---------------
   1.732 +AC_DEFUN([AM_SANITY_CHECK],
   1.733 +[AC_MSG_CHECKING([whether build environment is sane])
   1.734 +# Reject unsafe characters in $srcdir or the absolute working directory
   1.735 +# name.  Accept space and tab only in the latter.
   1.736 +am_lf='
   1.737 +'
   1.738 +case `pwd` in
   1.739 +  *[[\\\"\#\$\&\'\`$am_lf]]*)
   1.740 +    AC_MSG_ERROR([unsafe absolute working directory name]);;
   1.741 +esac
   1.742 +case $srcdir in
   1.743 +  *[[\\\"\#\$\&\'\`$am_lf\ \	]]*)
   1.744 +    AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
   1.745 +esac
   1.746 +
   1.747 +# Do 'set' in a subshell so we don't clobber the current shell's
   1.748 +# arguments.  Must try -L first in case configure is actually a
   1.749 +# symlink; some systems play weird games with the mod time of symlinks
   1.750 +# (eg FreeBSD returns the mod time of the symlink's containing
   1.751 +# directory).
   1.752 +if (
   1.753 +   am_has_slept=no
   1.754 +   for am_try in 1 2; do
   1.755 +     echo "timestamp, slept: $am_has_slept" > conftest.file
   1.756 +     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
   1.757 +     if test "$[*]" = "X"; then
   1.758 +	# -L didn't work.
   1.759 +	set X `ls -t "$srcdir/configure" conftest.file`
   1.760 +     fi
   1.761 +     if test "$[*]" != "X $srcdir/configure conftest.file" \
   1.762 +	&& test "$[*]" != "X conftest.file $srcdir/configure"; then
   1.763 +
   1.764 +	# If neither matched, then we have a broken ls.  This can happen
   1.765 +	# if, for instance, CONFIG_SHELL is bash and it inherits a
   1.766 +	# broken ls alias from the environment.  This has actually
   1.767 +	# happened.  Such a system could not be considered "sane".
   1.768 +	AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
   1.769 +  alias in your environment])
   1.770 +     fi
   1.771 +     if test "$[2]" = conftest.file || test $am_try -eq 2; then
   1.772 +       break
   1.773 +     fi
   1.774 +     # Just in case.
   1.775 +     sleep 1
   1.776 +     am_has_slept=yes
   1.777 +   done
   1.778 +   test "$[2]" = conftest.file
   1.779 +   )
   1.780 +then
   1.781 +   # Ok.
   1.782 +   :
   1.783 +else
   1.784 +   AC_MSG_ERROR([newly created file is older than distributed files!
   1.785 +Check your system clock])
   1.786 +fi
   1.787 +AC_MSG_RESULT([yes])
   1.788 +# If we didn't sleep, we still need to ensure time stamps of config.status and
   1.789 +# generated files are strictly newer.
   1.790 +am_sleep_pid=
   1.791 +if grep 'slept: no' conftest.file >/dev/null 2>&1; then
   1.792 +  ( sleep 1 ) &
   1.793 +  am_sleep_pid=$!
   1.794 +fi
   1.795 +AC_CONFIG_COMMANDS_PRE(
   1.796 +  [AC_MSG_CHECKING([that generated files are newer than configure])
   1.797 +   if test -n "$am_sleep_pid"; then
   1.798 +     # Hide warnings about reused PIDs.
   1.799 +     wait $am_sleep_pid 2>/dev/null
   1.800 +   fi
   1.801 +   AC_MSG_RESULT([done])])
   1.802 +rm -f conftest.file
   1.803 +])
   1.804 +
   1.805 +# Copyright (C) 2009-2013 Free Software Foundation, Inc.
   1.806 +#
   1.807 +# This file is free software; the Free Software Foundation
   1.808 +# gives unlimited permission to copy and/or distribute it,
   1.809 +# with or without modifications, as long as this notice is preserved.
   1.810 +
   1.811 +# AM_SILENT_RULES([DEFAULT])
   1.812 +# --------------------------
   1.813 +# Enable less verbose build rules; with the default set to DEFAULT
   1.814 +# ("yes" being less verbose, "no" or empty being verbose).
   1.815 +AC_DEFUN([AM_SILENT_RULES],
   1.816 +[AC_ARG_ENABLE([silent-rules], [dnl
   1.817 +AS_HELP_STRING(
   1.818 +  [--enable-silent-rules],
   1.819 +  [less verbose build output (undo: "make V=1")])
   1.820 +AS_HELP_STRING(
   1.821 +  [--disable-silent-rules],
   1.822 +  [verbose build output (undo: "make V=0")])dnl
   1.823 +])
   1.824 +case $enable_silent_rules in @%:@ (((
   1.825 +  yes) AM_DEFAULT_VERBOSITY=0;;
   1.826 +   no) AM_DEFAULT_VERBOSITY=1;;
   1.827 +    *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
   1.828 +esac
   1.829 +dnl
   1.830 +dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
   1.831 +dnl do not support nested variable expansions.
   1.832 +dnl See automake bug#9928 and bug#10237.
   1.833 +am_make=${MAKE-make}
   1.834 +AC_CACHE_CHECK([whether $am_make supports nested variables],
   1.835 +   [am_cv_make_support_nested_variables],
   1.836 +   [if AS_ECHO([['TRUE=$(BAR$(V))
   1.837 +BAR0=false
   1.838 +BAR1=true
   1.839 +V=1
   1.840 +am__doit:
   1.841 +	@$(TRUE)
   1.842 +.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
   1.843 +  am_cv_make_support_nested_variables=yes
   1.844 +else
   1.845 +  am_cv_make_support_nested_variables=no
   1.846 +fi])
   1.847 +if test $am_cv_make_support_nested_variables = yes; then
   1.848 +  dnl Using '$V' instead of '$(V)' breaks IRIX make.
   1.849 +  AM_V='$(V)'
   1.850 +  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
   1.851 +else
   1.852 +  AM_V=$AM_DEFAULT_VERBOSITY
   1.853 +  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
   1.854 +fi
   1.855 +AC_SUBST([AM_V])dnl
   1.856 +AM_SUBST_NOTMAKE([AM_V])dnl
   1.857 +AC_SUBST([AM_DEFAULT_V])dnl
   1.858 +AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
   1.859 +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
   1.860 +AM_BACKSLASH='\'
   1.861 +AC_SUBST([AM_BACKSLASH])dnl
   1.862 +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
   1.863 +])
   1.864 +
   1.865 +# Copyright (C) 2001-2013 Free Software Foundation, Inc.
   1.866 +#
   1.867 +# This file is free software; the Free Software Foundation
   1.868 +# gives unlimited permission to copy and/or distribute it,
   1.869 +# with or without modifications, as long as this notice is preserved.
   1.870 +
   1.871 +# AM_PROG_INSTALL_STRIP
   1.872 +# ---------------------
   1.873 +# One issue with vendor 'install' (even GNU) is that you can't
   1.874 +# specify the program used to strip binaries.  This is especially
   1.875 +# annoying in cross-compiling environments, where the build's strip
   1.876 +# is unlikely to handle the host's binaries.
   1.877 +# Fortunately install-sh will honor a STRIPPROG variable, so we
   1.878 +# always use install-sh in "make install-strip", and initialize
   1.879 +# STRIPPROG with the value of the STRIP variable (set by the user).
   1.880 +AC_DEFUN([AM_PROG_INSTALL_STRIP],
   1.881 +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
   1.882 +# Installed binaries are usually stripped using 'strip' when the user
   1.883 +# run "make install-strip".  However 'strip' might not be the right
   1.884 +# tool to use in cross-compilation environments, therefore Automake
   1.885 +# will honor the 'STRIP' environment variable to overrule this program.
   1.886 +dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
   1.887 +if test "$cross_compiling" != no; then
   1.888 +  AC_CHECK_TOOL([STRIP], [strip], :)
   1.889 +fi
   1.890 +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
   1.891 +AC_SUBST([INSTALL_STRIP_PROGRAM])])
   1.892 +
   1.893 +# Copyright (C) 2006-2013 Free Software Foundation, Inc.
   1.894 +#
   1.895 +# This file is free software; the Free Software Foundation
   1.896 +# gives unlimited permission to copy and/or distribute it,
   1.897 +# with or without modifications, as long as this notice is preserved.
   1.898 +
   1.899 +# _AM_SUBST_NOTMAKE(VARIABLE)
   1.900 +# ---------------------------
   1.901 +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
   1.902 +# This macro is traced by Automake.
   1.903 +AC_DEFUN([_AM_SUBST_NOTMAKE])
   1.904 +
   1.905 +# AM_SUBST_NOTMAKE(VARIABLE)
   1.906 +# --------------------------
   1.907 +# Public sister of _AM_SUBST_NOTMAKE.
   1.908 +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
   1.909 +
   1.910 +# Check how to create a tarball.                            -*- Autoconf -*-
   1.911 +
   1.912 +# Copyright (C) 2004-2013 Free Software Foundation, Inc.
   1.913 +#
   1.914 +# This file is free software; the Free Software Foundation
   1.915 +# gives unlimited permission to copy and/or distribute it,
   1.916 +# with or without modifications, as long as this notice is preserved.
   1.917 +
   1.918 +# _AM_PROG_TAR(FORMAT)
   1.919 +# --------------------
   1.920 +# Check how to create a tarball in format FORMAT.
   1.921 +# FORMAT should be one of 'v7', 'ustar', or 'pax'.
   1.922 +#
   1.923 +# Substitute a variable $(am__tar) that is a command
   1.924 +# writing to stdout a FORMAT-tarball containing the directory
   1.925 +# $tardir.
   1.926 +#     tardir=directory && $(am__tar) > result.tar
   1.927 +#
   1.928 +# Substitute a variable $(am__untar) that extract such
   1.929 +# a tarball read from stdin.
   1.930 +#     $(am__untar) < result.tar
   1.931 +#
   1.932 +AC_DEFUN([_AM_PROG_TAR],
   1.933 +[# Always define AMTAR for backward compatibility.  Yes, it's still used
   1.934 +# in the wild :-(  We should find a proper way to deprecate it ...
   1.935 +AC_SUBST([AMTAR], ['$${TAR-tar}'])
   1.936 +
   1.937 +# We'll loop over all known methods to create a tar archive until one works.
   1.938 +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
   1.939 +
   1.940 +m4_if([$1], [v7],
   1.941 +  [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
   1.942 +
   1.943 +  [m4_case([$1],
   1.944 +    [ustar],
   1.945 +     [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
   1.946 +      # There is notably a 21 bits limit for the UID and the GID.  In fact,
   1.947 +      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
   1.948 +      # and bug#13588).
   1.949 +      am_max_uid=2097151 # 2^21 - 1
   1.950 +      am_max_gid=$am_max_uid
   1.951 +      # The $UID and $GID variables are not portable, so we need to resort
   1.952 +      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
   1.953 +      # below are definitely unexpected, so allow the users to see them
   1.954 +      # (that is, avoid stderr redirection).
   1.955 +      am_uid=`id -u || echo unknown`
   1.956 +      am_gid=`id -g || echo unknown`
   1.957 +      AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
   1.958 +      if test $am_uid -le $am_max_uid; then
   1.959 +         AC_MSG_RESULT([yes])
   1.960 +      else
   1.961 +         AC_MSG_RESULT([no])
   1.962 +         _am_tools=none
   1.963 +      fi
   1.964 +      AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
   1.965 +      if test $am_gid -le $am_max_gid; then
   1.966 +         AC_MSG_RESULT([yes])
   1.967 +      else
   1.968 +        AC_MSG_RESULT([no])
   1.969 +        _am_tools=none
   1.970 +      fi],
   1.971 +
   1.972 +  [pax],
   1.973 +    [],
   1.974 +
   1.975 +  [m4_fatal([Unknown tar format])])
   1.976 +
   1.977 +  AC_MSG_CHECKING([how to create a $1 tar archive])
   1.978 +
   1.979 +  # Go ahead even if we have the value already cached.  We do so because we
   1.980 +  # need to set the values for the 'am__tar' and 'am__untar' variables.
   1.981 +  _am_tools=${am_cv_prog_tar_$1-$_am_tools}
   1.982 +
   1.983 +  for _am_tool in $_am_tools; do
   1.984 +    case $_am_tool in
   1.985 +    gnutar)
   1.986 +      for _am_tar in tar gnutar gtar; do
   1.987 +        AM_RUN_LOG([$_am_tar --version]) && break
   1.988 +      done
   1.989 +      am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
   1.990 +      am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
   1.991 +      am__untar="$_am_tar -xf -"
   1.992 +      ;;
   1.993 +    plaintar)
   1.994 +      # Must skip GNU tar: if it does not support --format= it doesn't create
   1.995 +      # ustar tarball either.
   1.996 +      (tar --version) >/dev/null 2>&1 && continue
   1.997 +      am__tar='tar chf - "$$tardir"'
   1.998 +      am__tar_='tar chf - "$tardir"'
   1.999 +      am__untar='tar xf -'
  1.1000 +      ;;
  1.1001 +    pax)
  1.1002 +      am__tar='pax -L -x $1 -w "$$tardir"'
  1.1003 +      am__tar_='pax -L -x $1 -w "$tardir"'
  1.1004 +      am__untar='pax -r'
  1.1005 +      ;;
  1.1006 +    cpio)
  1.1007 +      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
  1.1008 +      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
  1.1009 +      am__untar='cpio -i -H $1 -d'
  1.1010 +      ;;
  1.1011 +    none)
  1.1012 +      am__tar=false
  1.1013 +      am__tar_=false
  1.1014 +      am__untar=false
  1.1015 +      ;;
  1.1016 +    esac
  1.1017 +
  1.1018 +    # If the value was cached, stop now.  We just wanted to have am__tar
  1.1019 +    # and am__untar set.
  1.1020 +    test -n "${am_cv_prog_tar_$1}" && break
  1.1021 +
  1.1022 +    # tar/untar a dummy directory, and stop if the command works.
  1.1023 +    rm -rf conftest.dir
  1.1024 +    mkdir conftest.dir
  1.1025 +    echo GrepMe > conftest.dir/file
  1.1026 +    AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
  1.1027 +    rm -rf conftest.dir
  1.1028 +    if test -s conftest.tar; then
  1.1029 +      AM_RUN_LOG([$am__untar <conftest.tar])
  1.1030 +      AM_RUN_LOG([cat conftest.dir/file])
  1.1031 +      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
  1.1032 +    fi
  1.1033 +  done
  1.1034 +  rm -rf conftest.dir
  1.1035 +
  1.1036 +  AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
  1.1037 +  AC_MSG_RESULT([$am_cv_prog_tar_$1])])
  1.1038 +
  1.1039 +AC_SUBST([am__tar])
  1.1040 +AC_SUBST([am__untar])
  1.1041 +]) # _AM_PROG_TAR
  1.1042 +

mercurial