~ubuntu-branches/ubuntu/lucid/desktop-file-utils/lucid

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-18 23:33:28 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070218233328-rjmdgiikbaq5u2my
Tags: 0.12-0ubuntu1
* New upstream version:
  - improves category validation code to not catch false positives
  - make category validation code non-fatal
  - fix mem leaks and double frees
* debian/control:
  - use Desktop Team for Maintainer

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# generated automatically by aclocal 1.7.9 -*- Autoconf -*-
 
1
# generated automatically by aclocal 1.9.6 -*- Autoconf -*-
2
2
 
3
 
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
4
 
# Free Software Foundation, Inc.
 
3
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 
4
# 2005  Free Software Foundation, Inc.
5
5
# This file is free software; the Free Software Foundation
6
6
# gives unlimited permission to copy and/or distribute it,
7
7
# with or without modifications, as long as this notice is preserved.
11
11
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12
12
# PARTICULAR PURPOSE.
13
13
 
14
 
# Do all the work for Automake.                            -*- Autoconf -*-
15
 
 
16
 
# This macro actually does too much some checks are only needed if
17
 
# your package does certain things.  But this isn't really a big deal.
18
 
 
19
 
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
20
 
# Free Software Foundation, Inc.
21
 
 
22
 
# This program is free software; you can redistribute it and/or modify
23
 
# it under the terms of the GNU General Public License as published by
24
 
# the Free Software Foundation; either version 2, or (at your option)
25
 
# any later version.
26
 
 
27
 
# This program is distributed in the hope that it will be useful,
28
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
29
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30
 
# GNU General Public License for more details.
31
 
 
32
 
# You should have received a copy of the GNU General Public License
33
 
# along with this program; if not, write to the Free Software
34
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
35
 
# 02111-1307, USA.
36
 
 
37
 
# serial 10
38
 
 
39
 
AC_PREREQ([2.54])
40
 
 
41
 
# Autoconf 2.50 wants to disallow AM_ names.  We explicitly allow
42
 
# the ones we care about.
43
 
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
44
 
 
45
 
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
46
 
# AM_INIT_AUTOMAKE([OPTIONS])
47
 
# -----------------------------------------------
48
 
# The call with PACKAGE and VERSION arguments is the old style
49
 
# call (pre autoconf-2.50), which is being phased out.  PACKAGE
50
 
# and VERSION should now be passed to AC_INIT and removed from
51
 
# the call to AM_INIT_AUTOMAKE.
52
 
# We support both call styles for the transition.  After
53
 
# the next Automake release, Autoconf can make the AC_INIT
54
 
# arguments mandatory, and then we can depend on a new Autoconf
55
 
# release and drop the old call support.
56
 
