~ubuntu-branches/ubuntu/trusty/advancecomp/trusty

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ozarowski
  • Date: 2006-05-13 21:15:49 UTC
  • Revision ID: james.westby@ubuntu.com-20060513211549-2vu7peis643ojcm5
Tags: upstream-1.15
ImportĀ upstreamĀ versionĀ 1.15

Show diffs side-by-side

added added

removed removed

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