roentgen b75cab
# generated automatically by aclocal 1.12.4 -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 1996-2012 Free Software Foundation, Inc.
roentgen b75cab
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# This program is distributed in the hope that it will be useful,
roentgen b75cab
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
roentgen b75cab
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
roentgen b75cab
# PARTICULAR PURPOSE.
roentgen b75cab
roentgen b75cab
m4_ifndef([AC_AUTOCONF_VERSION],
roentgen b75cab
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
roentgen b75cab
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
roentgen b75cab
[m4_warning([this file was generated for autoconf 2.69.
roentgen b75cab
You have another version of autoconf.  It may work, but is not guaranteed to.
roentgen b75cab
If you have problems, you may need to regenerate the build system entirely.
roentgen b75cab
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
roentgen b75cab
roentgen b75cab
# Copyright (C) 2002-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_AUTOMAKE_VERSION(VERSION)
roentgen b75cab
# ----------------------------
roentgen b75cab
# Automake X.Y traces this macro to ensure aclocal.m4 has been
roentgen b75cab
# generated from the m4 files accompanying Automake X.Y.
roentgen b75cab
# (This private macro should not be called outside this file.)
roentgen b75cab
AC_DEFUN([AM_AUTOMAKE_VERSION],
roentgen b75cab
[am__api_version='1.12'
roentgen b75cab
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
roentgen b75cab
dnl require some minimum version.  Point them to the right macro.
roentgen b75cab
m4_if([$1], [1.12.4], [],
roentgen b75cab
      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
# _AM_AUTOCONF_VERSION(VERSION)
roentgen b75cab
# -----------------------------
roentgen b75cab
# aclocal traces this macro to find the Autoconf version.
roentgen b75cab
# This is a private macro too.  Using m4_define simplifies
roentgen b75cab
# the logic in aclocal, which can simply ignore this definition.
roentgen b75cab
m4_define([_AM_AUTOCONF_VERSION], [])
roentgen b75cab
roentgen b75cab
# AM_SET_CURRENT_AUTOMAKE_VERSION
roentgen b75cab
# -------------------------------
roentgen b75cab
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
roentgen b75cab
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
roentgen b75cab
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
roentgen b75cab
[AM_AUTOMAKE_VERSION([1.12.4])dnl
roentgen b75cab
m4_ifndef([AC_AUTOCONF_VERSION],
roentgen b75cab
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
roentgen b75cab
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
roentgen b75cab
roentgen b75cab
# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
roentgen b75cab
# $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
roentgen b75cab
# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
roentgen b75cab
#
roentgen b75cab
# Of course, Automake must honor this variable whenever it calls a
roentgen b75cab
# tool from the auxiliary directory.  The problem is that $srcdir (and
roentgen b75cab
# therefore $ac_aux_dir as well) can be either absolute or relative,
roentgen b75cab
# depending on how configure is run.  This is pretty annoying, since
roentgen b75cab
# it makes $ac_aux_dir quite unusable in subdirectories: in the top
roentgen b75cab
# source directory, any form will work fine, but in subdirectories a
roentgen b75cab
# relative path needs to be adjusted first.
roentgen b75cab
#
roentgen b75cab
# $ac_aux_dir/missing
roentgen b75cab
#    fails when called from a subdirectory if $ac_aux_dir is relative
roentgen b75cab
# $top_srcdir/$ac_aux_dir/missing
roentgen b75cab
#    fails if $ac_aux_dir is absolute,
roentgen b75cab
#    fails when called from a subdirectory in a VPATH build with
roentgen b75cab
#          a relative $ac_aux_dir
roentgen b75cab
#
roentgen b75cab
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
roentgen b75cab
# are both prefixed by $srcdir.  In an in-source build this is usually
roentgen b75cab
# harmless because $srcdir is '.', but things will broke when you
roentgen b75cab
# start a VPATH build or use an absolute $srcdir.
roentgen b75cab
#
roentgen b75cab
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
roentgen b75cab
# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
roentgen b75cab
#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
roentgen b75cab
# and then we would define $MISSING as
roentgen b75cab
#   MISSING="\${SHELL} $am_aux_dir/missing"
roentgen b75cab
# This will work as long as MISSING is not called from configure, because
roentgen b75cab
# unfortunately $(top_srcdir) has no meaning in configure.
roentgen b75cab
# However there are other variables, like CC, which are often used in
roentgen b75cab
# configure, and could therefore not use this "fixed" $ac_aux_dir.
roentgen b75cab
#
roentgen b75cab
# Another solution, used here, is to always expand $ac_aux_dir to an
roentgen b75cab
# absolute PATH.  The drawback is that using absolute paths prevent a
roentgen b75cab
# configured tree to be moved without reconfiguration.
roentgen b75cab
roentgen b75cab
AC_DEFUN([AM_AUX_DIR_EXPAND],
roentgen b75cab
[dnl Rely on autoconf to set up CDPATH properly.
roentgen b75cab
AC_PREREQ([2.50])dnl
roentgen b75cab
# expand $ac_aux_dir to an absolute path
roentgen b75cab
am_aux_dir=`cd $ac_aux_dir && pwd`
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
# AM_CONDITIONAL                                            -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 1997-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
roentgen b75cab
# -------------------------------------
roentgen b75cab
# Define a conditional.
roentgen b75cab
AC_DEFUN([AM_CONDITIONAL],
roentgen b75cab
[AC_PREREQ([2.52])dnl
roentgen b75cab
 m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
roentgen b75cab
       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
roentgen b75cab
AC_SUBST([$1_TRUE])dnl
roentgen b75cab
AC_SUBST([$1_FALSE])dnl
roentgen b75cab
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
roentgen b75cab
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
roentgen b75cab
m4_define([_AM_COND_VALUE_$1], [$2])dnl
roentgen b75cab
if $2; then
roentgen b75cab
  $1_TRUE=
roentgen b75cab
  $1_FALSE='#'
roentgen b75cab
else
roentgen b75cab
  $1_TRUE='#'
roentgen b75cab
  $1_FALSE=
roentgen b75cab
fi
roentgen b75cab
AC_CONFIG_COMMANDS_PRE(
roentgen b75cab
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
roentgen b75cab
  AC_MSG_ERROR([[conditional "$1" was never defined.
roentgen b75cab
Usually this means the macro was only invoked conditionally.]])
roentgen b75cab
fi])])
roentgen b75cab
roentgen b75cab
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
roentgen b75cab
# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
roentgen b75cab
# written in clear, in which case automake, when reading aclocal.m4,
roentgen b75cab
# will think it sees a *use*, and therefore will trigger all it's
roentgen b75cab
# C support machinery.  Also note that it means that autoscan, seeing
roentgen b75cab
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
roentgen b75cab
roentgen b75cab
roentgen b75cab
# _AM_DEPENDENCIES(NAME)
roentgen b75cab
# ----------------------
roentgen b75cab
# See how the compiler implements dependency checking.
roentgen b75cab
# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
roentgen b75cab
# We try a few techniques and use that to set a single cache variable.
roentgen b75cab
#
roentgen b75cab
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
roentgen b75cab
# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
roentgen b75cab
# dependency, and given that the user is not expected to run this macro,
roentgen b75cab
# just rely on AC_PROG_CC.
roentgen b75cab
AC_DEFUN([_AM_DEPENDENCIES],
roentgen b75cab
[AC_REQUIRE([AM_SET_DEPDIR])dnl
roentgen b75cab
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
roentgen b75cab
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
roentgen b75cab
AC_REQUIRE([AM_DEP_TRACK])dnl
roentgen b75cab
roentgen b75cab
m4_if([$1], [CC],   [depcc="$CC"   am_compiler_list=],
roentgen b75cab
      [$1], [CXX],  [depcc="$CXX"  am_compiler_list=],
roentgen b75cab
      [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
roentgen b75cab
      [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
roentgen b75cab
      [$1], [UPC],  [depcc="$UPC"  am_compiler_list=],
roentgen b75cab
      [$1], [GCJ],  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
roentgen b75cab
                    [depcc="$$1"   am_compiler_list=])
roentgen b75cab
roentgen b75cab
AC_CACHE_CHECK([dependency style of $depcc],
roentgen b75cab
               [am_cv_$1_dependencies_compiler_type],
roentgen b75cab
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
roentgen b75cab
  # We make a subdir and do the tests there.  Otherwise we can end up
roentgen b75cab
  # making bogus files that we don't know about and never remove.  For
roentgen b75cab
  # instance it was reported that on HP-UX the gcc test will end up
roentgen b75cab
  # making a dummy file named 'D' -- because '-MD' means "put the output
roentgen b75cab
  # in D".
roentgen b75cab
  rm -rf conftest.dir
roentgen b75cab
  mkdir conftest.dir
roentgen b75cab
  # Copy depcomp to subdir because otherwise we won't find it if we're
roentgen b75cab
  # using a relative directory.
roentgen b75cab
  cp "$am_depcomp" conftest.dir
roentgen b75cab
  cd conftest.dir
roentgen b75cab
  # We will build objects and dependencies in a subdirectory because
roentgen b75cab
  # it helps to detect inapplicable dependency modes.  For instance
roentgen b75cab
  # both Tru64's cc and ICC support -MD to output dependencies as a
roentgen b75cab
  # side effect of compilation, but ICC will put the dependencies in
roentgen b75cab
  # the current directory while Tru64 will put them in the object
roentgen b75cab
  # directory.
roentgen b75cab
  mkdir sub
roentgen b75cab
roentgen b75cab
  am_cv_$1_dependencies_compiler_type=none
roentgen b75cab
  if test "$am_compiler_list" = ""; then
roentgen b75cab
     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
roentgen b75cab
  fi
roentgen b75cab
  am__universal=false
roentgen b75cab
  m4_case([$1], [CC],
roentgen b75cab
    [case " $depcc " in #(
roentgen b75cab
     *\ -arch\ *\ -arch\ *) am__universal=true ;;
roentgen b75cab
     esac],
roentgen b75cab
    [CXX],
roentgen b75cab
    [case " $depcc " in #(
roentgen b75cab
     *\ -arch\ *\ -arch\ *) am__universal=true ;;
roentgen b75cab
     esac])
roentgen b75cab
roentgen b75cab
  for depmode in $am_compiler_list; do
roentgen b75cab
    # Setup a source with many dependencies, because some compilers
roentgen b75cab
    # like to wrap large dependency lists on column 80 (with \), and
roentgen b75cab
    # we should not choose a depcomp mode which is confused by this.
roentgen b75cab
    #
roentgen b75cab
    # We need to recreate these files for each test, as the compiler may
roentgen b75cab
    # overwrite some of them when testing with obscure command lines.
roentgen b75cab
    # This happens at least with the AIX C compiler.
roentgen b75cab
    : > sub/conftest.c
roentgen b75cab
    for i in 1 2 3 4 5 6; do
roentgen b75cab
      echo '#include "conftst'$i'.h"' >> sub/conftest.c
roentgen b75cab
      # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
roentgen b75cab
      # Solaris 10 /bin/sh.
roentgen b75cab
      echo '/* dummy */' > sub/conftst$i.h
roentgen b75cab
    done
roentgen b75cab
    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
roentgen b75cab
roentgen b75cab
    # We check with '-c' and '-o' for the sake of the "dashmstdout"
roentgen b75cab
    # mode.  It turns out that the SunPro C++ compiler does not properly
roentgen b75cab
    # handle '-M -o', and we need to detect this.  Also, some Intel
roentgen b75cab
    # versions had trouble with output in subdirs.
roentgen b75cab
    am__obj=sub/conftest.${OBJEXT-o}
roentgen b75cab
    am__minus_obj="-o $am__obj"
roentgen b75cab
    case $depmode in
roentgen b75cab
    gcc)
roentgen b75cab
      # This depmode causes a compiler race in universal mode.
roentgen b75cab
      test "$am__universal" = false || continue
roentgen b75cab
      ;;
roentgen b75cab
    nosideeffect)
roentgen b75cab
      # After this tag, mechanisms are not by side-effect, so they'll
roentgen b75cab
      # only be used when explicitly requested.
roentgen b75cab
      if test "x$enable_dependency_tracking" = xyes; then
roentgen b75cab
	continue
roentgen b75cab
      else
roentgen b75cab
	break
roentgen b75cab
      fi
roentgen b75cab
      ;;
roentgen b75cab
    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
roentgen b75cab
      # This compiler won't grok '-c -o', but also, the minuso test has
roentgen b75cab
      # not run yet.  These depmodes are late enough in the game, and
roentgen b75cab
      # so weak that their functioning should not be impacted.
roentgen b75cab
      am__obj=conftest.${OBJEXT-o}
roentgen b75cab
      am__minus_obj=
roentgen b75cab
      ;;
roentgen b75cab
    none) break ;;
roentgen b75cab
    esac
roentgen b75cab
    if depmode=$depmode \
roentgen b75cab
       source=sub/conftest.c object=$am__obj \
roentgen b75cab
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
roentgen b75cab
       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
roentgen b75cab
         >/dev/null 2>conftest.err &&
roentgen b75cab
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
roentgen b75cab
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
roentgen b75cab
       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
roentgen b75cab
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
roentgen b75cab
      # icc doesn't choke on unknown options, it will just issue warnings
roentgen b75cab
      # or remarks (even with -Werror).  So we grep stderr for any message
roentgen b75cab
      # that says an option was ignored or not supported.
roentgen b75cab
      # When given -MP, icc 7.0 and 7.1 complain thusly:
roentgen b75cab
      #   icc: Command line warning: ignoring option '-M'; no argument required
roentgen b75cab
      # The diagnosis changed in icc 8.0:
roentgen b75cab
      #   icc: Command line remark: option '-MP' not supported
roentgen b75cab
      if (grep 'ignoring option' conftest.err ||
roentgen b75cab
          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
roentgen b75cab
        am_cv_$1_dependencies_compiler_type=$depmode
roentgen b75cab
        break
roentgen b75cab
      fi
roentgen b75cab
    fi
roentgen b75cab
  done
roentgen b75cab
roentgen b75cab
  cd ..
roentgen b75cab
  rm -rf conftest.dir
roentgen b75cab
else
roentgen b75cab
  am_cv_$1_dependencies_compiler_type=none
roentgen b75cab
fi
roentgen b75cab
])
roentgen b75cab
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
roentgen b75cab
AM_CONDITIONAL([am__fastdep$1], [
roentgen b75cab
  test "x$enable_dependency_tracking" != xno \
roentgen b75cab
  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
roentgen b75cab
# AM_SET_DEPDIR
roentgen b75cab
# -------------
roentgen b75cab
# Choose a directory name for dependency files.
roentgen b75cab
# This macro is AC_REQUIREd in _AM_DEPENDENCIES.
roentgen b75cab
AC_DEFUN([AM_SET_DEPDIR],
roentgen b75cab
[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
roentgen b75cab
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
roentgen b75cab
# AM_DEP_TRACK
roentgen b75cab
# ------------
roentgen b75cab
AC_DEFUN([AM_DEP_TRACK],
roentgen b75cab
[AC_ARG_ENABLE([dependency-tracking], [dnl
roentgen b75cab
AS_HELP_STRING(
roentgen b75cab
  [--enable-dependency-tracking],
roentgen b75cab
  [do not reject slow dependency extractors])
roentgen b75cab
AS_HELP_STRING(
roentgen b75cab
  [--disable-dependency-tracking],
roentgen b75cab
  [speeds up one-time build])])
roentgen b75cab
if test "x$enable_dependency_tracking" != xno; then
roentgen b75cab
  am_depcomp="$ac_aux_dir/depcomp"
roentgen b75cab
  AMDEPBACKSLASH='\'
roentgen b75cab
  am__nodep='_no'
roentgen b75cab
fi
roentgen b75cab
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
roentgen b75cab
AC_SUBST([AMDEPBACKSLASH])dnl
roentgen b75cab
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
roentgen b75cab
AC_SUBST([am__nodep])dnl
roentgen b75cab
_AM_SUBST_NOTMAKE([am__nodep])dnl
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
# Generate code to set up dependency tracking.              -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
roentgen b75cab
# _AM_OUTPUT_DEPENDENCY_COMMANDS
roentgen b75cab
# ------------------------------
roentgen b75cab
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
roentgen b75cab
[{
roentgen b75cab
  # Autoconf 2.62 quotes --file arguments for eval, but not when files
roentgen b75cab
  # are listed without --file.  Let's play safe and only enable the eval
roentgen b75cab
  # if we detect the quoting.
roentgen b75cab
  case $CONFIG_FILES in
roentgen b75cab
  *\'*) eval set x "$CONFIG_FILES" ;;
roentgen b75cab
  *)   set x $CONFIG_FILES ;;
roentgen b75cab
  esac
roentgen b75cab
  shift
roentgen b75cab
  for mf
roentgen b75cab
  do
roentgen b75cab
    # Strip MF so we end up with the name of the file.
roentgen b75cab
    mf=`echo "$mf" | sed -e 's/:.*$//'`
roentgen b75cab
    # Check whether this is an Automake generated Makefile or not.
roentgen b75cab
    # We used to match only the files named 'Makefile.in', but
roentgen b75cab
    # some people rename them; so instead we look at the file content.
roentgen b75cab
    # Grep'ing the first line is not enough: some people post-process
roentgen b75cab
    # each Makefile.in and add a new line on top of each file to say so.
roentgen b75cab
    # Grep'ing the whole file is not good either: AIX grep has a line
roentgen b75cab
    # limit of 2048, but all sed's we know have understand at least 4000.
roentgen b75cab
    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
roentgen b75cab
      dirpart=`AS_DIRNAME("$mf")`
roentgen b75cab
    else
roentgen b75cab
      continue
roentgen b75cab
    fi
roentgen b75cab
    # Extract the definition of DEPDIR, am__include, and am__quote
roentgen b75cab
    # from the Makefile without running 'make'.
roentgen b75cab
    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
roentgen b75cab
    test -z "$DEPDIR" && continue
roentgen b75cab
    am__include=`sed -n 's/^am__include = //p' < "$mf"`
roentgen b75cab
    test -z "am__include" && continue
roentgen b75cab
    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
roentgen b75cab
    # Find all dependency output files, they are included files with
roentgen b75cab
    # $(DEPDIR) in their names.  We invoke sed twice because it is the
roentgen b75cab
    # simplest approach to changing $(DEPDIR) to its actual value in the
roentgen b75cab
    # expansion.
roentgen b75cab
    for file in `sed -n "
roentgen b75cab
      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
roentgen b75cab
	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
roentgen b75cab
      # Make sure the directory exists.
roentgen b75cab
      test -f "$dirpart/$file" && continue
roentgen b75cab
      fdir=`AS_DIRNAME(["$file"])`
roentgen b75cab
      AS_MKDIR_P([$dirpart/$fdir])
roentgen b75cab
      # echo "creating $dirpart/$file"
roentgen b75cab
      echo '# dummy' > "$dirpart/$file"
roentgen b75cab
    done
roentgen b75cab
  done
roentgen b75cab
}
roentgen b75cab
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
roentgen b75cab
roentgen b75cab
roentgen b75cab
# AM_OUTPUT_DEPENDENCY_COMMANDS
roentgen b75cab
# -----------------------------
roentgen b75cab
# This macro should only be invoked once -- use via AC_REQUIRE.
roentgen b75cab
#
roentgen b75cab
# This code is only required when automatic dependency tracking
roentgen b75cab
# is enabled.  FIXME.  This creates each '.P' file that we will
roentgen b75cab
# need in order to bootstrap the dependency handling code.
roentgen b75cab
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
roentgen b75cab
[AC_CONFIG_COMMANDS([depfiles],
roentgen b75cab
     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
roentgen b75cab
     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
# Do all the work for Automake.                             -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 1996-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# This macro actually does too much.  Some checks are only needed if
roentgen b75cab
# your package does certain things.  But this isn't really a big deal.
roentgen b75cab
roentgen b75cab
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
roentgen b75cab
# AM_INIT_AUTOMAKE([OPTIONS])
roentgen b75cab
# -----------------------------------------------
roentgen b75cab
# The call with PACKAGE and VERSION arguments is the old style
roentgen b75cab
# call (pre autoconf-2.50), which is being phased out.  PACKAGE
roentgen b75cab
# and VERSION should now be passed to AC_INIT and removed from
roentgen b75cab
# the call to AM_INIT_AUTOMAKE.
roentgen b75cab
# We support both call styles for the transition.  After
roentgen b75cab
# the next Automake release, Autoconf can make the AC_INIT
roentgen b75cab
# arguments mandatory, and then we can depend on a new Autoconf
roentgen b75cab
# release and drop the old call support.
roentgen b75cab
AC_DEFUN([AM_INIT_AUTOMAKE],
roentgen b75cab
[AC_PREREQ([2.62])dnl
roentgen b75cab
dnl Autoconf wants to disallow AM_ names.  We explicitly allow
roentgen b75cab
dnl the ones we care about.
roentgen b75cab
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
roentgen b75cab
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
roentgen b75cab
AC_REQUIRE([AC_PROG_INSTALL])dnl
roentgen b75cab
if test "`cd $srcdir && pwd`" != "`pwd`"; then
roentgen b75cab
  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
roentgen b75cab
  # is not polluted with repeated "-I."
roentgen b75cab
  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
roentgen b75cab
  # test to see if srcdir already configured
roentgen b75cab
  if test -f $srcdir/config.status; then
roentgen b75cab
    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
roentgen b75cab
  fi
roentgen b75cab
fi
roentgen b75cab
roentgen b75cab
# test whether we have cygpath
roentgen b75cab
if test -z "$CYGPATH_W"; then
roentgen b75cab
  if (cygpath --version) >/dev/null 2>/dev/null; then
roentgen b75cab
    CYGPATH_W='cygpath -w'
roentgen b75cab
  else
roentgen b75cab
    CYGPATH_W=echo
roentgen b75cab
  fi
roentgen b75cab
fi
roentgen b75cab
AC_SUBST([CYGPATH_W])
roentgen b75cab
roentgen b75cab
# Define the identity of the package.
roentgen b75cab
dnl Distinguish between old-style and new-style calls.
roentgen b75cab
m4_ifval([$2],
roentgen b75cab
[AC_DIAGNOSE([obsolete],
roentgen b75cab
[$0: two- and three-arguments forms are deprecated.  For more info, see:
roentgen b75cab
http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation])
roentgen b75cab
m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
roentgen b75cab
 AC_SUBST([PACKAGE], [$1])dnl
roentgen b75cab
 AC_SUBST([VERSION], [$2])],
roentgen b75cab
[_AM_SET_OPTIONS([$1])dnl
roentgen b75cab
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
roentgen b75cab
m4_if(
roentgen b75cab
  m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
roentgen b75cab
  [ok:ok],,
roentgen b75cab
  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
roentgen b75cab
 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
roentgen b75cab
 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
roentgen b75cab
roentgen b75cab
_AM_IF_OPTION([no-define],,
roentgen b75cab
[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
roentgen b75cab
 AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
roentgen b75cab
roentgen b75cab
# Some tools Automake needs.
roentgen b75cab
AC_REQUIRE([AM_SANITY_CHECK])dnl
roentgen b75cab
AC_REQUIRE([AC_ARG_PROGRAM])dnl
roentgen b75cab
AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
roentgen b75cab
AM_MISSING_PROG([AUTOCONF], [autoconf])
roentgen b75cab
AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
roentgen b75cab
AM_MISSING_PROG([AUTOHEADER], [autoheader])
roentgen b75cab
AM_MISSING_PROG([MAKEINFO], [makeinfo])
roentgen b75cab
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
roentgen b75cab
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
roentgen b75cab
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
roentgen b75cab
# For better backward compatibility.  To be removed once Automake 1.9.x
roentgen b75cab
# dies out for good.  For more background, see:
roentgen b75cab
# <http: 2012-07="" archive="" automake="" html="" lists.gnu.org="" msg00001.html=""></http:>
roentgen b75cab
# <http: 2012-07="" archive="" automake="" html="" lists.gnu.org="" msg00014.html=""></http:>
roentgen b75cab
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
roentgen b75cab
# We need awk for the "check" target.  The system "awk" is bad on
roentgen b75cab
# some platforms.
roentgen b75cab
AC_REQUIRE([AC_PROG_AWK])dnl
roentgen b75cab
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
roentgen b75cab
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
roentgen b75cab
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
roentgen b75cab
	      [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
roentgen b75cab
			     [_AM_PROG_TAR([v7])])])
roentgen b75cab
_AM_IF_OPTION([no-dependencies],,
roentgen b75cab
[AC_PROVIDE_IFELSE([AC_PROG_CC],
roentgen b75cab
		  [_AM_DEPENDENCIES([CC])],
roentgen b75cab
		  [m4_define([AC_PROG_CC],
roentgen b75cab
			     m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
roentgen b75cab
AC_PROVIDE_IFELSE([AC_PROG_CXX],
roentgen b75cab
		  [_AM_DEPENDENCIES([CXX])],
roentgen b75cab
		  [m4_define([AC_PROG_CXX],
roentgen b75cab
			     m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
roentgen b75cab
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
roentgen b75cab
		  [_AM_DEPENDENCIES([OBJC])],
roentgen b75cab
		  [m4_define([AC_PROG_OBJC],
roentgen b75cab
			     m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
roentgen b75cab
dnl Support for Objective C++ was only introduced in Autoconf 2.65,
roentgen b75cab
dnl but we still cater to Autoconf 2.62.
roentgen b75cab
m4_ifdef([AC_PROG_OBJCXX],
roentgen b75cab
[AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
roentgen b75cab
		  [_AM_DEPENDENCIES([OBJCXX])],
roentgen b75cab
		  [m4_define([AC_PROG_OBJCXX],
roentgen b75cab
			     m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])])dnl
roentgen b75cab
])
roentgen b75cab
_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
roentgen b75cab
dnl The 'parallel-tests' driver may need to know about EXEEXT, so add the
roentgen b75cab
dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
roentgen b75cab
dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
roentgen b75cab
AC_CONFIG_COMMANDS_PRE(dnl
roentgen b75cab
[m4_provide_if([_AM_COMPILER_EXEEXT],
roentgen b75cab
  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
roentgen b75cab
dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
roentgen b75cab
dnl mangled by Autoconf and run in a shell conditional statement.
roentgen b75cab
m4_define([_AC_COMPILER_EXEEXT],
roentgen b75cab
m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
roentgen b75cab
roentgen b75cab
roentgen b75cab
# When config.status generates a header, we must update the stamp-h file.
roentgen b75cab
# This file resides in the same directory as the config header
roentgen b75cab
# that is generated.  The stamp files are numbered to have different names.
roentgen b75cab
roentgen b75cab
# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
roentgen b75cab
# loop where config.status creates the headers, so we can generate
roentgen b75cab
# our stamp files there.
roentgen b75cab
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
roentgen b75cab
[# Compute $1's index in $config_headers.
roentgen b75cab
_am_arg=$1
roentgen b75cab
_am_stamp_count=1
roentgen b75cab
for _am_header in $config_headers :; do
roentgen b75cab
  case $_am_header in
roentgen b75cab
    $_am_arg | $_am_arg:* )
roentgen b75cab
      break ;;
roentgen b75cab
    * )
roentgen b75cab
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
roentgen b75cab
  esac
roentgen b75cab
done
roentgen b75cab
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
roentgen b75cab
roentgen b75cab
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_PROG_INSTALL_SH
roentgen b75cab
# ------------------
roentgen b75cab
# Define $install_sh.
roentgen b75cab
AC_DEFUN([AM_PROG_INSTALL_SH],
roentgen b75cab
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
roentgen b75cab
if test x"${install_sh}" != xset; then
roentgen b75cab
  case $am_aux_dir in
roentgen b75cab
  *\ * | *\	*)
roentgen b75cab
    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
roentgen b75cab
  *)
roentgen b75cab
    install_sh="\${SHELL} $am_aux_dir/install-sh"
roentgen b75cab
  esac
roentgen b75cab
fi
roentgen b75cab
AC_SUBST([install_sh])])
roentgen b75cab
roentgen b75cab
# Copyright (C) 2003-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# Check whether the underlying file-system supports filenames
roentgen b75cab
# with a leading dot.  For instance MS-DOS doesn't.
roentgen b75cab
AC_DEFUN([AM_SET_LEADING_DOT],
roentgen b75cab
[rm -rf .tst 2>/dev/null
roentgen b75cab
mkdir .tst 2>/dev/null
roentgen b75cab
if test -d .tst; then
roentgen b75cab
  am__leading_dot=.
roentgen b75cab
else
roentgen b75cab
  am__leading_dot=_
roentgen b75cab
fi
roentgen b75cab
rmdir .tst 2>/dev/null
roentgen b75cab
AC_SUBST([am__leading_dot])])
roentgen b75cab
roentgen b75cab
# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
roentgen b75cab
# From Jim Meyering
roentgen b75cab
roentgen b75cab
# Copyright (C) 1996-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_MAINTAINER_MODE([DEFAULT-MODE])
roentgen b75cab
# ----------------------------------
roentgen b75cab
# Control maintainer-specific portions of Makefiles.
roentgen b75cab
# Default is to disable them, unless 'enable' is passed literally.
roentgen b75cab
# For symmetry, 'disable' may be passed as well.  Anyway, the user
roentgen b75cab
# can override the default with the --enable/--disable switch.
roentgen b75cab
AC_DEFUN([AM_MAINTAINER_MODE],
roentgen b75cab
[m4_case(m4_default([$1], [disable]),
roentgen b75cab
       [enable], [m4_define([am_maintainer_other], [disable])],
roentgen b75cab
       [disable], [m4_define([am_maintainer_other], [enable])],
roentgen b75cab
       [m4_define([am_maintainer_other], [enable])
roentgen b75cab
        m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
roentgen b75cab
AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
roentgen b75cab
  dnl maintainer-mode's default is 'disable' unless 'enable' is passed
roentgen b75cab
  AC_ARG_ENABLE([maintainer-mode],
roentgen b75cab
    [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
roentgen b75cab
      am_maintainer_other[ make rules and dependencies not useful
roentgen b75cab
      (and sometimes confusing) to the casual installer])],
roentgen b75cab
    [USE_MAINTAINER_MODE=$enableval],
roentgen b75cab
    [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
roentgen b75cab
  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
roentgen b75cab
  AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
roentgen b75cab
  MAINT=$MAINTAINER_MODE_TRUE
roentgen b75cab
  AC_SUBST([MAINT])dnl
roentgen b75cab
]
roentgen b75cab
)
roentgen b75cab
roentgen b75cab
AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
roentgen b75cab
roentgen b75cab
# Check to see how 'make' treats includes.	            -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_MAKE_INCLUDE()
roentgen b75cab
# -----------------
roentgen b75cab
# Check to see how make treats includes.
roentgen b75cab
AC_DEFUN([AM_MAKE_INCLUDE],
roentgen b75cab
[am_make=${MAKE-make}
roentgen b75cab
cat > confinc << 'END'
roentgen b75cab
am__doit:
roentgen b75cab
	@echo this is the am__doit target
roentgen b75cab
.PHONY: am__doit
roentgen b75cab
END
roentgen b75cab
# If we don't find an include directive, just comment out the code.
roentgen b75cab
AC_MSG_CHECKING([for style of include used by $am_make])
roentgen b75cab
am__include="#"
roentgen b75cab
am__quote=
roentgen b75cab
_am_result=none
roentgen b75cab
# First try GNU make style include.
roentgen b75cab
echo "include confinc" > confmf
roentgen b75cab
# Ignore all kinds of additional output from 'make'.
roentgen b75cab
case `$am_make -s -f confmf 2> /dev/null` in #(
roentgen b75cab
*the\ am__doit\ target*)
roentgen b75cab
  am__include=include
roentgen b75cab
  am__quote=
roentgen b75cab
  _am_result=GNU
roentgen b75cab
  ;;
roentgen b75cab
esac
roentgen b75cab
# Now try BSD make style include.
roentgen b75cab
if test "$am__include" = "#"; then
roentgen b75cab
   echo '.include "confinc"' > confmf
roentgen b75cab
   case `$am_make -s -f confmf 2> /dev/null` in #(
roentgen b75cab
   *the\ am__doit\ target*)
roentgen b75cab
     am__include=.include
roentgen b75cab
     am__quote="\""
roentgen b75cab
     _am_result=BSD
roentgen b75cab
     ;;
roentgen b75cab
   esac
roentgen b75cab
fi
roentgen b75cab
AC_SUBST([am__include])
roentgen b75cab
AC_SUBST([am__quote])
roentgen b75cab
AC_MSG_RESULT([$_am_result])
roentgen b75cab
rm -f confinc confmf
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_PROG_CC_C_O
roentgen b75cab
# --------------
roentgen b75cab
# Like AC_PROG_CC_C_O, but changed for automake.
roentgen b75cab
AC_DEFUN([AM_PROG_CC_C_O],
roentgen b75cab
[AC_REQUIRE([AC_PROG_CC_C_O])dnl
roentgen b75cab
AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
roentgen b75cab
AC_REQUIRE_AUX_FILE([compile])dnl
roentgen b75cab
# FIXME: we rely on the cache variable name because
roentgen b75cab
# there is no other way.
roentgen b75cab
set dummy $CC
roentgen b75cab
am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
roentgen b75cab
eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
roentgen b75cab
if test "$am_t" != yes; then
roentgen b75cab
   # Losing compiler, so override with the script.
roentgen b75cab
   # FIXME: It is wrong to rewrite CC.
roentgen b75cab
   # But if we don't then we get into trouble of one sort or another.
roentgen b75cab
   # A longer-term fix would be to have automake use am__CC in this case,
roentgen b75cab
   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
roentgen b75cab
   CC="$am_aux_dir/compile $CC"
roentgen b75cab
fi
roentgen b75cab
dnl Make sure AC_PROG_CC is never called again, or it will override our
roentgen b75cab
dnl setting of CC.
roentgen b75cab
m4_define([AC_PROG_CC],
roentgen b75cab
          [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 1997-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_MISSING_PROG(NAME, PROGRAM)
roentgen b75cab
# ------------------------------
roentgen b75cab
AC_DEFUN([AM_MISSING_PROG],
roentgen b75cab
[AC_REQUIRE([AM_MISSING_HAS_RUN])
roentgen b75cab
$1=${$1-"${am_missing_run}$2"}
roentgen b75cab
AC_SUBST($1)])
roentgen b75cab
roentgen b75cab
# AM_MISSING_HAS_RUN
roentgen b75cab
# ------------------
roentgen b75cab
# Define MISSING if not defined so far and test if it supports --run.
roentgen b75cab
# If it does, set am_missing_run to use it, otherwise, to nothing.
roentgen b75cab
AC_DEFUN([AM_MISSING_HAS_RUN],
roentgen b75cab
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
roentgen b75cab
AC_REQUIRE_AUX_FILE([missing])dnl
roentgen b75cab
if test x"${MISSING+set}" != xset; then
roentgen b75cab
  case $am_aux_dir in
roentgen b75cab
  *\ * | *\	*)
roentgen b75cab
    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
roentgen b75cab
  *)
roentgen b75cab
    MISSING="\${SHELL} $am_aux_dir/missing" ;;
roentgen b75cab
  esac
roentgen b75cab
fi
roentgen b75cab
# Use eval to expand $SHELL
roentgen b75cab
if eval "$MISSING --run true"; then
roentgen b75cab
  am_missing_run="$MISSING --run "
roentgen b75cab
else
roentgen b75cab
  am_missing_run=
roentgen b75cab
  AC_MSG_WARN(['missing' script is too old or missing])
roentgen b75cab
fi
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
# Helper functions for option handling.                     -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# _AM_MANGLE_OPTION(NAME)
roentgen b75cab
# -----------------------
roentgen b75cab
AC_DEFUN([_AM_MANGLE_OPTION],
roentgen b75cab
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
roentgen b75cab
roentgen b75cab
# _AM_SET_OPTION(NAME)
roentgen b75cab
# --------------------
roentgen b75cab
# Set option NAME.  Presently that only means defining a flag for this option.
roentgen b75cab
AC_DEFUN([_AM_SET_OPTION],
roentgen b75cab
[m4_define(_AM_MANGLE_OPTION([$1]), [1])])
roentgen b75cab
roentgen b75cab
# _AM_SET_OPTIONS(OPTIONS)
roentgen b75cab
# ------------------------
roentgen b75cab
# OPTIONS is a space-separated list of Automake options.
roentgen b75cab
AC_DEFUN([_AM_SET_OPTIONS],
roentgen b75cab
[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
roentgen b75cab
roentgen b75cab
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
roentgen b75cab
# -------------------------------------------
roentgen b75cab
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
roentgen b75cab
AC_DEFUN([_AM_IF_OPTION],
roentgen b75cab
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
roentgen b75cab
roentgen b75cab
# Check to make sure that the build environment is sane.    -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 1996-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_SANITY_CHECK
roentgen b75cab
# ---------------
roentgen b75cab
AC_DEFUN([AM_SANITY_CHECK],
roentgen b75cab
[AC_MSG_CHECKING([whether build environment is sane])
roentgen b75cab
# Reject unsafe characters in $srcdir or the absolute working directory
roentgen b75cab
# name.  Accept space and tab only in the latter.
roentgen b75cab
am_lf='
roentgen b75cab
'
roentgen b75cab
case `pwd` in
roentgen b75cab
  *[[\\\"\#\$\&\'\`$am_lf]]*)
roentgen b75cab
    AC_MSG_ERROR([unsafe absolute working directory name]);;
roentgen b75cab
esac
roentgen b75cab
case $srcdir in
roentgen b75cab
  *[[\\\"\#\$\&\'\`$am_lf\ \	]]*)
roentgen b75cab
    AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
roentgen b75cab
esac
roentgen b75cab
roentgen b75cab
# Do 'set' in a subshell so we don't clobber the current shell's
roentgen b75cab
# arguments.  Must try -L first in case configure is actually a
roentgen b75cab
# symlink; some systems play weird games with the mod time of symlinks
roentgen b75cab
# (eg FreeBSD returns the mod time of the symlink's containing
roentgen b75cab
# directory).
roentgen b75cab
if (
roentgen b75cab
   am_has_slept=no
roentgen b75cab
   for am_try in 1 2; do
roentgen b75cab
     echo "timestamp, slept: $am_has_slept" > conftest.file
roentgen b75cab
     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
roentgen b75cab
     if test "$[*]" = "X"; then
roentgen b75cab
	# -L didn't work.
roentgen b75cab
	set X `ls -t "$srcdir/configure" conftest.file`
roentgen b75cab
     fi
roentgen b75cab
     if test "$[*]" != "X $srcdir/configure conftest.file" \
roentgen b75cab
	&& test "$[*]" != "X conftest.file $srcdir/configure"; then
roentgen b75cab
roentgen b75cab
	# If neither matched, then we have a broken ls.  This can happen
roentgen b75cab
	# if, for instance, CONFIG_SHELL is bash and it inherits a
roentgen b75cab
	# broken ls alias from the environment.  This has actually
roentgen b75cab
	# happened.  Such a system could not be considered "sane".
roentgen b75cab
	AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
roentgen b75cab
  alias in your environment])
roentgen b75cab
     fi
roentgen b75cab
     if test "$[2]" = conftest.file || test $am_try -eq 2; then
roentgen b75cab
       break
roentgen b75cab
     fi
roentgen b75cab
     # Just in case.
roentgen b75cab
     sleep 1
roentgen b75cab
     am_has_slept=yes
roentgen b75cab
   done
roentgen b75cab
   test "$[2]" = conftest.file
roentgen b75cab
   )
roentgen b75cab
then
roentgen b75cab
   # Ok.
roentgen b75cab
   :
roentgen b75cab
else
roentgen b75cab
   AC_MSG_ERROR([newly created file is older than distributed files!
roentgen b75cab
Check your system clock])
roentgen b75cab
fi
roentgen b75cab
AC_MSG_RESULT([yes])
roentgen b75cab
# If we didn't sleep, we still need to ensure time stamps of config.status and
roentgen b75cab
# generated files are strictly newer.
roentgen b75cab
am_sleep_pid=
roentgen b75cab
if grep 'slept: no' conftest.file >/dev/null 2>&1; then
roentgen b75cab
  ( sleep 1 ) &
roentgen b75cab
  am_sleep_pid=$!
roentgen b75cab
fi
roentgen b75cab
AC_CONFIG_COMMANDS_PRE(
roentgen b75cab
  [AC_MSG_CHECKING([that generated files are newer than configure])
roentgen b75cab
   if test -n "$am_sleep_pid"; then
roentgen b75cab
     # Hide warnings about reused PIDs.
roentgen b75cab
     wait $am_sleep_pid 2>/dev/null
roentgen b75cab
   fi
roentgen b75cab
   AC_MSG_RESULT([done])])
roentgen b75cab
rm -f conftest.file
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
# Copyright (C) 2009-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_SILENT_RULES([DEFAULT])
roentgen b75cab
# --------------------------
roentgen b75cab
# Enable less verbose build rules; with the default set to DEFAULT
roentgen b75cab
# ("yes" being less verbose, "no" or empty being verbose).
roentgen b75cab
AC_DEFUN([AM_SILENT_RULES],
roentgen b75cab
[AC_ARG_ENABLE([silent-rules], [dnl
roentgen b75cab
AS_HELP_STRING(
roentgen b75cab
  [--enable-silent-rules],
roentgen b75cab
  [less verbose build output (undo: "make V=1")])
roentgen b75cab
AS_HELP_STRING(
roentgen b75cab
  [--disable-silent-rules],
roentgen b75cab
  [verbose build output (undo: "make V=0")])dnl
roentgen b75cab
])
roentgen b75cab
case $enable_silent_rules in @%:@ (((
roentgen b75cab
  yes) AM_DEFAULT_VERBOSITY=0;;
roentgen b75cab
   no) AM_DEFAULT_VERBOSITY=1;;
roentgen b75cab
    *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
roentgen b75cab
esac
roentgen b75cab
dnl
roentgen b75cab
dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
roentgen b75cab
dnl do not support nested variable expansions.
roentgen b75cab
dnl See automake bug#9928 and bug#10237.
roentgen b75cab
am_make=${MAKE-make}
roentgen b75cab
AC_CACHE_CHECK([whether $am_make supports nested variables],
roentgen b75cab
   [am_cv_make_support_nested_variables],
roentgen b75cab
   [if AS_ECHO([['TRUE=$(BAR$(V))
roentgen b75cab
BAR0=false
roentgen b75cab
BAR1=true
roentgen b75cab
V=1
roentgen b75cab
am__doit:
roentgen b75cab
	@$(TRUE)
roentgen b75cab
.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
roentgen b75cab
  am_cv_make_support_nested_variables=yes
roentgen b75cab
else
roentgen b75cab
  am_cv_make_support_nested_variables=no
roentgen b75cab
fi])
roentgen b75cab
if test $am_cv_make_support_nested_variables = yes; then
roentgen b75cab
  dnl Using '$V' instead of '$(V)' breaks IRIX make.
roentgen b75cab
  AM_V='$(V)'
roentgen b75cab
  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
roentgen b75cab
else
roentgen b75cab
  AM_V=$AM_DEFAULT_VERBOSITY
roentgen b75cab
  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
roentgen b75cab
fi
roentgen b75cab
AC_SUBST([AM_V])dnl
roentgen b75cab
AM_SUBST_NOTMAKE([AM_V])dnl
roentgen b75cab
AC_SUBST([AM_DEFAULT_V])dnl
roentgen b75cab
AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
roentgen b75cab
AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
roentgen b75cab
AM_BACKSLASH='\'
roentgen b75cab
AC_SUBST([AM_BACKSLASH])dnl
roentgen b75cab
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
roentgen b75cab
])
roentgen b75cab
roentgen b75cab
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# AM_PROG_INSTALL_STRIP
roentgen b75cab
# ---------------------
roentgen b75cab
# One issue with vendor 'install' (even GNU) is that you can't
roentgen b75cab
# specify the program used to strip binaries.  This is especially
roentgen b75cab
# annoying in cross-compiling environments, where the build's strip
roentgen b75cab
# is unlikely to handle the host's binaries.
roentgen b75cab
# Fortunately install-sh will honor a STRIPPROG variable, so we
roentgen b75cab
# always use install-sh in "make install-strip", and initialize
roentgen b75cab
# STRIPPROG with the value of the STRIP variable (set by the user).
roentgen b75cab
AC_DEFUN([AM_PROG_INSTALL_STRIP],
roentgen b75cab
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
roentgen b75cab
# Installed binaries are usually stripped using 'strip' when the user
roentgen b75cab
# run "make install-strip".  However 'strip' might not be the right
roentgen b75cab
# tool to use in cross-compilation environments, therefore Automake
roentgen b75cab
# will honor the 'STRIP' environment variable to overrule this program.
roentgen b75cab
dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
roentgen b75cab
if test "$cross_compiling" != no; then
roentgen b75cab
  AC_CHECK_TOOL([STRIP], [strip], :)
roentgen b75cab
fi
roentgen b75cab
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
roentgen b75cab
AC_SUBST([INSTALL_STRIP_PROGRAM])])
roentgen b75cab
roentgen b75cab
# Copyright (C) 2006-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# _AM_SUBST_NOTMAKE(VARIABLE)
roentgen b75cab
# ---------------------------
roentgen b75cab
# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
roentgen b75cab
# This macro is traced by Automake.
roentgen b75cab
AC_DEFUN([_AM_SUBST_NOTMAKE])
roentgen b75cab
roentgen b75cab
# AM_SUBST_NOTMAKE(VARIABLE)
roentgen b75cab
# --------------------------
roentgen b75cab
# Public sister of _AM_SUBST_NOTMAKE.
roentgen b75cab
AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
roentgen b75cab
roentgen b75cab
# Check how to create a tarball.                            -*- Autoconf -*-
roentgen b75cab
roentgen b75cab
# Copyright (C) 2004-2012 Free Software Foundation, Inc.
roentgen b75cab
#
roentgen b75cab
# This file is free software; the Free Software Foundation
roentgen b75cab
# gives unlimited permission to copy and/or distribute it,
roentgen b75cab
# with or without modifications, as long as this notice is preserved.
roentgen b75cab
roentgen b75cab
# _AM_PROG_TAR(FORMAT)
roentgen b75cab
# --------------------
roentgen b75cab
# Check how to create a tarball in format FORMAT.
roentgen b75cab
# FORMAT should be one of 'v7', 'ustar', or 'pax'.
roentgen b75cab
#
roentgen b75cab
# Substitute a variable $(am__tar) that is a command
roentgen b75cab
# writing to stdout a FORMAT-tarball containing the directory
roentgen b75cab
# $tardir.
roentgen b75cab
#     tardir=directory && $(am__tar) > result.tar
roentgen b75cab
#
roentgen b75cab
# Substitute a variable $(am__untar) that extract such
roentgen b75cab
# a tarball read from stdin.
roentgen b75cab
#     $(am__untar) < result.tar
roentgen b75cab
AC_DEFUN([_AM_PROG_TAR],
roentgen b75cab
[# Always define AMTAR for backward compatibility.  Yes, it's still used
roentgen b75cab
# in the wild :-(  We should find a proper way to deprecate it ...
roentgen b75cab
AC_SUBST([AMTAR], ['$${TAR-tar}'])
roentgen b75cab
m4_if([$1], [v7],
roentgen b75cab
     [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
roentgen b75cab
     [m4_case([$1], [ustar],, [pax],,
roentgen b75cab
              [m4_fatal([Unknown tar format])])
roentgen b75cab
AC_MSG_CHECKING([how to create a $1 tar archive])
roentgen b75cab
# Loop over all known methods to create a tar archive until one works.
roentgen b75cab
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
roentgen b75cab
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
roentgen b75cab
# Do not fold the above two line into one, because Tru64 sh and
roentgen b75cab
# Solaris sh will not grok spaces in the rhs of '-'.
roentgen b75cab
for _am_tool in $_am_tools
roentgen b75cab
do
roentgen b75cab
  case $_am_tool in
roentgen b75cab
  gnutar)
roentgen b75cab
    for _am_tar in tar gnutar gtar;
roentgen b75cab
    do
roentgen b75cab
      AM_RUN_LOG([$_am_tar --version]) && break
roentgen b75cab
    done
roentgen b75cab
    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
roentgen b75cab
    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
roentgen b75cab
    am__untar="$_am_tar -xf -"
roentgen b75cab
    ;;
roentgen b75cab
  plaintar)
roentgen b75cab
    # Must skip GNU tar: if it does not support --format= it doesn't create
roentgen b75cab
    # ustar tarball either.
roentgen b75cab
    (tar --version) >/dev/null 2>&1 && continue
roentgen b75cab
    am__tar='tar chf - "$$tardir"'
roentgen b75cab
    am__tar_='tar chf - "$tardir"'
roentgen b75cab
    am__untar='tar xf -'
roentgen b75cab
    ;;
roentgen b75cab
  pax)
roentgen b75cab
    am__tar='pax -L -x $1 -w "$$tardir"'
roentgen b75cab
    am__tar_='pax -L -x $1 -w "$tardir"'
roentgen b75cab
    am__untar='pax -r'
roentgen b75cab
    ;;
roentgen b75cab
  cpio)
roentgen b75cab
    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
roentgen b75cab
    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
roentgen b75cab
    am__untar='cpio -i -H $1 -d'
roentgen b75cab
    ;;
roentgen b75cab
  none)
roentgen b75cab
    am__tar=false
roentgen b75cab
    am__tar_=false
roentgen b75cab
    am__untar=false
roentgen b75cab
    ;;
roentgen b75cab
  esac
roentgen b75cab
roentgen b75cab
  # If the value was cached, stop now.  We just wanted to have am__tar
roentgen b75cab
  # and am__untar set.
roentgen b75cab
  test -n "${am_cv_prog_tar_$1}" && break
roentgen b75cab
roentgen b75cab
  # tar/untar a dummy directory, and stop if the command works
roentgen b75cab
  rm -rf conftest.dir
roentgen b75cab
  mkdir conftest.dir
roentgen b75cab
  echo GrepMe > conftest.dir/file
roentgen b75cab
  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
roentgen b75cab
  rm -rf conftest.dir
roentgen b75cab
  if test -s conftest.tar; then
roentgen b75cab
    AM_RUN_LOG([$am__untar 
roentgen b75cab
    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
roentgen b75cab
  fi
roentgen b75cab
done
roentgen b75cab
rm -rf conftest.dir
roentgen b75cab
roentgen b75cab
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
roentgen b75cab
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
roentgen b75cab
AC_SUBST([am__tar])
roentgen b75cab
AC_SUBST([am__untar])
roentgen b75cab
]) # _AM_PROG_TAR
roentgen b75cab
roentgen b75cab
m4_include([m4/acinclude.m4])
roentgen b75cab
m4_include([m4/libtool.m4])
roentgen b75cab
m4_include([m4/ltoptions.m4])
roentgen b75cab
m4_include([m4/ltsugar.m4])
roentgen b75cab
m4_include([m4/ltversion.m4])
roentgen b75cab
m4_include([m4/lt~obsolete.m4])