AC_DEFUN([AM_INIT_AUTOMAKE],
57
 
[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
58
 
 AC_REQUIRE([AC_PROG_INSTALL])dnl
59
 
# test to see if srcdir already configured
60
 
if test "`cd $srcdir && pwd`" != "`pwd`" &&
61
 
   test -f $srcdir/config.status; then
62
 
  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
63
 
fi
64
 
 
65
 
# test whether we have cygpath
66
 
if test -z "$CYGPATH_W"; then
67
 
  if (cygpath --version) >/dev/null 2>/dev/null; then
68
 
    CYGPATH_W='cygpath -w'
69
 
  else
70
 
    CYGPATH_W=echo
71
 
  fi
72
 
fi
73
 
AC_SUBST([CYGPATH_W])
74
 
 
75
 
# Define the identity of the package.
76
 
dnl Distinguish between old-style and new-style calls.
77
 
m4_ifval([$2],
78
 
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
79
 
 AC_SUBST([PACKAGE], [$1])dnl
80
 
 AC_SUBST([VERSION], [$2])],
81
 
[_AM_SET_OPTIONS([$1])dnl
82
 
 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
83
 
 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
84
 
 
85
 
_AM_IF_OPTION([no-define],,
86
 
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
87
 
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
88
 
 
89
 
# Some tools Automake needs.
90
 
AC_REQUIRE([AM_SANITY_CHECK])dnl
91
 
AC_REQUIRE([AC_ARG_PROGRAM])dnl
92
 
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
93
 
AM_MISSING_PROG(AUTOCONF, autoconf)
94
 
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
95
 
AM_MISSING_PROG(AUTOHEADER, autoheader)
96
 
AM_MISSING_PROG(MAKEINFO, makeinfo)
97
 
AM_MISSING_PROG(AMTAR, tar)
98
 
AM_PROG_INSTALL_SH
99
 
AM_PROG_INSTALL_STRIP
100
 
# We need awk for the "check" target.  The system "awk" is bad on
101
 
# some platforms.
102
 
AC_REQUIRE([AC_PROG_AWK])dnl
103
 
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
104
 
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
105
 
 
106
 
_AM_IF_OPTION([no-dependencies],,
107
 
[AC_PROVIDE_IFELSE([AC_PROG_CC],
108
 
                  [_AM_DEPENDENCIES(CC)],
109
 
                  [define([AC_PROG_CC],
110
 
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
111
 
AC_PROVIDE_IFELSE([AC_PROG_CXX],
112
 
                  [_AM_DEPENDENCIES(CXX)],
113
 
                  [define([AC_PROG_CXX],
114
 
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
115
 
])
116
 
])
117
 
 
118
 
 
119
 
# When config.status generates a header, we must update the stamp-h file.
120
 
# This file resides in the same directory as the config header
121
 
# that is generated.  The stamp files are numbered to have different names.
122
 
 
123
 
# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
124
 
# loop where config.status creates the headers, so we can generate
125
 
# our stamp files there.
126
 
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
127
 
[# Compute $1's index in $config_headers.
128
 
_am_stamp_count=1
129
 
for _am_header in $config_headers :; do
130
 
  case $_am_header in
131
 
    $1 | $1:* )
132
 
      break ;;
133
 
    * )
134
 
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
135
 
  esac
136
 
done
137
 
echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
138
 
 
139
 
# Copyright 2002  Free Software Foundation, Inc.
140
 
 
141
 
# This program is free software; you can redistribute it and/or modify
142
 
# it under the terms of the GNU General Public License as published by
143
 
# the Free Software Foundation; either version 2, or (at your option)
144
 
# any later version.
145
 
 
146
 
# This program is distributed in the hope that it will be useful,
147
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
148
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
149
 
# GNU General Public License for more details.
150
 
 
151
 
# You should have received a copy of the GNU General Public License
152
 
# along with this program; if not, write to the Free Software
153
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
154
 
 
155
 
# AM_AUTOMAKE_VERSION(VERSION)
156
 
# ----------------------------
157
 
# Automake X.Y traces this macro to ensure aclocal.m4 has been
158
 
# generated from the m4 files accompanying Automake X.Y.
159
 
AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.7"])
160
 
 
161
 
# AM_SET_CURRENT_AUTOMAKE_VERSION
162
 
# -------------------------------
163
 
# Call AM_AUTOMAKE_VERSION so it can be traced.
164
 
# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
165
 
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
166
 
         [AM_AUTOMAKE_VERSION([1.7.9])])
167
 
 
168
 
# Helper functions for option handling.                    -*- Autoconf -*-
169
 
 
170
 
# Copyright 2001, 2002  Free Software Foundation, Inc.
171
 
 
172
 
# This program is free software; you can redistribute it and/or modify
173
 
# it under the terms of the GNU General Public License as published by
174
 
# the Free Software Foundation; either version 2, or (at your option)
175
 
# any later version.
176
 
 
177
 
# This program is distributed in the hope that it will be useful,
178
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
179
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
180
 
# GNU General Public License for more details.
181
 
 
182
 
# You should have received a copy of the GNU General Public License
183
 
# along with this program; if not, write to the Free Software
184
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
185
 
# 02111-1307, USA.
186
 
 
187
 
# serial 2
188
 
 
189
 
# _AM_MANGLE_OPTION(NAME)
190
 
# -----------------------
191
 
AC_DEFUN([_AM_MANGLE_OPTION],
192
 
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
193
 
 
194
 
# _AM_SET_OPTION(NAME)
195
 
# ------------------------------
196
 
# Set option NAME.  Presently that only means defining a flag for this option.
197
 
AC_DEFUN([_AM_SET_OPTION],
198
 
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
199
 
 
200
 
# _AM_SET_OPTIONS(OPTIONS)
201
 
# ----------------------------------
202
 
# OPTIONS is a space-separated list of Automake options.
203
 
AC_DEFUN([_AM_SET_OPTIONS],
204
 
[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
205
 
 
206
 
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
207
 
# -------------------------------------------
208
 
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
209
 
AC_DEFUN([_AM_IF_OPTION],
210
 
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
211
 
 
212
 
#
213
 
# Check to make sure that the build environment is sane.
214
 
#
215
 
 
216
 
# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
217
 
 
218
 
# This program is free software; you can redistribute it and/or modify
219
 
# it under the terms of the GNU General Public License as published by
220
 
# the Free Software Foundation; either version 2, or (at your option)
221
 
# any later version.
222
 
 
223
 
# This program is distributed in the hope that it will be useful,
224
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
225
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
226
 
# GNU General Public License for more details.
227
 
 
228
 
# You should have received a copy of the GNU General Public License
229
 
# along with this program; if not, write to the Free Software
230
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
231
 
# 02111-1307, USA.
232
 
 
233
 
# serial 3
234
 
 
235
 
# AM_SANITY_CHECK
236
 
# ---------------
237
 
AC_DEFUN([AM_SANITY_CHECK],
238
 
[AC_MSG_CHECKING([whether build environment is sane])
239
 
# Just in case
240
 
sleep 1
241
 
echo timestamp > conftest.file
242
 
# Do `set' in a subshell so we don't clobber the current shell's
243
 
# arguments.  Must try -L first in case configure is actually a
244
 
# symlink; some systems play weird games with the mod time of symlinks
245
 
# (eg FreeBSD returns the mod time of the symlink's containing
246
 
# directory).
247
 
if (
248
 
   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
249
 
   if test "$[*]" = "X"; then
250
 
      # -L didn't work.
251
 
      set X `ls -t $srcdir/configure conftest.file`
252
 
   fi
253
 
   rm -f conftest.file
254
 
   if test "$[*]" != "X $srcdir/configure conftest.file" \
255
 
      && test "$[*]" != "X conftest.file $srcdir/configure"; then
256
 
 
257
 
      # If neither matched, then we have a broken ls.  This can happen
258
 
      # if, for instance, CONFIG_SHELL is bash and it inherits a
259
 
      # broken ls alias from the environment.  This has actually
260
 
      # happened.  Such a system could not be considered "sane".
261
 
      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
262
 
alias in your environment])
263
 
   fi
264
 
 
265
 
   test "$[2]" = conftest.file
266
 
   )
267
 
then
268
 
   # Ok.
269
 
   :
270
 
else
271
 
   AC_MSG_ERROR([newly created file is older than distributed files!
272
 
Check your system clock])
273
 
fi
274
 
AC_MSG_RESULT(yes)])
275
 
 
276
 
#  -*- Autoconf -*-
277
 
 
278
 
 
279
 
# Copyright 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
280
 
 
281
 
# This program is free software; you can redistribute it and/or modify
282
 
# it under the terms of the GNU General Public License as published by
283
 
# the Free Software Foundation; either version 2, or (at your option)
284
 
# any later version.
285
 
 
286
 
# This program is distributed in the hope that it will be useful,
287
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
288
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
289
 
# GNU General Public License for more details.
290
 
 
291
 
# You should have received a copy of the GNU General Public License
292
 
# along with this program; if not, write to the Free Software
293
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
294
 
# 02111-1307, USA.
295
 
 
296
 
# serial 3
297
 
 
298
 
# AM_MISSING_PROG(NAME, PROGRAM)
299
 
# ------------------------------
300
 
AC_DEFUN([AM_MISSING_PROG],
301
 
[AC_REQUIRE([AM_MISSING_HAS_RUN])
302
 
$1=${$1-"${am_missing_run}$2"}
303
 
AC_SUBST($1)])
304
 
 
305
 
 
306
 
# AM_MISSING_HAS_RUN
307
 
# ------------------
308
 
# Define MISSING if not defined so far and test if it supports --run.
309
 
# If it does, set am_missing_run to use it, otherwise, to nothing.
310
 
AC_DEFUN([AM_MISSING_HAS_RUN],
311
 
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
312
 
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
313
 
# Use eval to expand $SHELL
314
 
if eval "$MISSING --run true"; then
315
 
  am_missing_run="$MISSING --run "
316
 
else
317
 
  am_missing_run=
318
 
  AC_MSG_WARN([`missing' script is too old or missing])
319
 
fi
320
 
])
321
 
 
322
 
# AM_AUX_DIR_EXPAND
323
 
 
324
 
# Copyright 2001 Free Software Foundation, Inc.
325
 
 
326
 
# This program is free software; you can redistribute it and/or modify
327
 
# it under the terms of the GNU General Public License as published by
328
 
# the Free Software Foundation; either version 2, or (at your option)
329
 
# any later version.
330
 
 
331
 
# This program is distributed in the hope that it will be useful,
332
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
333
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
334
 
# GNU General Public License for more details.
335
 
 
336
 
# You should have received a copy of the GNU General Public License
337
 
# along with this program; if not, write to the Free Software
338
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
339
 
# 02111-1307, USA.
340
 
 
341
 
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
342
 
# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
343
 
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
344
 
#
345
 
# Of course, Automake must honor this variable whenever it calls a
346
 
# tool from the auxiliary directory.  The problem is that $srcdir (and
347
 
# therefore $ac_aux_dir as well) can be either absolute or relative,
348
 
# depending on how configure is run.  This is pretty annoying, since
349
 
# it makes $ac_aux_dir quite unusable in subdirectories: in the top
350
 
# source directory, any form will work fine, but in subdirectories a
351
 
# relative path needs to be adjusted first.
352
 
#
353
 
# $ac_aux_dir/missing
354
 
#    fails when called from a subdirectory if $ac_aux_dir is relative
355
 
# $top_srcdir/$ac_aux_dir/missing
356
 
#    fails if $ac_aux_dir is absolute,
357
 
#    fails when called from a subdirectory in a VPATH build with
358
 
#          a relative $ac_aux_dir
359
 
#
360
 
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
361
 
# are both prefixed by $srcdir.  In an in-source build this is usually
362
 
# harmless because $srcdir is `.', but things will broke when you
363
 
# start a VPATH build or use an absolute $srcdir.
364
 
#
365
 
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
366
 
# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
367
 
#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
368
 
# and then we would define $MISSING as
369
 
#   MISSING="\${SHELL} $am_aux_dir/missing"
370
 
# This will work as long as MISSING is not called from configure, because
371
 
# unfortunately $(top_srcdir) has no meaning in configure.
372
 
# However there are other variables, like CC, which are often used in
373
 
# configure, and could therefore not use this "fixed" $ac_aux_dir.
374
 
#
375
 
# Another solution, used here, is to always expand $ac_aux_dir to an
376
 
# absolute PATH.  The drawback is that using absolute paths prevent a
377
 
# configured tree to be moved without reconfiguration.
378
 
 
379
 
# Rely on autoconf to set up CDPATH properly.
380
 
AC_PREREQ([2.50])
381
 
 
382
 
AC_DEFUN([AM_AUX_DIR_EXPAND], [
383
 
# expand $ac_aux_dir to an absolute path
384
 
am_aux_dir=`cd $ac_aux_dir && pwd`
385
 
])
386
 
 
387
 
# AM_PROG_INSTALL_SH
388
 
# ------------------
389
 
# Define $install_sh.
390
 
 
391
 
# Copyright 2001 Free Software Foundation, Inc.
392
 
 
393
 
# This program is free software; you can redistribute it and/or modify
394
 
# it under the terms of the GNU General Public License as published by
395
 
# the Free Software Foundation; either version 2, or (at your option)
396
 
# any later version.
397
 
 
398
 
# This program is distributed in the hope that it will be useful,
399
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
400
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
401
 
# GNU General Public License for more details.
402
 
 
403
 
# You should have received a copy of the GNU General Public License
404
 
# along with this program; if not, write to the Free Software
405
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
406
 
# 02111-1307, USA.
407
 
 
408
 
AC_DEFUN([AM_PROG_INSTALL_SH],
409
 
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
410
 
install_sh=${install_sh-"$am_aux_dir/install-sh"}
411
 
AC_SUBST(install_sh)])
412
 
 
413
 
# AM_PROG_INSTALL_STRIP
414
 
 
415
 
# Copyright 2001 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
 
# One issue with vendor `install' (even GNU) is that you can't
433
 
# specify the program used to strip binaries.  This is especially
434
 
# annoying in cross-compiling environments, where the build's strip
435
 
# is unlikely to handle the host's binaries.
436
 
# Fortunately install-sh will honor a STRIPPROG variable, so we
437
 
# always use install-sh in `make install-strip', and initialize
438
 
# STRIPPROG with the value of the STRIP variable (set by the user).
439
 
AC_DEFUN([AM_PROG_INSTALL_STRIP],
440
 
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
441
 
# Installed binaries are usually stripped using `strip' when the user
442
 
# run `make install-strip'.  However `strip' might not be the right
443
 
# tool to use in cross-compilation environments, therefore Automake
444
 
# will honor the `STRIP' environment variable to overrule this program.
445
 
dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
446
 
if test "$cross_compiling" != no; then
447
 
  AC_CHECK_TOOL([STRIP], [strip], :)
448
 
fi
449
 
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
450
 
AC_SUBST([INSTALL_STRIP_PROGRAM])])
451
 
 
452
 
#                                                          -*- Autoconf -*-
453
 
# Copyright (C) 2003  Free Software Foundation, Inc.
454
 
 
455
 
# This program is free software; you can redistribute it and/or modify
456
 
# it under the terms of the GNU General Public License as published by
457
 
# the Free Software Foundation; either version 2, or (at your option)
458
 
# any later version.
459
 
 
460
 
# This program is distributed in the hope that it will be useful,
461
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
462
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
463
 
# GNU General Public License for more details.
464
 
 
465
 
# You should have received a copy of the GNU General Public License
466
 
# along with this program; if not, write to the Free Software
467
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
468
 
# 02111-1307, USA.
469
 
 
470
 
# serial 1
471
 
 
472
 
# Check whether the underlying file-system supports filenames
473
 
# with a leading dot.  For instance MS-DOS doesn't.
474
 
AC_DEFUN([AM_SET_LEADING_DOT],
475
 
[rm -rf .tst 2>/dev/null
476
 
mkdir .tst 2>/dev/null
477
 
if test -d .tst; then
478
 
  am__leading_dot=.
479
 
else
480
 
  am__leading_dot=_
481
 
fi
482
 
rmdir .tst 2>/dev/null
483
 
AC_SUBST([am__leading_dot])])
484
 
 
485
 
# serial 5                                              -*- Autoconf -*-
486
 
 
487
 
# Copyright (C) 1999, 2000, 2001, 2002, 2003  Free Software Foundation, Inc.
488
 
 
489
 
# This program is free software; you can redistribute it and/or modify
490
 
# it under the terms of the GNU General Public License as published by
491
 
# the Free Software Foundation; either version 2, or (at your option)
492
 
# any later version.
493
 
 
494
 
# This program is distributed in the hope that it will be useful,
495
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
496
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
497
 
# GNU General Public License for more details.
498
 
 
499
 
# You should have received a copy of the GNU General Public License
500
 
# along with this program; if not, write to the Free Software
501
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
502
 
# 02111-1307, USA.
503
 
 
504
 
 
505
 
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
506
 
# written in clear, in which case automake, when reading aclocal.m4,
507
 
# will think it sees a *use*, and therefore will trigger all it's
508
 
# C support machinery.  Also note that it means that autoscan, seeing
509
 
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
510
 
 
511
 
 
512
 
 
513
 
# _AM_DEPENDENCIES(NAME)
514
 
# ----------------------
515
 
# See how the compiler implements dependency checking.
516
 
# NAME is "CC", "CXX", "GCJ", or "OBJC".
517
 
# We try a few techniques and use that to set a single cache variable.
518
 
#
519
 
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
520
 
# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
521
 
# dependency, and given that the user is not expected to run this macro,
522
 
# just rely on AC_PROG_CC.
523
 
AC_DEFUN([_AM_DEPENDENCIES],
524
 
[AC_REQUIRE([AM_SET_DEPDIR])dnl
525
 
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
526
 
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
527
 
AC_REQUIRE([AM_DEP_TRACK])dnl
528
 
 
529
 
ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
530
 
       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
531
 
       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
532
 
       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
533
 
                   [depcc="$$1"   am_compiler_list=])
534
 
 
535
 
AC_CACHE_CHECK([dependency style of $depcc],
536
 
               [am_cv_$1_dependencies_compiler_type],
537
 
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
538
 
  # We make a subdir and do the tests there.  Otherwise we can end up
539
 
  # making bogus files that we don't know about and never remove.  For
540
 
  # instance it was reported that on HP-UX the gcc test will end up
541
 
  # making a dummy file named `D' -- because `-MD' means `put the output
542
 
  # in D'.
543
 
  mkdir conftest.dir
544
 
  # Copy depcomp to subdir because otherwise we won't find it if we're
545
 
  # using a relative directory.
546
 
  cp "$am_depcomp" conftest.dir
547
 
  cd conftest.dir
548
 
  # We will build objects and dependencies in a subdirectory because
549
 
  # it helps to detect inapplicable dependency modes.  For instance
550
 
  # both Tru64's cc and ICC support -MD to output dependencies as a
551
 
  # side effect of compilation, but ICC will put the dependencies in
552
 
  # the current directory while Tru64 will put them in the object
553
 
  # directory.
554
 
  mkdir sub
555
 
 
556
 
  am_cv_$1_dependencies_compiler_type=none
557
 
  if test "$am_compiler_list" = ""; then
558
 
     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
559
 
  fi
560
 
  for depmode in $am_compiler_list; do
561
 
    # Setup a source with many dependencies, because some compilers
562
 
    # like to wrap large dependency lists on column 80 (with \), and
563
 
    # we should not choose a depcomp mode which is confused by this.
564
 
    #
565
 
    # We need to recreate these files for each test, as the compiler may
566
 
    # overwrite some of them when testing with obscure command lines.
567
 
    # This happens at least with the AIX C compiler.
568
 
    : > sub/conftest.c
569
 
    for i in 1 2 3 4 5 6; do
570
 
      echo '#include "conftst'$i'.h"' >> sub/conftest.c
571
 
      : > sub/conftst$i.h
572
 
    done
573
 
    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
574
 
 
575
 
    case $depmode in
576
 
    nosideeffect)
577
 
      # after this tag, mechanisms are not by side-effect, so they'll
578
 
      # only be used when explicitly requested
579
 
      if test "x$enable_dependency_tracking" = xyes; then
580
 
        continue
581
 
      else
582
 
        break
583
 
      fi
584
 
      ;;
585
 
    none) break ;;
586
 
    esac
587
 
    # We check with `-c' and `-o' for the sake of the "dashmstdout"
588
 
    # mode.  It turns out that the SunPro C++ compiler does not properly
589
 
    # handle `-M -o', and we need to detect this.
590
 
    if depmode=$depmode \
591
 
       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
592
 
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
593
 
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
594
 
         >/dev/null 2>conftest.err &&
595
 
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
596
 
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
597
 
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
598
 
      # icc doesn't choke on unknown options, it will just issue warnings
599
 
      # (even with -Werror).  So we grep stderr for any message
600
 
      # that says an option was ignored.
601
 
      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
602
 
        am_cv_$1_dependencies_compiler_type=$depmode
603
 
        break
604
 
      fi
605
 
    fi
606
 
  done
607
 
 
608
 
  cd ..
609
 
  rm -rf conftest.dir
610
 
else
611
 
  am_cv_$1_dependencies_compiler_type=none
612
 
fi
613
 
])
614
 
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
615
 
AM_CONDITIONAL([am__fastdep$1], [
616
 
  test "x$enable_dependency_tracking" != xno \
617
 
  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
618
 
])
619
 
 
620
 
 
621
 
# AM_SET_DEPDIR
622
 
# -------------
623
 
# Choose a directory name for dependency files.
624
 
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
625
 
AC_DEFUN([AM_SET_DEPDIR],
626
 
[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
627
 
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
628
 
])
629
 
 
630
 
 
631
 
# AM_DEP_TRACK
632
 
# ------------
633
 
AC_DEFUN([AM_DEP_TRACK],
634
 
[AC_ARG_ENABLE(dependency-tracking,
635
 
[  --disable-dependency-tracking Speeds up one-time builds
636
 
  --enable-dependency-tracking  Do not reject slow dependency extractors])
637
 
if test "x$enable_dependency_tracking" != xno; then
638
 
  am_depcomp="$ac_aux_dir/depcomp"
639
 
  AMDEPBACKSLASH='\'
640
 
fi
641
 
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
642
 
AC_SUBST([AMDEPBACKSLASH])
643
 
])
644
 
 
645
 
# Generate code to set up dependency tracking.   -*- Autoconf -*-
646
 
 
647
 
# Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
648
 
 
649
 
# This program is free software; you can redistribute it and/or modify
650
 
# it under the terms of the GNU General Public License as published by
651
 
# the Free Software Foundation; either version 2, or (at your option)
652
 
# any later version.
653
 
 
654
 
# This program is distributed in the hope that it will be useful,
655
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
656
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
657
 
# GNU General Public License for more details.
658
 
 
659
 
# You should have received a copy of the GNU General Public License
660
 
# along with this program; if not, write to the Free Software
661
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
662
 
# 02111-1307, USA.
663
 
 
664
 
#serial 2
665
 
 
666
 
# _AM_OUTPUT_DEPENDENCY_COMMANDS
667
 
# ------------------------------
668
 
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
669
 
[for mf in $CONFIG_FILES; do
670
 
  # Strip MF so we end up with the name of the file.
671
 
  mf=`echo "$mf" | sed -e 's/:.*$//'`
672
 
  # Check whether this is an Automake generated Makefile or not.
673
 
  # We used to match only the files named `Makefile.in', but
674
 
  # some people rename them; so instead we look at the file content.
675
 
  # Grep'ing the first line is not enough: some people post-process
676
 
  # each Makefile.in and add a new line on top of each file to say so.
677
 
  # So let's grep whole file.
678
 
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
679
 
    dirpart=`AS_DIRNAME("$mf")`
680
 
  else
681
 
    continue
682
 
  fi
683
 
  grep '^DEP_FILES *= *[[^ @%:@]]' < "$mf" > /dev/null || continue
684
 
  # Extract the definition of DEP_FILES from the Makefile without
685
 
  # running `make'.
686
 
  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
687
 
  test -z "$DEPDIR" && continue
688
 
  # When using ansi2knr, U may be empty or an underscore; expand it
689
 
  U=`sed -n -e '/^U = / s///p' < "$mf"`
690
 
  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
691
 
  # We invoke sed twice because it is the simplest approach to
692
 
  # changing $(DEPDIR) to its actual value in the expansion.
693
 
  for file in `sed -n -e '
694
 
    /^DEP_FILES = .*\\\\$/ {
695
 
      s/^DEP_FILES = //
696
 
      :loop
697
 
        s/\\\\$//
698
 
        p
699
 
        n
700
 
        /\\\\$/ b loop
701
 
      p
702
 
    }
703
 
    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
704
 
       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
705
 
    # Make sure the directory exists.
706
 
    test -f "$dirpart/$file" && continue
707
 
    fdir=`AS_DIRNAME(["$file"])`
708
 
    AS_MKDIR_P([$dirpart/$fdir])
709
 
    # echo "creating $dirpart/$file"
710
 
    echo '# dummy' > "$dirpart/$file"
711
 
  done
712
 
done
713
 
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
714
 
 
715
 
 
716
 
# AM_OUTPUT_DEPENDENCY_COMMANDS
717
 
# -----------------------------
718
 
# This macro should only be invoked once -- use via AC_REQUIRE.
719
 
#
720
 
# This code is only required when automatic dependency tracking
721
 
# is enabled.  FIXME.  This creates each `.P' file that we will
722
 
# need in order to bootstrap the dependency handling code.
723
 
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
724
 
[AC_CONFIG_COMMANDS([depfiles],
725
 
     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
726
 
     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
727
 
])
728
 
 
729
 
# Check to see how 'make' treats includes.      -*- Autoconf -*-
730
 
 
731
 
# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
732
 
 
733
 
# This program is free software; you can redistribute it and/or modify
734
 
# it under the terms of the GNU General Public License as published by
735
 
# the Free Software Foundation; either version 2, or (at your option)
736
 
# any later version.
737
 
 
738
 
# This program is distributed in the hope that it will be useful,
739
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
740
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
741
 
# GNU General Public License for more details.
742
 
 
743
 
# You should have received a copy of the GNU General Public License
744
 
# along with this program; if not, write to the Free Software
745
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
746
 
# 02111-1307, USA.
747
 
 
748
 
# serial 2
749
 
 
750
 
# AM_MAKE_INCLUDE()
751
 
# -----------------
752
 
# Check to see how make treats includes.
753
 
AC_DEFUN([AM_MAKE_INCLUDE],
754
 
[am_make=${MAKE-make}
755
 
cat > confinc << 'END'
756
 
am__doit:
757
 
        @echo done
758
 
.PHONY: am__doit
759
 
END
760
 
# If we don't find an include directive, just comment out the code.
761
 
AC_MSG_CHECKING([for style of include used by $am_make])
762
 
am__include="#"
763
 
am__quote=
764
 
_am_result=none
765
 
# First try GNU make style include.
766
 
echo "include confinc" > confmf
767
 
# We grep out `Entering directory' and `Leaving directory'
768
 
# messages which can occur if `w' ends up in MAKEFLAGS.
769
 
# In particular we don't look at `^make:' because GNU make might
770
 
# be invoked under some other name (usually "gmake"), in which
771
 
# case it prints its new name instead of `make'.
772
 
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
773
 
   am__include=include
774
 
   am__quote=
775
 
   _am_result=GNU
776
 
fi
777
 
# Now try BSD make style include.
778
 
if test "$am__include" = "#"; then
779
 
   echo '.include "confinc"' > confmf
780
 
   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
781
 
      am__include=.include
782
 
      am__quote="\""
783
 
      _am_result=BSD
784
 
   fi
785
 
fi
786
 
AC_SUBST([am__include])
787
 
AC_SUBST([am__quote])
788
 
AC_MSG_RESULT([$_am_result])
789
 
rm -f confinc confmf
790
 
])
791
 
 
792
 
# AM_CONDITIONAL                                              -*- Autoconf -*-
793
 
 
794
 
# Copyright 1997, 2000, 2001 Free Software Foundation, Inc.
795
 
 
796
 
# This program is free software; you can redistribute it and/or modify
797
 
# it under the terms of the GNU General Public License as published by
798
 
# the Free Software Foundation; either version 2, or (at your option)
799
 
# any later version.
800
 
 
801
 
# This program is distributed in the hope that it will be useful,
802
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
803
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
804
 
# GNU General Public License for more details.
805
 
 
806
 
# You should have received a copy of the GNU General Public License
807
 
# along with this program; if not, write to the Free Software
808
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
809
 
# 02111-1307, USA.
810
 
 
811
 
# serial 5
812
 
 
813
 
AC_PREREQ(2.52)
814
 
 
815
 
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
816
 
# -------------------------------------
817
 
# Define a conditional.
818
 
AC_DEFUN([AM_CONDITIONAL],
819
 
[ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
820
 
        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
821
 
AC_SUBST([$1_TRUE])
822
 
AC_SUBST([$1_FALSE])
823
 
if $2; then
824
 
  $1_TRUE=
825
 
  $1_FALSE='#'
826
 
else
827
 
  $1_TRUE='#'
828
 
  $1_FALSE=
829
 
fi
830
 
AC_CONFIG_COMMANDS_PRE(
831
 
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
832
 
  AC_MSG_ERROR([conditional "$1" was never defined.
833
 
Usually this means the macro was only invoked conditionally.])
834
 
fi])])
835
 
 
836
 
# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*-
837
 
 
838
 
# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
839
 
 
840
 
# This program is free software; you can redistribute it and/or modify
841
 
# it under the terms of the GNU General Public License as published by
842
 
# the Free Software Foundation; either version 2, or (at your option)
843
 
# any later version.
844
 
 
845
 
# This program is distributed in the hope that it will be useful,
846
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
847
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
848
 
# GNU General Public License for more details.
849
 
 
850
 
# You should have received a copy of the GNU General Public License
851
 
# along with this program; if not, write to the Free Software
852
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
853
 
# 02111-1307, USA.
854
 
 
855
 
AC_PREREQ([2.52])
856
 
 
857
 
# serial 6
858
 
 
859
 
# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
860
 
AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
861
 
 
862
 
# Add --enable-maintainer-mode option to configure.
863
 
# From Jim Meyering
864
 
 
865
 
# Copyright 1996, 1998, 2000, 2001, 2002  Free Software Foundation, Inc.
866
 
 
867
 
# This program is free software; you can redistribute it and/or modify
868
 
# it under the terms of the GNU General Public License as published by
869
 
# the Free Software Foundation; either version 2, or (at your option)
870
 
# any later version.
871
 
 
872
 
# This program is distributed in the hope that it will be useful,
873
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
874
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
875
 
# GNU General Public License for more details.
876
 
 
877
 
# You should have received a copy of the GNU General Public License
878
 
# along with this program; if not, write to the Free Software
879
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
880
 
# 02111-1307, USA.
881
 
 
882
 
# serial 2
883
 
 
884
 
AC_DEFUN([AM_MAINTAINER_MODE],
885
 
[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
886
 
  dnl maintainer-mode is disabled by default
887
 
  AC_ARG_ENABLE(maintainer-mode,
888
 
[  --enable-maintainer-mode enable make rules and dependencies not useful
889
 
                          (and sometimes confusing) to the casual installer],
890
 
      USE_MAINTAINER_MODE=$enableval,
891
 
      USE_MAINTAINER_MODE=no)
892
 
  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
893
 
  AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
894
 
  MAINT=$MAINTAINER_MODE_TRUE
895
 
  AC_SUBST(MAINT)dnl
896
 
]
897
 
)
898
 
 
899
 
AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
900
 
 
901
 
# isc-posix.m4 serial 2 (gettext-0.11.2)
902
 
dnl Copyright (C) 1995-2002 Free Software Foundation, Inc.
903
 
dnl This file is free software; the Free Software Foundation
904
 
dnl gives unlimited permission to copy and/or distribute it,
905
 
dnl with or without modifications, as long as this notice is preserved.
906
 
 
907
 
# This file is not needed with autoconf-2.53 and newer.  Remove it in 2005.
908
 
 
909
 
# This test replaces the one in autoconf.
910
 
# Currently this macro should have the same name as the autoconf macro
911
 
# because gettext's gettext.m4 (distributed in the automake package)
912
 
# still uses it.  Otherwise, the use in gettext.m4 makes autoheader
913
 
# give these diagnostics:
914
 
#   configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX
915
 
#   configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX
916
 
 
917
 
undefine([AC_ISC_POSIX])
918
 
 
919
 
AC_DEFUN([AC_ISC_POSIX],
920
 
  [
921
 
    dnl This test replaces the obsolescent AC_ISC_POSIX kludge.
922
 
    AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
923
 
  ]
924
 
)
925
 
 
926
14
# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
927
15
 
928
16
# serial 48 AC_PROG_LIBTOOL
2509
1597
 
2510
1598
  # Append ld.so.conf contents to the search path
2511
1599
  if test -f /etc/ld.so.conf; then
2512
 
    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,    ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
1600
    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,        ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
2513
1601
    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
2514
1602
  fi
2515
1603
 
5217
4305
# Is the compiler the GNU C compiler?
5218
4306
with_gcc=$_LT_AC_TAGVAR(GCC, $1)
5219
4307
 
 
4308
gcc_dir=\`gcc -print-file-name=. | $SED 's,/\.$,,'\`
 
4309
gcc_ver=\`gcc -dumpversion\`
 
4310
 
5220
4311
# An ERE matcher.
5221
4312
EGREP=$lt_EGREP
5222
4313
 
5350
4441
 
5351
4442
# Dependencies to place before the objects being linked to create a
5352
4443
# shared library.
5353
 
predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
 
4444
predep_objects=\`echo $lt_[]_LT_AC_TAGVAR(predep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
5354
4445
 
5355
4446
# Dependencies to place after the objects being linked to create a
5356
4447
# shared library.
5357
 
postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
 
4448
postdep_objects=\`echo $lt_[]_LT_AC_TAGVAR(postdep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
5358
4449
 
5359
4450
# Dependencies to place before the objects being linked to create a
5360
4451
# shared library.
5366
4457
 
5367
4458
# The library search path used internally by the compiler when linking
5368
4459
# a shared library.
5369
 
compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
 
4460
compiler_lib_search_path=\`echo $lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
5370
4461
 
5371
4462
# Method to check whether dependent libraries are shared objects.
5372
4463
deplibs_check_method=$lt_deplibs_check_method
5446
4537
link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
5447
4538
 
5448
4539
# Compile-time system search path for libraries
5449
 
sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
 
4540
sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
5450
4541
 
5451
4542
# Run-time system search path for libraries
5452
4543
sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
7282
6373
    done
7283
6374
  done
7284
6375
done
 
6376
IFS=$as_save_IFS
7285
6377
lt_ac_max=0
7286
6378
lt_ac_count=0
7287
6379
# Add /usr/xpg4/bin/sed as it is typically found on Solaris
7314
6406
done
7315
6407
])
7316
6408
SED=$lt_cv_path_SED
 
6409
AC_SUBST([SED])
7317
6410
AC_MSG_RESULT([$SED])
7318
6411
])
7319
6412
 
7455
6548
 
7456
6549
_PKG_TEXT
7457
6550
])],
7458
 
                [$4])
 
6551
                [AC_MSG_RESULT([no])
 
6552
                $4])
7459
6553
elif test $pkg_failed = untried; then
7460
6554
        ifelse([$4], , [AC_MSG_FAILURE(dnl
7461
6555
[The pkg-config script could not be found or is too old.  Make sure it
7474
6568
fi[]dnl
7475
6569
])# PKG_CHECK_MODULES
7476
6570
 
7477
 
 
7478
 
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
7479
 
#   Free Software Foundation, Inc.
7480
 
 
7481
 
# This program is free software; you can redistribute it and/or modify
7482
 
# it under the terms of the GNU General Public License as published by
7483
 
# the Free Software Foundation; either version 2, or (at your option)
7484
 
# any later version.
7485
 
 
7486
 
# This program is distributed in the hope that it will be useful,
7487
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
7488
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7489
 
# GNU General Public License for more details.
7490
 
 
7491
 
# You should have received a copy of the GNU General Public License
7492
 
# along with this program; if not, write to the Free Software
7493
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
7494
 
# 02111-1307, USA.
 
6571
# Copyright (C) 2002, 2003, 2005  Free Software Foundation, Inc.
 
6572
#
 
6573
# This file is free software; the Free Software Foundation
 
6574
# gives unlimited permission to copy and/or distribute it,
 
6575
# with or without modifications, as long as this notice is preserved.
 
6576
 
 
6577
# AM_AUTOMAKE_VERSION(VERSION)
 
6578
# ----------------------------
 
6579
# Automake X.Y traces this macro to ensure aclocal.m4 has been
 
6580
# generated from the m4 files accompanying Automake X.Y.
 
6581
AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
 
6582
 
 
6583
# AM_SET_CURRENT_AUTOMAKE_VERSION
 
6584
# -------------------------------
 
6585
# Call AM_AUTOMAKE_VERSION so it can be traced.
 
6586
# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
 
6587
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
 
6588
         [AM_AUTOMAKE_VERSION([1.9.6])])
 
6589
 
 
6590
# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 
6591
 
 
6592
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
6593
#
 
6594
# This file is free software; the Free Software Foundation
 
6595
# gives unlimited permission to copy and/or distribute it,
 
6596
# with or without modifications, as long as this notice is preserved.
 
6597
 
 
6598
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
 
6599
# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
 
6600
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
 
6601
#
 
6602
# Of course, Automake must honor this variable whenever it calls a
 
6603
# tool from the auxiliary directory.  The problem is that $srcdir (and
 
6604
# therefore $ac_aux_dir as well) can be either absolute or relative,
 
6605
# depending on how configure is run.  This is pretty annoying, since
 
6606
# it makes $ac_aux_dir quite unusable in subdirectories: in the top
 
6607
# source directory, any form will work fine, but in subdirectories a
 
6608
# relative path needs to be adjusted first.
 
6609
#
 
6610
# $ac_aux_dir/missing
 
6611
#    fails when called from a subdirectory if $ac_aux_dir is relative
 
6612
# $top_srcdir/$ac_aux_dir/missing
 
6613
#    fails if $ac_aux_dir is absolute,
 
6614
#    fails when called from a subdirectory in a VPATH build with
 
6615
#          a relative $ac_aux_dir
 
6616
#
 
6617
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
 
6618
# are both prefixed by $srcdir.  In an in-source build this is usually
 
6619
# harmless because $srcdir is `.', but things will broke when you
 
6620
# start a VPATH build or use an absolute $srcdir.
 
6621
#
 
6622
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
 
6623
# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
 
6624
#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
 
6625
# and then we would define $MISSING as
 
6626
#   MISSING="\${SHELL} $am_aux_dir/missing"
 
6627
# This will work as long as MISSING is not called from configure, because
 
6628
# unfortunately $(top_srcdir) has no meaning in configure.
 
6629
# However there are other variables, like CC, which are often used in
 
6630
# configure, and could therefore not use this "fixed" $ac_aux_dir.
 
6631
#
 
6632
# Another solution, used here, is to always expand $ac_aux_dir to an
 
6633
# absolute PATH.  The drawback is that using absolute paths prevent a
 
6634
# configured tree to be moved without reconfiguration.
 
6635
 
 
6636
AC_DEFUN([AM_AUX_DIR_EXPAND],
 
6637
[dnl Rely on autoconf to set up CDPATH properly.
 
6638
AC_PREREQ([2.50])dnl
 
6639
# expand $ac_aux_dir to an absolute path
 
6640
am_aux_dir=`cd $ac_aux_dir && pwd`
 
6641
])
 
6642
 
 
6643
# AM_CONDITIONAL                                            -*- Autoconf -*-
 
6644
 
 
6645
# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005
 
6646
# Free Software Foundation, Inc.
 
6647
#
 
6648
# This file is free software; the Free Software Foundation
 
6649
# gives unlimited permission to copy and/or distribute it,
 
6650
# with or without modifications, as long as this notice is preserved.
7495
6651
 
7496
6652
# serial 7
7497
6653
 
 
6654
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
 
6655
# -------------------------------------
 
6656
# Define a conditional.
 
6657
AC_DEFUN([AM_CONDITIONAL],
 
6658
[AC_PREREQ(2.52)dnl
 
6659
 ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
 
6660
        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
 
6661
AC_SUBST([$1_TRUE])
 
6662
AC_SUBST([$1_FALSE])
 
6663
if $2; then
 
6664
  $1_TRUE=
 
6665
  $1_FALSE='#'
 
6666
else
 
6667
  $1_TRUE='#'
 
6668
  $1_FALSE=
 
6669
fi
 
6670
AC_CONFIG_COMMANDS_PRE(
 
6671
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
 
6672
  AC_MSG_ERROR([[conditional "$1" was never defined.
 
6673
Usually this means the macro was only invoked conditionally.]])
 
6674
fi])])
 
6675
 
 
6676
 
 
6677
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
6678
# Free Software Foundation, Inc.
 
6679
#
 
6680
# This file is free software; the Free Software Foundation
 
6681
# gives unlimited permission to copy and/or distribute it,
 
6682
# with or without modifications, as long as this notice is preserved.
 
6683
 
 
6684
# serial 8
 
6685
 
 
6686
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
 
6687
# written in clear, in which case automake, when reading aclocal.m4,
 
6688
# will think it sees a *use*, and therefore will trigger all it's
 
6689
# C support machinery.  Also note that it means that autoscan, seeing
 
6690
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
 
6691
 
 
6692
 
 
6693
# _AM_DEPENDENCIES(NAME)
 
6694
# ----------------------
 
6695
# See how the compiler implements dependency checking.
 
6696
# NAME is "CC", "CXX", "GCJ", or "OBJC".
 
6697
# We try a few techniques and use that to set a single cache variable.
 
6698
#
 
6699
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
 
6700
# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
 
6701
# dependency, and given that the user is not expected to run this macro,
 
6702
# just rely on AC_PROG_CC.
 
6703
AC_DEFUN([_AM_DEPENDENCIES],
 
6704
[AC_REQUIRE([AM_SET_DEPDIR])dnl
 
6705
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
 
6706
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
 
6707
AC_REQUIRE([AM_DEP_TRACK])dnl
 
6708
 
 
6709
ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
 
6710
       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
 
6711
       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
 
6712
       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
 
6713
                   [depcc="$$1"   am_compiler_list=])
 
6714
 
 
6715
AC_CACHE_CHECK([dependency style of $depcc],
 
6716
               [am_cv_$1_dependencies_compiler_type],
 
6717
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
6718
  # We make a subdir and do the tests there.  Otherwise we can end up
 
6719
  # making bogus files that we don't know about and never remove.  For
 
6720
  # instance it was reported that on HP-UX the gcc test will end up
 
6721
  # making a dummy file named `D' -- because `-MD' means `put the output
 
6722
  # in D'.
 
6723
  mkdir conftest.dir
 
6724
  # Copy depcomp to subdir because otherwise we won't find it if we're
 
6725
  # using a relative directory.
 
6726
  cp "$am_depcomp" conftest.dir
 
6727
  cd conftest.dir
 
6728
  # We will build objects and dependencies in a subdirectory because
 
6729
  # it helps to detect inapplicable dependency modes.  For instance
 
6730
  # both Tru64's cc and ICC support -MD to output dependencies as a
 
6731
  # side effect of compilation, but ICC will put the dependencies in
 
6732
  # the current directory while Tru64 will put them in the object
 
6733
  # directory.
 
6734
  mkdir sub
 
6735
 
 
6736
  am_cv_$1_dependencies_compiler_type=none
 
6737
  if test "$am_compiler_list" = ""; then
 
6738
     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
 
6739
  fi
 
6740
  for depmode in $am_compiler_list; do
 
6741
    # Setup a source with many dependencies, because some compilers
 
6742
    # like to wrap large dependency lists on column 80 (with \), and
 
6743
    # we should not choose a depcomp mode which is confused by this.
 
6744
    #
 
6745
    # We need to recreate these files for each test, as the compiler may
 
6746
    # overwrite some of them when testing with obscure command lines.
 
6747
    # This happens at least with the AIX C compiler.
 
6748
    : > sub/conftest.c
 
6749
    for i in 1 2 3 4 5 6; do
 
6750
      echo '#include "conftst'$i'.h"' >> sub/conftest.c
 
6751
      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
 
6752
      # Solaris 8's {/usr,}/bin/sh.
 
6753
      touch sub/conftst$i.h
 
6754
    done
 
6755
    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
6756
 
 
6757
    case $depmode in
 
6758
    nosideeffect)
 
6759
      # after this tag, mechanisms are not by side-effect, so they'll
 
6760
      # only be used when explicitly requested
 
6761
      if test "x$enable_dependency_tracking" = xyes; then
 
6762
        continue
 
6763
      else
 
6764
        break
 
6765
      fi
 
6766
      ;;
 
6767
    none) break ;;
 
6768
    esac
 
6769
    # We check with `-c' and `-o' for the sake of the "dashmstdout"
 
6770
    # mode.  It turns out that the SunPro C++ compiler does not properly
 
6771
    # handle `-M -o', and we need to detect this.
 
6772
    if depmode=$depmode \
 
6773
       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
 
6774
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
 
6775
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
 
6776
         >/dev/null 2>conftest.err &&
 
6777
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
 
6778
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
 
6779
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
 
6780
      # icc doesn't choke on unknown options, it will just issue warnings
 
6781
      # or remarks (even with -Werror).  So we grep stderr for any message
 
6782
      # that says an option was ignored or not supported.
 
6783
      # When given -MP, icc 7.0 and 7.1 complain thusly:
 
6784
      #   icc: Command line warning: ignoring option '-M'; no argument required
 
6785
      # The diagnosis changed in icc 8.0:
 
6786
      #   icc: Command line remark: option '-MP' not supported
 
6787
      if (grep 'ignoring option' conftest.err ||
 
6788
          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
 
6789
        am_cv_$1_dependencies_compiler_type=$depmode
 
6790
        break
 
6791
      fi
 
6792
    fi
 
6793
  done
 
6794
 
 
6795
  cd ..
 
6796
  rm -rf conftest.dir
 
6797
else
 
6798
  am_cv_$1_dependencies_compiler_type=none
 
6799
fi
 
6800
])
 
6801
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
 
6802
AM_CONDITIONAL([am__fastdep$1], [
 
6803
  test "x$enable_dependency_tracking" != xno \
 
6804
  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
 
6805
])
 
6806
 
 
6807
 
 
6808
# AM_SET_DEPDIR
 
6809
# -------------
 
6810
# Choose a directory name for dependency files.
 
6811
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
 
6812
AC_DEFUN([AM_SET_DEPDIR],
 
6813
[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
6814
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
 
6815
])
 
6816
 
 
6817
 
 
6818
# AM_DEP_TRACK
 
6819
# ------------
 
6820
AC_DEFUN([AM_DEP_TRACK],
 
6821
[AC_ARG_ENABLE(dependency-tracking,
 
6822
[  --disable-dependency-tracking  speeds up one-time build
 
6823
  --enable-dependency-tracking   do not reject slow dependency extractors])
 
6824
if test "x$enable_dependency_tracking" != xno; then
 
6825
  am_depcomp="$ac_aux_dir/depcomp"
 
6826
  AMDEPBACKSLASH='\'
 
6827
fi
 
6828
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 
6829
AC_SUBST([AMDEPBACKSLASH])
 
6830
])
 
6831
 
 
6832
# Generate code to set up dependency tracking.              -*- Autoconf -*-
 
6833
 
 
6834
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
6835
# Free Software Foundation, Inc.
 
6836
#
 
6837
# This file is free software; the Free Software Foundation
 
6838
# gives unlimited permission to copy and/or distribute it,
 
6839
# with or without modifications, as long as this notice is preserved.
 
6840
 
 
6841
#serial 3
 
6842
 
 
6843
# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
6844
# ------------------------------
 
6845
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
 
6846
[for mf in $CONFIG_FILES; do
 
6847
  # Strip MF so we end up with the name of the file.
 
6848
  mf=`echo "$mf" | sed -e 's/:.*$//'`
 
6849
  # Check whether this is an Automake generated Makefile or not.
 
6850
  # We used to match only the files named `Makefile.in', but
 
6851
  # some people rename them; so instead we look at the file content.
 
6852
  # Grep'ing the first line is not enough: some people post-process
 
6853
  # each Makefile.in and add a new line on top of each file to say so.
 
6854
  # So let's grep whole file.
 
6855
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
6856
    dirpart=`AS_DIRNAME("$mf")`
 
6857
  else
 
6858
    continue
 
6859
  fi
 
6860
  # Extract the definition of DEPDIR, am__include, and am__quote
 
6861
  # from the Makefile without running `make'.
 
6862
  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
 
6863
  test -z "$DEPDIR" && continue
 
6864
  am__include=`sed -n 's/^am__include = //p' < "$mf"`
 
6865
  test -z "am__include" && continue
 
6866
  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
 
6867
  # When using ansi2knr, U may be empty or an underscore; expand it
 
6868
  U=`sed -n 's/^U = //p' < "$mf"`
 
6869
  # Find all dependency output files, they are included files with
 
6870
  # $(DEPDIR) in their names.  We invoke sed twice because it is the
 
6871
  # simplest approach to changing $(DEPDIR) to its actual value in the
 
6872
  # expansion.
 
6873
  for file in `sed -n "
 
6874
    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
 
6875
       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
6876
    # Make sure the directory exists.
 
6877
    test -f "$dirpart/$file" && continue
 
6878
    fdir=`AS_DIRNAME(["$file"])`
 
6879
    AS_MKDIR_P([$dirpart/$fdir])
 
6880
    # echo "creating $dirpart/$file"
 
6881
    echo '# dummy' > "$dirpart/$file"
 
6882
  done
 
6883
done
 
6884
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
6885
 
 
6886
 
 
6887
# AM_OUTPUT_DEPENDENCY_COMMANDS
 
6888
# -----------------------------
 
6889
# This macro should only be invoked once -- use via AC_REQUIRE.
 
6890
#
 
6891
# This code is only required when automatic dependency tracking
 
6892
# is enabled.  FIXME.  This creates each `.P' file that we will
 
6893
# need in order to bootstrap the dependency handling code.
 
6894
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
 
6895
[AC_CONFIG_COMMANDS([depfiles],
 
6896
     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
 
6897
     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
 
6898
])
 
6899
 
 
6900
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
 
6901
# Free Software Foundation, Inc.
 
6902
#
 
6903
# This file is free software; the Free Software Foundation
 
6904
# gives unlimited permission to copy and/or distribute it,
 
6905
# with or without modifications, as long as this notice is preserved.
 
6906
 
 
6907
# serial 8
 
6908
 
 
6909
# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
 
6910
AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
 
6911
 
 
6912
# Do all the work for Automake.                             -*- Autoconf -*-
 
6913
 
 
6914
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
6915
# Free Software Foundation, Inc.
 
6916
#
 
6917
# This file is free software; the Free Software Foundation
 
6918
# gives unlimited permission to copy and/or distribute it,
 
6919
# with or without modifications, as long as this notice is preserved.
 
6920
 
 
6921
# serial 12
 
6922
 
 
6923
# This macro actually does too much.  Some checks are only needed if
 
6924
# your package does certain things.  But this isn't really a big deal.
 
6925
 
 
6926
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
 
6927
# AM_INIT_AUTOMAKE([OPTIONS])
 
6928
# -----------------------------------------------
 
6929
# The call with PACKAGE and VERSION arguments is the old style
 
6930
# call (pre autoconf-2.50), which is being phased out.  PACKAGE
 
6931
# and VERSION should now be passed to AC_INIT and removed from
 
6932
# the call to AM_INIT_AUTOMAKE.
 
6933
# We support both call styles for the transition.  After
 
6934
# the next Automake release, Autoconf can make the AC_INIT
 
6935
# arguments mandatory, and then we can depend on a new Autoconf
 
6936
# release and drop the old call support.
 
6937
AC_DEFUN([AM_INIT_AUTOMAKE],
 
6938
[AC_PREREQ([2.58])dnl
 
6939
dnl Autoconf wants to disallow AM_ names.  We explicitly allow
 
6940
dnl the ones we care about.
 
6941
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
 
6942
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
 
6943
AC_REQUIRE([AC_PROG_INSTALL])dnl
 
6944
# test to see if srcdir already configured
 
6945
if test "`cd $srcdir && pwd`" != "`pwd`" &&
 
6946
   test -f $srcdir/config.status; then
 
6947
  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
 
6948
fi
 
6949
 
 
6950
# test whether we have cygpath
 
6951
if test -z "$CYGPATH_W"; then
 
6952
  if (cygpath --version) >/dev/null 2>/dev/null; then
 
6953
    CYGPATH_W='cygpath -w'
 
6954
  else
 
6955
    CYGPATH_W=echo
 
6956
  fi
 
6957
fi
 
6958
AC_SUBST([CYGPATH_W])
 
6959
 
 
6960
# Define the identity of the package.
 
6961
dnl Distinguish between old-style and new-style calls.
 
6962
m4_ifval([$2],
 
6963
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
 
6964
 AC_SUBST([PACKAGE], [$1])dnl
 
6965
 AC_SUBST([VERSION], [$2])],
 
6966
[_AM_SET_OPTIONS([$1])dnl
 
6967
 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
 
6968
 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
 
6969
 
 
6970
_AM_IF_OPTION([no-define],,
 
6971
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
 
6972
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
 
6973
 
 
6974
# Some tools Automake needs.
 
6975
AC_REQUIRE([AM_SANITY_CHECK])dnl
 
6976
AC_REQUIRE([AC_ARG_PROGRAM])dnl
 
6977
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
 
6978
AM_MISSING_PROG(AUTOCONF, autoconf)
 
6979
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
 
6980
AM_MISSING_PROG(AUTOHEADER, autoheader)
 
6981
AM_MISSING_PROG(MAKEINFO, makeinfo)
 
6982
AM_PROG_INSTALL_SH
 
6983
AM_PROG_INSTALL_STRIP
 
6984
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
 
6985
# We need awk for the "check" target.  The system "awk" is bad on
 
6986
# some platforms.
 
6987
AC_REQUIRE([AC_PROG_AWK])dnl
 
6988
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
 
6989
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
6990
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
 
6991
              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
 
6992
                             [_AM_PROG_TAR([v7])])])
 
6993
_AM_IF_OPTION([no-dependencies],,
 
6994
[AC_PROVIDE_IFELSE([AC_PROG_CC],
 
6995
                  [_AM_DEPENDENCIES(CC)],
 
6996
                  [define([AC_PROG_CC],
 
6997
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
 
6998
AC_PROVIDE_IFELSE([AC_PROG_CXX],
 
6999
                  [_AM_DEPENDENCIES(CXX)],
 
7000
                  [define([AC_PROG_CXX],
 
7001
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
 
7002
])
 
7003
])
 
7004
 
 
7005
 
 
7006
# When config.status generates a header, we must update the stamp-h file.
 
7007
# This file resides in the same directory as the config header
 
7008
# that is generated.  The stamp files are numbered to have different names.
 
7009
 
 
7010
# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
 
7011
# loop where config.status creates the headers, so we can generate
 
7012
# our stamp files there.
 
7013
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
 
7014
[# Compute $1's index in $config_headers.
 
7015
_am_stamp_count=1
 
7016
for _am_header in $config_headers :; do
 
7017
  case $_am_header in
 
7018
    $1 | $1:* )
 
7019
      break ;;
 
7020
    * )
 
7021
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
 
7022
  esac
 
7023
done
 
7024
echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
 
7025
 
 
7026
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
7027
#
 
7028
# This file is free software; the Free Software Foundation
 
7029
# gives unlimited permission to copy and/or distribute it,
 
7030
# with or without modifications, as long as this notice is preserved.
 
7031
 
 
7032
# AM_PROG_INSTALL_SH
 
7033
# ------------------
 
7034
# Define $install_sh.
 
7035
AC_DEFUN([AM_PROG_INSTALL_SH],
 
7036
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
7037
install_sh=${install_sh-"$am_aux_dir/install-sh"}
 
7038
AC_SUBST(install_sh)])
 
7039
 
 
7040
# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
 
7041
#
 
7042
# This file is free software; the Free Software Foundation
 
7043
# gives unlimited permission to copy and/or distribute it,
 
7044
# with or without modifications, as long as this notice is preserved.
 
7045
 
 
7046
# serial 2
 
7047
 
 
7048
# Check whether the underlying file-system supports filenames
 
7049
# with a leading dot.  For instance MS-DOS doesn't.
 
7050
AC_DEFUN([AM_SET_LEADING_DOT],
 
7051
[rm -rf .tst 2>/dev/null
 
7052
mkdir .tst 2>/dev/null
 
7053
if test -d .tst; then
 
7054
  am__leading_dot=.
 
7055
else
 
7056
  am__leading_dot=_
 
7057
fi
 
7058
rmdir .tst 2>/dev/null
 
7059
AC_SUBST([am__leading_dot])])
 
7060
 
 
7061
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
7062
# Free Software Foundation, Inc.
 
7063
#
 
7064
# This file is free software; the Free Software Foundation
 
7065
# gives unlimited permission to copy and/or distribute it,
 
7066
# with or without modifications, as long as this notice is preserved.
 
7067
 
 
7068
# serial 9
 
7069
 
7498
7070
# AM_PATH_LISPDIR
7499
7071
# ---------------
7500
7072
AC_DEFUN([AM_PATH_LISPDIR],
7501
 
[AC_ARG_WITH(lispdir,
7502
 
 [  --with-lispdir          Override the default lisp directory ],
 
7073
[ # If set to t, that means we are running in a shell under Emacs.
 
7074
 # If you have an Emacs named "t", then use the full path.
 
7075
 test x"$EMACS" = xt && EMACS=
 
7076
 AC_CHECK_PROGS([EMACS], [emacs xemacs], [no])
 
7077
 AC_ARG_VAR([EMACS], [the Emacs editor command])
 
7078
 AC_ARG_VAR([EMACSLOADPATH], [the Emacs library search path])
 
7079
 AC_ARG_WITH([lispdir],
 
7080
 [  --with-lispdir          override the default lisp directory],
7503
7081
 [ lispdir="$withval"
7504
7082
   AC_MSG_CHECKING([where .elc files should go])
7505
7083
   AC_MSG_RESULT([$lispdir])],
7506
7084
 [
7507
 
 # If set to t, that means we are running in a shell under Emacs.
7508
 
 # If you have an Emacs named "t", then use the full path.
7509
 
 test x"$EMACS" = xt && EMACS=
7510
 
 AC_CHECK_PROGS(EMACS, emacs xemacs, no)
7511
 
 if test $EMACS != "no"; then
7512
 
   if test x${lispdir+set} != xset; then
7513
 
     AC_CACHE_CHECK([where .elc files should go], [am_cv_lispdir],
7514
 
       [# If $EMACS isn't GNU Emacs or XEmacs, this can blow up pretty badly
 
7085
 AC_CACHE_CHECK([where .elc files should go], [am_cv_lispdir], [
 
7086
   if test $EMACS != "no"; then
 
7087
     if test x${lispdir+set} != xset; then
 
7088
  # If $EMACS isn't GNU Emacs or XEmacs, this can blow up pretty badly
7515
7089
  # Some emacsen will start up in interactive mode, requiring C-x C-c to exit,
7516
7090
  #  which is non-obvious for non-emacs users.
7517
7091
  # Redirecting /dev/null should help a bit; pity we can't detect "broken"
7518
7092
  #  emacsen earlier and avoid running this altogether.
7519
7093
  AC_RUN_LOG([$EMACS -batch -q -eval '(while load-path (princ (concat (car load-path) "\n")) (setq load-path (cdr load-path)))' </dev/null >conftest.out])
7520
 
        am_cv_lispdir=`sed -n \
 
7094
        am_cv_lispdir=`sed -n \
7521
7095
       -e 's,/$,,' \
7522
 
       -e '/.*\/lib\/x\?emacs\/site-lisp$/{s,.*/lib/\(x\?emacs/site-lisp\)$,${libdir}/\1,;p;q;}' \
7523
 
       -e '/.*\/share\/x\?emacs\/site-lisp$/{s,.*/share/\(x\?emacs/site-lisp\),${datadir}/\1,;p;q;}' \
 
7096
       -e '/.*\/lib\/x*emacs\/site-lisp$/{s,.*/lib/\(x*emacs/site-lisp\)$,${libdir}/\1,;p;q;}' \
 
7097
       -e '/.*\/share\/x*emacs\/site-lisp$/{s,.*/share/\(x*emacs/site-lisp\),${datadir}/\1,;p;q;}' \
7524
7098
       conftest.out`
7525
7099
       rm conftest.out
7526
 
       if test -z "$am_cv_lispdir"; then
7527
 
         am_cv_lispdir='${datadir}/emacs/site-lisp'
7528
 
       fi
7529
 
     ])
7530
 
     lispdir="$am_cv_lispdir"
 
7100
     fi
7531
7101
   fi
7532
 
 fi
 
7102
   test -z "$am_cv_lispdir" && am_cv_lispdir='${datadir}/emacs/site-lisp'
 
7103
  ])
 
7104
  lispdir="$am_cv_lispdir"
7533
7105
])
7534
 
AC_SUBST(lispdir)
 
7106
AC_SUBST([lispdir])
7535
7107
])# AM_PATH_LISPDIR
7536
7108
 
7537
7109
AU_DEFUN([ud_PATH_LISPDIR], [AM_PATH_LISPDIR])
7538
7110
 
 
7111
# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
 
7112
# From Jim Meyering
 
7113
 
 
7114
# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005
 
7115
# Free Software Foundation, Inc.
 
7116
#
 
7117
# This file is free software; the Free Software Foundation
 
7118
# gives unlimited permission to copy and/or distribute it,
 
7119
# with or without modifications, as long as this notice is preserved.
 
7120
 
 
7121
# serial 4
 
7122
 
 
7123
AC_DEFUN([AM_MAINTAINER_MODE],
 
7124
[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
 
7125
  dnl maintainer-mode is disabled by default
 
7126
  AC_ARG_ENABLE(maintainer-mode,
 
7127
[  --enable-maintainer-mode  enable make rules and dependencies not useful
 
7128
                          (and sometimes confusing) to the casual installer],
 
7129
      USE_MAINTAINER_MODE=$enableval,
 
7130
      USE_MAINTAINER_MODE=no)
 
7131
  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
 
7132
  AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
 
7133
  MAINT=$MAINTAINER_MODE_TRUE
 
7134
  AC_SUBST(MAINT)dnl
 
7135
]
 
7136
)
 
7137
 
 
7138
AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
 
7139
 
 
7140
# Check to see how 'make' treats includes.                  -*- Autoconf -*-
 
7141
 
 
7142
# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
 
7143
#
 
7144
# This file is free software; the Free Software Foundation
 
7145
# gives unlimited permission to copy and/or distribute it,
 
7146
# with or without modifications, as long as this notice is preserved.
 
7147
 
 
7148
# serial 3
 
7149
 
 
7150
# AM_MAKE_INCLUDE()
 
7151
# -----------------
 
7152
# Check to see how make treats includes.
 
7153
AC_DEFUN([AM_MAKE_INCLUDE],
 
7154
[am_make=${MAKE-make}
 
7155
cat > confinc << 'END'
 
7156
am__doit:
 
7157
        @echo done
 
7158
.PHONY: am__doit
 
7159
END
 
7160
# If we don't find an include directive, just comment out the code.
 
7161
AC_MSG_CHECKING([for style of include used by $am_make])
 
7162
am__include="#"
 
7163
am__quote=
 
7164
_am_result=none
 
7165
# First try GNU make style include.
 
7166
echo "include confinc" > confmf
 
7167
# We grep out `Entering directory' and `Leaving directory'
 
7168
# messages which can occur if `w' ends up in MAKEFLAGS.
 
7169
# In particular we don't look at `^make:' because GNU make might
 
7170
# be invoked under some other name (usually "gmake"), in which
 
7171
# case it prints its new name instead of `make'.
 
7172
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
 
7173
   am__include=include
 
7174
   am__quote=
 
7175
   _am_result=GNU
 
7176
fi
 
7177
# Now try BSD make style include.
 
7178
if test "$am__include" = "#"; then
 
7179
   echo '.include "confinc"' > confmf
 
7180
   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
 
7181
      am__include=.include
 
7182
      am__quote="\""
 
7183
      _am_result=BSD
 
7184
   fi
 
7185
fi
 
7186
AC_SUBST([am__include])
 
7187
AC_SUBST([am__quote])
 
7188
AC_MSG_RESULT([$_am_result])
 
7189
rm -f confinc confmf
 
7190
])
 
7191
 
 
7192
# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
 
7193
 
 
7194
# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005
 
7195
# Free Software Foundation, Inc.
 
7196
#
 
7197
# This file is free software; the Free Software Foundation
 
7198
# gives unlimited permission to copy and/or distribute it,
 
7199
# with or without modifications, as long as this notice is preserved.
 
7200
 
 
7201
# serial 4
 
7202
 
 
7203
# AM_MISSING_PROG(NAME, PROGRAM)
 
7204
# ------------------------------
 
7205
AC_DEFUN([AM_MISSING_PROG],
 
7206
[AC_REQUIRE([AM_MISSING_HAS_RUN])
 
7207
$1=${$1-"${am_missing_run}$2"}
 
7208
AC_SUBST($1)])
 
7209
 
 
7210
 
 
7211
# AM_MISSING_HAS_RUN
 
7212
# ------------------
 
7213
# Define MISSING if not defined so far and test if it supports --run.
 
7214
# If it does, set am_missing_run to use it, otherwise, to nothing.
 
7215
AC_DEFUN([AM_MISSING_HAS_RUN],
 
7216
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
7217
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
 
7218
# Use eval to expand $SHELL
 
7219
if eval "$MISSING --run true"; then
 
7220
  am_missing_run="$MISSING --run "
 
7221
else
 
7222
  am_missing_run=
 
7223
  AC_MSG_WARN([`missing' script is too old or missing])
 
7224
fi
 
7225
])
 
7226
 
 
7227
# Copyright (C) 2003, 2004, 2005  Free Software Foundation, Inc.
 
7228
#
 
7229
# This file is free software; the Free Software Foundation
 
7230
# gives unlimited permission to copy and/or distribute it,
 
7231
# with or without modifications, as long as this notice is preserved.
 
7232
 
 
7233
# AM_PROG_MKDIR_P
 
7234
# ---------------
 
7235
# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
 
7236
#
 
7237
# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
 
7238
# created by `make install' are always world readable, even if the
 
7239
# installer happens to have an overly restrictive umask (e.g. 077).
 
7240
# This was a mistake.  There are at least two reasons why we must not
 
7241
# use `-m 0755':
 
7242
#   - it causes special bits like SGID to be ignored,
 
7243
#   - it may be too restrictive (some setups expect 775 directories).
 
7244
#
 
7245
# Do not use -m 0755 and let people choose whatever they expect by
 
7246
# setting umask.
 
7247
#
 
7248
# We cannot accept any implementation of `mkdir' that recognizes `-p'.
 
7249
# Some implementations (such as Solaris 8's) are not thread-safe: if a
 
7250
# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
 
7251
# concurrently, both version can detect that a/ is missing, but only
 
7252
# one can create it and the other will error out.  Consequently we
 
7253
# restrict ourselves to GNU make (using the --version option ensures
 
7254
# this.)
 
7255
AC_DEFUN([AM_PROG_MKDIR_P],
 
7256
[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
 
7257
  # We used to keeping the `.' as first argument, in order to
 
7258
  # allow $(mkdir_p) to be used without argument.  As in
 
7259
  #   $(mkdir_p) $(somedir)
 
7260
  # where $(somedir) is conditionally defined.  However this is wrong
 
7261
  # for two reasons:
 
7262
  #  1. if the package is installed by a user who cannot write `.'
 
7263
  #     make install will fail,
 
7264
  #  2. the above comment should most certainly read
 
7265
  #     $(mkdir_p) $(DESTDIR)$(somedir)
 
7266
  #     so it does not work when $(somedir) is undefined and
 
7267
  #     $(DESTDIR) is not.
 
7268
  #  To support the latter case, we have to write
 
7269
  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
 
7270
  #  so the `.' trick is pointless.
 
7271
  mkdir_p='mkdir -p --'
 
7272
else
 
7273
  # On NextStep and OpenStep, the `mkdir' command does not
 
7274
  # recognize any option.  It will interpret all options as
 
7275
  # directories to create, and then abort because `.' already
 
7276
  # exists.
 
7277
  for d in ./-p ./--version;
 
7278
  do
 
7279
    test -d $d && rmdir $d
 
7280
  done
 
7281
  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
 
7282
  if test -f "$ac_aux_dir/mkinstalldirs"; then
 
7283
    mkdir_p='$(mkinstalldirs)'
 
7284
  else
 
7285
    mkdir_p='$(install_sh) -d'
 
7286
  fi
 
7287
fi
 
7288
AC_SUBST([mkdir_p])])
 
7289
 
 
7290
# Helper functions for option handling.                     -*- Autoconf -*-
 
7291
 
 
7292
# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
 
7293
#
 
7294
# This file is free software; the Free Software Foundation
 
7295
# gives unlimited permission to copy and/or distribute it,
 
7296
# with or without modifications, as long as this notice is preserved.
 
7297
 
 
7298
# serial 3
 
7299
 
 
7300
# _AM_MANGLE_OPTION(NAME)
 
7301
# -----------------------
 
7302
AC_DEFUN([_AM_MANGLE_OPTION],
 
7303
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
 
7304
 
 
7305
# _AM_SET_OPTION(NAME)
 
7306
# ------------------------------
 
7307
# Set option NAME.  Presently that only means defining a flag for this option.
 
7308
AC_DEFUN([_AM_SET_OPTION],
 
7309
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
 
7310
 
 
7311
# _AM_SET_OPTIONS(OPTIONS)
 
7312
# ----------------------------------
 
7313
# OPTIONS is a space-separated list of Automake options.
 
7314
AC_DEFUN([_AM_SET_OPTIONS],
 
7315
[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
 
7316
 
 
7317
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
 
7318
# -------------------------------------------
 
7319
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
 
7320
AC_DEFUN([_AM_IF_OPTION],
 
7321
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
7322
 
 
7323
# Check to make sure that the build environment is sane.    -*- Autoconf -*-
 
7324
 
 
7325
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
 
7326
# Free Software Foundation, Inc.
 
7327
#
 
7328
# This file is free software; the Free Software Foundation
 
7329
# gives unlimited permission to copy and/or distribute it,
 
7330
# with or without modifications, as long as this notice is preserved.
 
7331
 
 
7332
# serial 4
 
7333
 
 
7334
# AM_SANITY_CHECK
 
7335
# ---------------
 
7336
AC_DEFUN([AM_SANITY_CHECK],
 
7337
[AC_MSG_CHECKING([whether build environment is sane])
 
7338
# Just in case
 
7339
sleep 1
 
7340
echo timestamp > conftest.file
 
7341
# Do `set' in a subshell so we don't clobber the current shell's
 
7342
# arguments.  Must try -L first in case configure is actually a
 
7343
# symlink; some systems play weird games with the mod time of symlinks
 
7344
# (eg FreeBSD returns the mod time of the symlink's containing
 
7345
# directory).
 
7346
if (
 
7347
   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
 
7348
   if test "$[*]" = "X"; then
 
7349
      # -L didn't work.
 
7350
      set X `ls -t $srcdir/configure conftest.file`
 
7351
   fi
 
7352
   rm -f conftest.file
 
7353
   if test "$[*]" != "X $srcdir/configure conftest.file" \
 
7354
      && test "$[*]" != "X conftest.file $srcdir/configure"; then
 
7355
 
 
7356
      # If neither matched, then we have a broken ls.  This can happen
 
7357
      # if, for instance, CONFIG_SHELL is bash and it inherits a
 
7358
      # broken ls alias from the environment.  This has actually
 
7359
      # happened.  Such a system could not be considered "sane".
 
7360
      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
 
7361
alias in your environment])
 
7362
   fi
 
7363
 
 
7364
   test "$[2]" = conftest.file
 
7365
   )
 
7366
then
 
7367
   # Ok.
 
7368
   :
 
7369
else
 
7370
   AC_MSG_ERROR([newly created file is older than distributed files!
 
7371
Check your system clock])
 
7372
fi
 
7373
AC_MSG_RESULT(yes)])
 
7374
 
 
7375
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
7376
#
 
7377
# This file is free software; the Free Software Foundation
 
7378
# gives unlimited permission to copy and/or distribute it,
 
7379
# with or without modifications, as long as this notice is preserved.
 
7380
 
 
7381
# AM_PROG_INSTALL_STRIP
 
7382
# ---------------------
 
7383
# One issue with vendor `install' (even GNU) is that you can't
 
7384
# specify the program used to strip binaries.  This is especially
 
7385
# annoying in cross-compiling environments, where the build's strip
 
7386
# is unlikely to handle the host's binaries.
 
7387
# Fortunately install-sh will honor a STRIPPROG variable, so we
 
7388
# always use install-sh in `make install-strip', and initialize
 
7389
# STRIPPROG with the value of the STRIP variable (set by the user).
 
7390
AC_DEFUN([AM_PROG_INSTALL_STRIP],
 
7391
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 
7392
# Installed binaries are usually stripped using `strip' when the user
 
7393
# run `make install-strip'.  However `strip' might not be the right
 
7394
# tool to use in cross-compilation environments, therefore Automake
 
7395
# will honor the `STRIP' environment variable to overrule this program.
 
7396
dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
 
7397
if test "$cross_compiling" != no; then
 
7398
  AC_CHECK_TOOL([STRIP], [strip], :)
 
7399
fi
 
7400
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 
7401
AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
7402
 
 
7403
# Check how to create a tarball.                            -*- Autoconf -*-
 
7404
 
 
7405
# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
7406
#
 
7407
# This file is free software; the Free Software Foundation
 
7408
# gives unlimited permission to copy and/or distribute it,
 
7409
# with or without modifications, as long as this notice is preserved.
 
7410
 
 
7411
# serial 2
 
7412
 
 
7413
# _AM_PROG_TAR(FORMAT)
 
7414
# --------------------
 
7415
# Check how to create a tarball in format FORMAT.
 
7416
# FORMAT should be one of `v7', `ustar', or `pax'.
 
7417
#
 
7418
# Substitute a variable $(am__tar) that is a command
 
7419
# writing to stdout a FORMAT-tarball containing the directory
 
7420
# $tardir.
 
7421
#     tardir=directory && $(am__tar) > result.tar
 
7422
#
 
7423
# Substitute a variable $(am__untar) that extract such
 
7424
# a tarball read from stdin.
 
7425
#     $(am__untar) < result.tar
 
7426
AC_DEFUN([_AM_PROG_TAR],
 
7427
[# Always define AMTAR for backward compatibility.
 
7428
AM_MISSING_PROG([AMTAR], [tar])
 
7429
m4_if([$1], [v7],
 
7430
     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
 
7431
     [m4_case([$1], [ustar],, [pax],,
 
7432
              [m4_fatal([Unknown tar format])])
 
7433
AC_MSG_CHECKING([how to create a $1 tar archive])
 
7434
# Loop over all known methods to create a tar archive until one works.
 
7435
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
 
7436
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
 
7437
# Do not fold the above two line into one, because Tru64 sh and
 
7438
# Solaris sh will not grok spaces in the rhs of `-'.
 
7439
for _am_tool in $_am_tools
 
7440
do
 
7441
  case $_am_tool in
 
7442
  gnutar)
 
7443
    for _am_tar in tar gnutar gtar;
 
7444
    do
 
7445
      AM_RUN_LOG([$_am_tar --version]) && break
 
7446
    done
 
7447
    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
 
7448
    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
 
7449
    am__untar="$_am_tar -xf -"
 
7450
    ;;
 
7451
  plaintar)
 
7452
    # Must skip GNU tar: if it does not support --format= it doesn't create
 
7453
    # ustar tarball either.
 
7454
    (tar --version) >/dev/null 2>&1 && continue
 
7455
    am__tar='tar chf - "$$tardir"'
 
7456
    am__tar_='tar chf - "$tardir"'
 
7457
    am__untar='tar xf -'
 
7458
    ;;
 
7459
  pax)
 
7460
    am__tar='pax -L -x $1 -w "$$tardir"'
 
7461
    am__tar_='pax -L -x $1 -w "$tardir"'
 
7462
    am__untar='pax -r'
 
7463
    ;;
 
7464
  cpio)
 
7465
    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
 
7466
    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
 
7467
    am__untar='cpio -i -H $1 -d'
 
7468
    ;;
 
7469
  none)
 
7470
    am__tar=false
 
7471
    am__tar_=false
 
7472
    am__untar=false
 
7473
    ;;
 
7474
  esac
 
7475
 
 
7476
  # If the value was cached, stop now.  We just wanted to have am__tar
 
7477
  # and am__untar set.
 
7478
  test -n "${am_cv_prog_tar_$1}" && break
 
7479
 
 
7480
  # tar/untar a dummy directory, and stop if the command works
 
7481
  rm -rf conftest.dir
 
7482
  mkdir conftest.dir
 
7483
  echo GrepMe > conftest.dir/file
 
7484
  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
 
7485
  rm -rf conftest.dir
 
7486
  if test -s conftest.tar; then
 
7487
    AM_RUN_LOG([$am__untar <conftest.tar])
 
7488
    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
 
7489
  fi
 
7490
done
 
7491
rm -rf conftest.dir
 
7492
 
 
7493
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
 
7494
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 
7495
AC_SUBST([am__tar])
 
7496
AC_SUBST([am__untar])
 
7497
]) # _AM_PROG_TAR
 
7498