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