1# generated automatically by aclocal 1.10 -*- Autoconf -*-
2
3# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4# 2005, 2006  Free Software Foundation, Inc.
5# This file is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,
7# with or without modifications, as long as this notice is preserved.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12# PARTICULAR PURPOSE.
13
14
15# Copyright (C) 2002, 2003, 2005, 2006  Free Software Foundation, Inc.
16#
17# This file is free software; the Free Software Foundation
18# gives unlimited permission to copy and/or distribute it,
19# with or without modifications, as long as this notice is preserved.
20
21# AM_AUTOMAKE_VERSION(VERSION)
22# ----------------------------
23# Automake X.Y traces this macro to ensure aclocal.m4 has been
24# generated from the m4 files accompanying Automake X.Y.
25# (This private macro should not be called outside this file.)
26AC_DEFUN([AM_AUTOMAKE_VERSION],
27[am__api_version='1.10'
28dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
29dnl require some minimum version.  Point them to the right macro.
30m4_if([$1], [1.10], [],
31      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
32])
33
34# _AM_AUTOCONF_VERSION(VERSION)
35# -----------------------------
36# aclocal traces this macro to find the Autoconf version.
37# This is a private macro too.  Using m4_define simplifies
38# the logic in aclocal, which can simply ignore this definition.
39m4_define([_AM_AUTOCONF_VERSION], [])
40
41# AM_SET_CURRENT_AUTOMAKE_VERSION
42# -------------------------------
43# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
44# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
45AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
46[AM_AUTOMAKE_VERSION([1.10])dnl
47_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)])
48
49# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
50
51# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
52#
53# This file is free software; the Free Software Foundation
54# gives unlimited permission to copy and/or distribute it,
55# with or without modifications, as long as this notice is preserved.
56
57# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
58# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
59# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
60#
61# Of course, Automake must honor this variable whenever it calls a
62# tool from the auxiliary directory.  The problem is that $srcdir (and
63# therefore $ac_aux_dir as well) can be either absolute or relative,
64# depending on how configure is run.  This is pretty annoying, since
65# it makes $ac_aux_dir quite unusable in subdirectories: in the top
66# source directory, any form will work fine, but in subdirectories a
67# relative path needs to be adjusted first.
68#
69# $ac_aux_dir/missing
70#    fails when called from a subdirectory if $ac_aux_dir is relative
71# $top_srcdir/$ac_aux_dir/missing
72#    fails if $ac_aux_dir is absolute,
73#    fails when called from a subdirectory in a VPATH build with
74#          a relative $ac_aux_dir
75#
76# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
77# are both prefixed by $srcdir.  In an in-source build this is usually
78# harmless because $srcdir is `.', but things will broke when you
79# start a VPATH build or use an absolute $srcdir.
80#
81# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
82# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
83#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
84# and then we would define $MISSING as
85#   MISSING="\${SHELL} $am_aux_dir/missing"
86# This will work as long as MISSING is not called from configure, because
87# unfortunately $(top_srcdir) has no meaning in configure.
88# However there are other variables, like CC, which are often used in
89# configure, and could therefore not use this "fixed" $ac_aux_dir.
90#
91# Another solution, used here, is to always expand $ac_aux_dir to an
92# absolute PATH.  The drawback is that using absolute paths prevent a
93# configured tree to be moved without reconfiguration.
94
95AC_DEFUN([AM_AUX_DIR_EXPAND],
96[dnl Rely on autoconf to set up CDPATH properly.
97AC_PREREQ([2.50])dnl
98# expand $ac_aux_dir to an absolute path
99am_aux_dir=`cd $ac_aux_dir && pwd`
100])
101
102# Do all the work for Automake.                             -*- Autoconf -*-
103
104# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
105# 2005, 2006 Free Software Foundation, Inc.
106#
107# This file is free software; the Free Software Foundation
108# gives unlimited permission to copy and/or distribute it,
109# with or without modifications, as long as this notice is preserved.
110
111# serial 12
112
113# This macro actually does too much.  Some checks are only needed if
114# your package does certain things.  But this isn't really a big deal.
115
116# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
117# AM_INIT_AUTOMAKE([OPTIONS])
118# -----------------------------------------------
119# The call with PACKAGE and VERSION arguments is the old style
120# call (pre autoconf-2.50), which is being phased out.  PACKAGE
121# and VERSION should now be passed to AC_INIT and removed from
122# the call to AM_INIT_AUTOMAKE.
123# We support both call styles for the transition.  After
124# the next Automake release, Autoconf can make the AC_INIT
125# arguments mandatory, and then we can depend on a new Autoconf
126# release and drop the old call support.
127AC_DEFUN([AM_INIT_AUTOMAKE],
128[AC_PREREQ([2.60])dnl
129dnl Autoconf wants to disallow AM_ names.  We explicitly allow
130dnl the ones we care about.
131m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
132AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
133AC_REQUIRE([AC_PROG_INSTALL])dnl
134if test "`cd $srcdir && pwd`" != "`pwd`"; then
135  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
136  # is not polluted with repeated "-I."
137  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
138  # test to see if srcdir already configured
139  if test -f $srcdir/config.status; then
140    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
141  fi
142fi
143
144# test whether we have cygpath
145if test -z "$CYGPATH_W"; then
146  if (cygpath --version) >/dev/null 2>/dev/null; then
147    CYGPATH_W='cygpath -w'
148  else
149    CYGPATH_W=echo
150  fi
151fi
152AC_SUBST([CYGPATH_W])
153
154# Define the identity of the package.
155dnl Distinguish between old-style and new-style calls.
156m4_ifval([$2],
157[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
158 AC_SUBST([PACKAGE], [$1])dnl
159 AC_SUBST([VERSION], [$2])],
160[_AM_SET_OPTIONS([$1])dnl
161dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
162m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
163  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
164 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
165 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
166
167_AM_IF_OPTION([no-define],,
168[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
169 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
170
171# Some tools Automake needs.
172AC_REQUIRE([AM_SANITY_CHECK])dnl
173AC_REQUIRE([AC_ARG_PROGRAM])dnl
174AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
175AM_MISSING_PROG(AUTOCONF, autoconf)
176AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
177AM_MISSING_PROG(AUTOHEADER, autoheader)
178AM_MISSING_PROG(MAKEINFO, makeinfo)
179AM_PROG_INSTALL_SH
180AM_PROG_INSTALL_STRIP
181AC_REQUIRE([AM_PROG_MKDIR_P])dnl
182# We need awk for the "check" target.  The system "awk" is bad on
183# some platforms.
184AC_REQUIRE([AC_PROG_AWK])dnl
185AC_REQUIRE([AC_PROG_MAKE_SET])dnl
186AC_REQUIRE([AM_SET_LEADING_DOT])dnl
187_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
188              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
189	      		     [_AM_PROG_TAR([v7])])])
190_AM_IF_OPTION([no-dependencies],,
191[AC_PROVIDE_IFELSE([AC_PROG_CC],
192                  [_AM_DEPENDENCIES(CC)],
193                  [define([AC_PROG_CC],
194                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
195AC_PROVIDE_IFELSE([AC_PROG_CXX],
196                  [_AM_DEPENDENCIES(CXX)],
197                  [define([AC_PROG_CXX],
198                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
199AC_PROVIDE_IFELSE([AC_PROG_OBJC],
200                  [_AM_DEPENDENCIES(OBJC)],
201                  [define([AC_PROG_OBJC],
202                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
203])
204])
205
206
207# When config.status generates a header, we must update the stamp-h file.
208# This file resides in the same directory as the config header
209# that is generated.  The stamp files are numbered to have different names.
210
211# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
212# loop where config.status creates the headers, so we can generate
213# our stamp files there.
214AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
215[# Compute $1's index in $config_headers.
216_am_stamp_count=1
217for _am_header in $config_headers :; do
218  case $_am_header in
219    $1 | $1:* )
220      break ;;
221    * )
222      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
223  esac
224done
225echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
226
227# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
228#
229# This file is free software; the Free Software Foundation
230# gives unlimited permission to copy and/or distribute it,
231# with or without modifications, as long as this notice is preserved.
232
233# AM_PROG_INSTALL_SH
234# ------------------
235# Define $install_sh.
236AC_DEFUN([AM_PROG_INSTALL_SH],
237[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
238install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
239AC_SUBST(install_sh)])
240
241# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
242#
243# This file is free software; the Free Software Foundation
244# gives unlimited permission to copy and/or distribute it,
245# with or without modifications, as long as this notice is preserved.
246
247# serial 2
248
249# Check whether the underlying file-system supports filenames
250# with a leading dot.  For instance MS-DOS doesn't.
251AC_DEFUN([AM_SET_LEADING_DOT],
252[rm -rf .tst 2>/dev/null
253mkdir .tst 2>/dev/null
254if test -d .tst; then
255  am__leading_dot=.
256else
257  am__leading_dot=_
258fi
259rmdir .tst 2>/dev/null
260AC_SUBST([am__leading_dot])])
261
262# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
263
264# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
265# Free Software Foundation, Inc.
266#
267# This file is free software; the Free Software Foundation
268# gives unlimited permission to copy and/or distribute it,
269# with or without modifications, as long as this notice is preserved.
270
271# serial 5
272
273# AM_MISSING_PROG(NAME, PROGRAM)
274# ------------------------------
275AC_DEFUN([AM_MISSING_PROG],
276[AC_REQUIRE([AM_MISSING_HAS_RUN])
277$1=${$1-"${am_missing_run}$2"}
278AC_SUBST($1)])
279
280
281# AM_MISSING_HAS_RUN
282# ------------------
283# Define MISSING if not defined so far and test if it supports --run.
284# If it does, set am_missing_run to use it, otherwise, to nothing.
285AC_DEFUN([AM_MISSING_HAS_RUN],
286[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
287AC_REQUIRE_AUX_FILE([missing])dnl
288test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
289# Use eval to expand $SHELL
290if eval "$MISSING --run true"; then
291  am_missing_run="$MISSING --run "
292else
293  am_missing_run=
294  AC_MSG_WARN([`missing' script is too old or missing])
295fi
296])
297
298# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
299#
300# This file is free software; the Free Software Foundation
301# gives unlimited permission to copy and/or distribute it,
302# with or without modifications, as long as this notice is preserved.
303
304# AM_PROG_MKDIR_P
305# ---------------
306# Check for `mkdir -p'.
307AC_DEFUN([AM_PROG_MKDIR_P],
308[AC_PREREQ([2.60])dnl
309AC_REQUIRE([AC_PROG_MKDIR_P])dnl
310dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
311dnl while keeping a definition of mkdir_p for backward compatibility.
312dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
313dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
314dnl Makefile.ins that do not define MKDIR_P, so we do our own
315dnl adjustment using top_builddir (which is defined more often than
316dnl MKDIR_P).
317AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
318case $mkdir_p in
319  [[\\/$]]* | ?:[[\\/]]*) ;;
320  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
321esac
322])
323
324# Helper functions for option handling.                     -*- Autoconf -*-
325
326# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
327#
328# This file is free software; the Free Software Foundation
329# gives unlimited permission to copy and/or distribute it,
330# with or without modifications, as long as this notice is preserved.
331
332# serial 3
333
334# _AM_MANGLE_OPTION(NAME)
335# -----------------------
336AC_DEFUN([_AM_MANGLE_OPTION],
337[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
338
339# _AM_SET_OPTION(NAME)
340# ------------------------------
341# Set option NAME.  Presently that only means defining a flag for this option.
342AC_DEFUN([_AM_SET_OPTION],
343[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
344
345# _AM_SET_OPTIONS(OPTIONS)
346# ----------------------------------
347# OPTIONS is a space-separated list of Automake options.
348AC_DEFUN([_AM_SET_OPTIONS],
349[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
350
351# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
352# -------------------------------------------
353# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
354AC_DEFUN([_AM_IF_OPTION],
355[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
356
357# Check to make sure that the build environment is sane.    -*- Autoconf -*-
358
359# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
360# Free Software Foundation, Inc.
361#
362# This file is free software; the Free Software Foundation
363# gives unlimited permission to copy and/or distribute it,
364# with or without modifications, as long as this notice is preserved.
365
366# serial 4
367
368# AM_SANITY_CHECK
369# ---------------
370AC_DEFUN([AM_SANITY_CHECK],
371[AC_MSG_CHECKING([whether build environment is sane])
372# Just in case
373sleep 1
374echo timestamp > conftest.file
375# Do `set' in a subshell so we don't clobber the current shell's
376# arguments.  Must try -L first in case configure is actually a
377# symlink; some systems play weird games with the mod time of symlinks
378# (eg FreeBSD returns the mod time of the symlink's containing
379# directory).
380if (
381   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
382   if test "$[*]" = "X"; then
383      # -L didn't work.
384      set X `ls -t $srcdir/configure conftest.file`
385   fi
386   rm -f conftest.file
387   if test "$[*]" != "X $srcdir/configure conftest.file" \
388      && test "$[*]" != "X conftest.file $srcdir/configure"; then
389
390      # If neither matched, then we have a broken ls.  This can happen
391      # if, for instance, CONFIG_SHELL is bash and it inherits a
392      # broken ls alias from the environment.  This has actually
393      # happened.  Such a system could not be considered "sane".
394      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
395alias in your environment])
396   fi
397
398   test "$[2]" = conftest.file
399   )
400then
401   # Ok.
402   :
403else
404   AC_MSG_ERROR([newly created file is older than distributed files!
405Check your system clock])
406fi
407AC_MSG_RESULT(yes)])
408
409# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
410#
411# This file is free software; the Free Software Foundation
412# gives unlimited permission to copy and/or distribute it,
413# with or without modifications, as long as this notice is preserved.
414
415# AM_PROG_INSTALL_STRIP
416# ---------------------
417# One issue with vendor `install' (even GNU) is that you can't
418# specify the program used to strip binaries.  This is especially
419# annoying in cross-compiling environments, where the build's strip
420# is unlikely to handle the host's binaries.
421# Fortunately install-sh will honor a STRIPPROG variable, so we
422# always use install-sh in `make install-strip', and initialize
423# STRIPPROG with the value of the STRIP variable (set by the user).
424AC_DEFUN([AM_PROG_INSTALL_STRIP],
425[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
426# Installed binaries are usually stripped using `strip' when the user
427# run `make install-strip'.  However `strip' might not be the right
428# tool to use in cross-compilation environments, therefore Automake
429# will honor the `STRIP' environment variable to overrule this program.
430dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
431if test "$cross_compiling" != no; then
432  AC_CHECK_TOOL([STRIP], [strip], :)
433fi
434INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
435AC_SUBST([INSTALL_STRIP_PROGRAM])])
436
437# Copyright (C) 2006  Free Software Foundation, Inc.
438#
439# This file is free software; the Free Software Foundation
440# gives unlimited permission to copy and/or distribute it,
441# with or without modifications, as long as this notice is preserved.
442
443# _AM_SUBST_NOTMAKE(VARIABLE)
444# ---------------------------
445# Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in.
446# This macro is traced by Automake.
447AC_DEFUN([_AM_SUBST_NOTMAKE])
448
449# Check how to create a tarball.                            -*- Autoconf -*-
450
451# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
452#
453# This file is free software; the Free Software Foundation
454# gives unlimited permission to copy and/or distribute it,
455# with or without modifications, as long as this notice is preserved.
456
457# serial 2
458
459# _AM_PROG_TAR(FORMAT)
460# --------------------
461# Check how to create a tarball in format FORMAT.
462# FORMAT should be one of `v7', `ustar', or `pax'.
463#
464# Substitute a variable $(am__tar) that is a command
465# writing to stdout a FORMAT-tarball containing the directory
466# $tardir.
467#     tardir=directory && $(am__tar) > result.tar
468#
469# Substitute a variable $(am__untar) that extract such
470# a tarball read from stdin.
471#     $(am__untar) < result.tar
472AC_DEFUN([_AM_PROG_TAR],
473[# Always define AMTAR for backward compatibility.
474AM_MISSING_PROG([AMTAR], [tar])
475m4_if([$1], [v7],
476     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
477     [m4_case([$1], [ustar],, [pax],,
478              [m4_fatal([Unknown tar format])])
479AC_MSG_CHECKING([how to create a $1 tar archive])
480# Loop over all known methods to create a tar archive until one works.
481_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
482_am_tools=${am_cv_prog_tar_$1-$_am_tools}
483# Do not fold the above two line into one, because Tru64 sh and
484# Solaris sh will not grok spaces in the rhs of `-'.
485for _am_tool in $_am_tools
486do
487  case $_am_tool in
488  gnutar)
489    for _am_tar in tar gnutar gtar;
490    do
491      AM_RUN_LOG([$_am_tar --version]) && break
492    done
493    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
494    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
495    am__untar="$_am_tar -xf -"
496    ;;
497  plaintar)
498    # Must skip GNU tar: if it does not support --format= it doesn't create
499    # ustar tarball either.
500    (tar --version) >/dev/null 2>&1 && continue
501    am__tar='tar chf - "$$tardir"'
502    am__tar_='tar chf - "$tardir"'
503    am__untar='tar xf -'
504    ;;
505  pax)
506    am__tar='pax -L -x $1 -w "$$tardir"'
507    am__tar_='pax -L -x $1 -w "$tardir"'
508    am__untar='pax -r'
509    ;;
510  cpio)
511    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
512    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
513    am__untar='cpio -i -H $1 -d'
514    ;;
515  none)
516    am__tar=false
517    am__tar_=false
518    am__untar=false
519    ;;
520  esac
521
522  # If the value was cached, stop now.  We just wanted to have am__tar
523  # and am__untar set.
524  test -n "${am_cv_prog_tar_$1}" && break
525
526  # tar/untar a dummy directory, and stop if the command works
527  rm -rf conftest.dir
528  mkdir conftest.dir
529  echo GrepMe > conftest.dir/file
530  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
531  rm -rf conftest.dir
532  if test -s conftest.tar; then
533    AM_RUN_LOG([$am__untar <conftest.tar])
534    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
535  fi
536done
537rm -rf conftest.dir
538
539AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
540AC_MSG_RESULT([$am_cv_prog_tar_$1])])
541AC_SUBST([am__tar])
542AC_SUBST([am__untar])
543]) # _AM_PROG_TAR
544
545