~noskcaj/ubuntu/trusty/gpgme1.0/1.4.3

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Jose Carlos Garcia Sogo
  • Date: 2004-11-16 21:36:40 UTC
  • Revision ID: james.westby@ubuntu.com-20041116213640-6ffmegu7bqe05u7l
Tags: upstream-1.0.1
ImportĀ upstreamĀ versionĀ 1.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# generated automatically by aclocal 1.8.5 -*- 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.8"])
 
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.8.5])])
 
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
# AM_CONDITIONAL                                              -*- Autoconf -*-
 
110
 
 
111
# Copyright (C) 1997, 2000, 2001, 2003 Free Software Foundation, Inc.
 
112
 
 
113
# This program is free software; you can redistribute it and/or modify
 
114
# it under the terms of the GNU General Public License as published by
 
115
# the Free Software Foundation; either version 2, or (at your option)
 
116
# any later version.
 
117
 
 
118
# This program is distributed in the hope that it will be useful,
 
119
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
120
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
121
# GNU General Public License for more details.
 
122
 
 
123
# You should have received a copy of the GNU General Public License
 
124
# along with this program; if not, write to the Free Software
 
125
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
126
# 02111-1307, USA.
 
127
 
 
128
# serial 6
 
129
 
 
130
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
 
131
# -------------------------------------
 
132
# Define a conditional.
 
133
AC_DEFUN([AM_CONDITIONAL],
 
134
[AC_PREREQ(2.52)dnl
 
135
 ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
 
136
        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
 
137
AC_SUBST([$1_TRUE])
 
138
AC_SUBST([$1_FALSE])
 
139
if $2; then
 
140
  $1_TRUE=
 
141
  $1_FALSE='#'
 
142
else
 
143
  $1_TRUE='#'
 
144
  $1_FALSE=
 
145
fi
 
146
AC_CONFIG_COMMANDS_PRE(
 
147
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
 
148
  AC_MSG_ERROR([conditional "$1" was never defined.
 
149
Usually this means the macro was only invoked conditionally.])
 
150
fi])])
 
151
 
 
152
# serial 7                                              -*- Autoconf -*-
 
153
 
 
154
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
 
155
# Free Software Foundation, Inc.
 
156
 
 
157
# This program is free software; you can redistribute it and/or modify
 
158
# it under the terms of the GNU General Public License as published by
 
159
# the Free Software Foundation; either version 2, or (at your option)
 
160
# any later version.
 
161
 
 
162
# This program is distributed in the hope that it will be useful,
 
163
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
164
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
165
# GNU General Public License for more details.
 
166
 
 
167
# You should have received a copy of the GNU General Public License
 
168
# along with this program; if not, write to the Free Software
 
169
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
170
# 02111-1307, USA.
 
171
 
 
172
 
 
173
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
 
174
# written in clear, in which case automake, when reading aclocal.m4,
 
175
# will think it sees a *use*, and therefore will trigger all it's
 
176
# C support machinery.  Also note that it means that autoscan, seeing
 
177
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
 
178
 
 
179
 
 
180
 
 
181
# _AM_DEPENDENCIES(NAME)
 
182
# ----------------------
 
183
# See how the compiler implements dependency checking.
 
184
# NAME is "CC", "CXX", "GCJ", or "OBJC".
 
185
# We try a few techniques and use that to set a single cache variable.
 
186
#
 
187
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
 
188
# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
 
189
# dependency, and given that the user is not expected to run this macro,
 
190
# just rely on AC_PROG_CC.
 
191
AC_DEFUN([_AM_DEPENDENCIES],
 
192
[AC_REQUIRE([AM_SET_DEPDIR])dnl
 
193
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
 
194
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
 
195
AC_REQUIRE([AM_DEP_TRACK])dnl
 
196
 
 
197
ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
 
198
       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
 
199
       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
 
200
       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
 
201
                   [depcc="$$1"   am_compiler_list=])
 
202
 
 
203
AC_CACHE_CHECK([dependency style of $depcc],
 
204
               [am_cv_$1_dependencies_compiler_type],
 
205
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
206
  # We make a subdir and do the tests there.  Otherwise we can end up
 
207
  # making bogus files that we don't know about and never remove.  For
 
208
  # instance it was reported that on HP-UX the gcc test will end up
 
209
  # making a dummy file named `D' -- because `-MD' means `put the output
 
210
  # in D'.
 
211
  mkdir conftest.dir
 
212
  # Copy depcomp to subdir because otherwise we won't find it if we're
 
213
  # using a relative directory.
 
214
  cp "$am_depcomp" conftest.dir
 
215
  cd conftest.dir
 
216
  # We will build objects and dependencies in a subdirectory because
 
217
  # it helps to detect inapplicable dependency modes.  For instance
 
218
  # both Tru64's cc and ICC support -MD to output dependencies as a
 
219
  # side effect of compilation, but ICC will put the dependencies in
 
220
  # the current directory while Tru64 will put them in the object
 
221
  # directory.
 
222
  mkdir sub
 
223
 
 
224
  am_cv_$1_dependencies_compiler_type=none
 
225
  if test "$am_compiler_list" = ""; then
 
226
     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
 
227
  fi
 
228
  for depmode in $am_compiler_list; do
 
229
    # Setup a source with many dependencies, because some compilers
 
230
    # like to wrap large dependency lists on column 80 (with \), and
 
231
    # we should not choose a depcomp mode which is confused by this.
 
232
    #
 
233
    # We need to recreate these files for each test, as the compiler may
 
234
    # overwrite some of them when testing with obscure command lines.
 
235
    # This happens at least with the AIX C compiler.
 
236
    : > sub/conftest.c
 
237
    for i in 1 2 3 4 5 6; do
 
238
      echo '#include "conftst'$i'.h"' >> sub/conftest.c
 
239
      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
 
240
      # Solaris 8's {/usr,}/bin/sh.
 
241
      touch sub/conftst$i.h
 
242
    done
 
243
    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
244
 
 
245
    case $depmode in
 
246
    nosideeffect)
 
247
      # after this tag, mechanisms are not by side-effect, so they'll
 
248
      # only be used when explicitly requested
 
249
      if test "x$enable_dependency_tracking" = xyes; then
 
250
        continue
 
251
      else
 
252
        break
 
253
      fi
 
254
      ;;
 
255
    none) break ;;
 
256
    esac
 
257
    # We check with `-c' and `-o' for the sake of the "dashmstdout"
 
258
    # mode.  It turns out that the SunPro C++ compiler does not properly
 
259
    # handle `-M -o', and we need to detect this.
 
260
    if depmode=$depmode \
 
261
       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
 
262
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
 
263
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
 
264
         >/dev/null 2>conftest.err &&
 
265
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
 
266
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
 
267
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
 
268
      # icc doesn't choke on unknown options, it will just issue warnings
 
269
      # or remarks (even with -Werror).  So we grep stderr for any message
 
270
      # that says an option was ignored or not supported.
 
271
      # When given -MP, icc 7.0 and 7.1 complain thusly:
 
272
      #   icc: Command line warning: ignoring option '-M'; no argument required
 
273
      # The diagnosis changed in icc 8.0:
 
274
      #   icc: Command line remark: option '-MP' not supported
 
275
      if (grep 'ignoring option' conftest.err ||
 
276
          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
 
277
        am_cv_$1_dependencies_compiler_type=$depmode
 
278
        break
 
279
      fi
 
280
    fi
 
281
  done
 
282
 
 
283
  cd ..
 
284
  rm -rf conftest.dir
 
285
else
 
286
  am_cv_$1_dependencies_compiler_type=none
 
287
fi
 
288
])
 
289
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
 
290
AM_CONDITIONAL([am__fastdep$1], [
 
291
  test "x$enable_dependency_tracking" != xno \
 
292
  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
 
293
])
 
294
 
 
295
 
 
296
# AM_SET_DEPDIR
 
297
# -------------
 
298
# Choose a directory name for dependency files.
 
299
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
 
300
AC_DEFUN([AM_SET_DEPDIR],
 
301
[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
302
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
 
303
])
 
304
 
 
305
 
 
306
# AM_DEP_TRACK
 
307
# ------------
 
308
AC_DEFUN([AM_DEP_TRACK],
 
309
[AC_ARG_ENABLE(dependency-tracking,
 
310
[  --disable-dependency-tracking  speeds up one-time build
 
311
  --enable-dependency-tracking   do not reject slow dependency extractors])
 
312
if test "x$enable_dependency_tracking" != xno; then
 
313
  am_depcomp="$ac_aux_dir/depcomp"
 
314
  AMDEPBACKSLASH='\'
 
315
fi
 
316
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 
317
AC_SUBST([AMDEPBACKSLASH])
 
318
])
 
319
 
 
320
# Generate code to set up dependency tracking.   -*- Autoconf -*-
 
321
 
 
322
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
323
 
 
324
# This program is free software; you can redistribute it and/or modify
 
325
# it under the terms of the GNU General Public License as published by
 
326
# the Free Software Foundation; either version 2, or (at your option)
 
327
# any later version.
 
328
 
 
329
# This program is distributed in the hope that it will be useful,
 
330
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
331
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
332
# GNU General Public License for more details.
 
333
 
 
334
# You should have received a copy of the GNU General Public License
 
335
# along with this program; if not, write to the Free Software
 
336
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
337
# 02111-1307, USA.
 
338
 
 
339
#serial 2
 
340
 
 
341
# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
342
# ------------------------------
 
343
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
 
344
[for mf in $CONFIG_FILES; do
 
345
  # Strip MF so we end up with the name of the file.
 
346
  mf=`echo "$mf" | sed -e 's/:.*$//'`
 
347
  # Check whether this is an Automake generated Makefile or not.
 
348
  # We used to match only the files named `Makefile.in', but
 
349
  # some people rename them; so instead we look at the file content.
 
350
  # Grep'ing the first line is not enough: some people post-process
 
351
  # each Makefile.in and add a new line on top of each file to say so.
 
352
  # So let's grep whole file.
 
353
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
354
    dirpart=`AS_DIRNAME("$mf")`
 
355
  else
 
356
    continue
 
357
  fi
 
358
  grep '^DEP_FILES *= *[[^ @%:@]]' < "$mf" > /dev/null || continue
 
359
  # Extract the definition of DEP_FILES from the Makefile without
 
360
  # running `make'.
 
361
  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
 
362
  test -z "$DEPDIR" && continue
 
363
  # When using ansi2knr, U may be empty or an underscore; expand it
 
364
  U=`sed -n 's/^U = //p' < "$mf"`
 
365
  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
 
366
  # We invoke sed twice because it is the simplest approach to
 
367
  # changing $(DEPDIR) to its actual value in the expansion.
 
368
  for file in `sed -n '
 
369
    /^DEP_FILES = .*\\\\$/ {
 
370
      s/^DEP_FILES = //
 
371
      :loop
 
372
        s/\\\\$//
 
373
        p
 
374
        n
 
375
        /\\\\$/ b loop
 
376
      p
 
377
    }
 
378
    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
 
379
       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
380
    # Make sure the directory exists.
 
381
    test -f "$dirpart/$file" && continue
 
382
    fdir=`AS_DIRNAME(["$file"])`
 
383
    AS_MKDIR_P([$dirpart/$fdir])
 
384
    # echo "creating $dirpart/$file"
 
385
    echo '# dummy' > "$dirpart/$file"
 
386
  done
 
387
done
 
388
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
389
 
 
390
 
 
391
# AM_OUTPUT_DEPENDENCY_COMMANDS
 
392
# -----------------------------
 
393
# This macro should only be invoked once -- use via AC_REQUIRE.
 
394
#
 
395
# This code is only required when automatic dependency tracking
 
396
# is enabled.  FIXME.  This creates each `.P' file that we will
 
397
# need in order to bootstrap the dependency handling code.
 
398
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
 
399
[AC_CONFIG_COMMANDS([depfiles],
 
400
     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
 
401
     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
 
402
])
 
403
 
 
404
# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*-
 
405
 
 
406
# Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc.
 
407
 
 
408
# This program is free software; you can redistribute it and/or modify
 
409
# it under the terms of the GNU General Public License as published by
 
410
# the Free Software Foundation; either version 2, or (at your option)
 
411
# any later version.
 
412
 
 
413
# This program is distributed in the hope that it will be useful,
 
414
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
415
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
416
# GNU General Public License for more details.
 
417
 
 
418
# You should have received a copy of the GNU General Public License
 
419
# along with this program; if not, write to the Free Software
 
420
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
421
# 02111-1307, USA.
 
422
 
 
423
# serial 7
 
424
 
 
425
# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
 
426
AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
 
427
 
 
428
# Do all the work for Automake.                            -*- Autoconf -*-
 
429
 
 
430
# This macro actually does too much some checks are only needed if
 
431
# your package does certain things.  But this isn't really a big deal.
 
432
 
 
433
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
 
434
# Free Software Foundation, Inc.
 
435
 
 
436
# This program is free software; you can redistribute it and/or modify
 
437
# it under the terms of the GNU General Public License as published by
 
438
# the Free Software Foundation; either version 2, or (at your option)
 
439
# any later version.
 
440
 
 
441
# This program is distributed in the hope that it will be useful,
 
442
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
443
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
444
# GNU General Public License for more details.
 
445
 
 
446
# You should have received a copy of the GNU General Public License
 
447
# along with this program; if not, write to the Free Software
 
448
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
449
# 02111-1307, USA.
 
450
 
 
451
# serial 11
 
452
 
 
453
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
 
454
# AM_INIT_AUTOMAKE([OPTIONS])
 
455
# -----------------------------------------------
 
456
# The call with PACKAGE and VERSION arguments is the old style
 
457
# call (pre autoconf-2.50), which is being phased out.  PACKAGE
 
458
# and VERSION should now be passed to AC_INIT and removed from
 
459
# the call to AM_INIT_AUTOMAKE.
 
460
# We support both call styles for the transition.  After
 
461
# the next Automake release, Autoconf can make the AC_INIT
 
462
# arguments mandatory, and then we can depend on a new Autoconf
 
463
# release and drop the old call support.
 
464
AC_DEFUN([AM_INIT_AUTOMAKE],
 
465
[AC_PREREQ([2.58])dnl
 
466
dnl Autoconf wants to disallow AM_ names.  We explicitly allow
 
467
dnl the ones we care about.
 
468
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
 
469
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
 
470
AC_REQUIRE([AC_PROG_INSTALL])dnl
 
471
# test to see if srcdir already configured
 
472
if test "`cd $srcdir && pwd`" != "`pwd`" &&
 
473
   test -f $srcdir/config.status; then
 
474
  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
 
475
fi
 
476
 
 
477
# test whether we have cygpath
 
478
if test -z "$CYGPATH_W"; then
 
479
  if (cygpath --version) >/dev/null 2>/dev/null; then
 
480
    CYGPATH_W='cygpath -w'
 
481
  else
 
482
    CYGPATH_W=echo
 
483
  fi
 
484
fi
 
485
AC_SUBST([CYGPATH_W])
 
486
 
 
487
# Define the identity of the package.
 
488
dnl Distinguish between old-style and new-style calls.
 
489
m4_ifval([$2],
 
490
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
 
491
 AC_SUBST([PACKAGE], [$1])dnl
 
492
 AC_SUBST([VERSION], [$2])],
 
493
[_AM_SET_OPTIONS([$1])dnl
 
494
 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
 
495
 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
 
496
 
 
497
_AM_IF_OPTION([no-define],,
 
498
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
 
499
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
 
500
 
 
501
# Some tools Automake needs.
 
502
AC_REQUIRE([AM_SANITY_CHECK])dnl
 
503
AC_REQUIRE([AC_ARG_PROGRAM])dnl
 
504
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
 
505
AM_MISSING_PROG(AUTOCONF, autoconf)
 
506
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
 
507
AM_MISSING_PROG(AUTOHEADER, autoheader)
 
508
AM_MISSING_PROG(MAKEINFO, makeinfo)
 
509
AM_MISSING_PROG(AMTAR, tar)
 
510
AM_PROG_INSTALL_SH
 
511
AM_PROG_INSTALL_STRIP
 
512
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
 
513
# We need awk for the "check" target.  The system "awk" is bad on
 
514
# some platforms.
 
515
AC_REQUIRE([AC_PROG_AWK])dnl
 
516
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
 
517
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
518
 
 
519
_AM_IF_OPTION([no-dependencies],,
 
520
[AC_PROVIDE_IFELSE([AC_PROG_CC],
 
521
                  [_AM_DEPENDENCIES(CC)],
 
522
                  [define([AC_PROG_CC],
 
523
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
 
524
AC_PROVIDE_IFELSE([AC_PROG_CXX],
 
525
                  [_AM_DEPENDENCIES(CXX)],
 
526
                  [define([AC_PROG_CXX],
 
527
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
 
528
])
 
529
])
 
530
 
 
531
 
 
532
# When config.status generates a header, we must update the stamp-h file.
 
533
# This file resides in the same directory as the config header
 
534
# that is generated.  The stamp files are numbered to have different names.
 
535
 
 
536
# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
 
537
# loop where config.status creates the headers, so we can generate
 
538
# our stamp files there.
 
539
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
 
540
[# Compute $1's index in $config_headers.
 
541
_am_stamp_count=1
 
542
for _am_header in $config_headers :; do
 
543
  case $_am_header in
 
544
    $1 | $1:* )
 
545
      break ;;
 
546
    * )
 
547
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
 
548
  esac
 
549
done
 
550
echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
 
551
 
 
552
# AM_PROG_INSTALL_SH
 
553
# ------------------
 
554
# Define $install_sh.
 
555
 
 
556
# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
 
557
 
 
558
# This program is free software; you can redistribute it and/or modify
 
559
# it under the terms of the GNU General Public License as published by
 
560
# the Free Software Foundation; either version 2, or (at your option)
 
561
# any later version.
 
562
 
 
563
# This program is distributed in the hope that it will be useful,
 
564
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
565
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
566
# GNU General Public License for more details.
 
567
 
 
568
# You should have received a copy of the GNU General Public License
 
569
# along with this program; if not, write to the Free Software
 
570
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
571
# 02111-1307, USA.
 
572
 
 
573
AC_DEFUN([AM_PROG_INSTALL_SH],
 
574
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
575
install_sh=${install_sh-"$am_aux_dir/install-sh"}
 
576
AC_SUBST(install_sh)])
 
577
 
 
578
#                                                          -*- Autoconf -*-
 
579
# Copyright (C) 2003  Free Software Foundation, Inc.
 
580
 
 
581
# This program is free software; you can redistribute it and/or modify
 
582
# it under the terms of the GNU General Public License as published by
 
583
# the Free Software Foundation; either version 2, or (at your option)
 
584
# any later version.
 
585
 
 
586
# This program is distributed in the hope that it will be useful,
 
587
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
588
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
589
# GNU General Public License for more details.
 
590
 
 
591
# You should have received a copy of the GNU General Public License
 
592
# along with this program; if not, write to the Free Software
 
593
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
594
# 02111-1307, USA.
 
595
 
 
596
# serial 1
 
597
 
 
598
# Check whether the underlying file-system supports filenames
 
599
# with a leading dot.  For instance MS-DOS doesn't.
 
600
AC_DEFUN([AM_SET_LEADING_DOT],
 
601
[rm -rf .tst 2>/dev/null
 
602
mkdir .tst 2>/dev/null
 
603
if test -d .tst; then
 
604
  am__leading_dot=.
 
605
else
 
606
  am__leading_dot=_
 
607
fi
 
608
rmdir .tst 2>/dev/null
 
609
AC_SUBST([am__leading_dot])])
 
610
 
 
611
# Add --enable-maintainer-mode option to configure.
 
612
# From Jim Meyering
 
613
 
 
614
# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004
 
615
# Free Software Foundation, Inc.
 
616
 
 
617
# This program is free software; you can redistribute it and/or modify
 
618
# it under the terms of the GNU General Public License as published by
 
619
# the Free Software Foundation; either version 2, or (at your option)
 
620
# any later version.
 
621
 
 
622
# This program is distributed in the hope that it will be useful,
 
623
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
624
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
625
# GNU General Public License for more details.
 
626
 
 
627
# You should have received a copy of the GNU General Public License
 
628
# along with this program; if not, write to the Free Software
 
629
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
630
# 02111-1307, USA.
 
631
 
 
632
# serial 3
 
633
 
 
634
AC_DEFUN([AM_MAINTAINER_MODE],
 
635
[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
 
636
  dnl maintainer-mode is disabled by default
 
637
  AC_ARG_ENABLE(maintainer-mode,
 
638
[  --enable-maintainer-mode  enable make rules and dependencies not useful
 
639
                          (and sometimes confusing) to the casual installer],
 
640
      USE_MAINTAINER_MODE=$enableval,
 
641
      USE_MAINTAINER_MODE=no)
 
642
  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
 
643
  AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
 
644
  MAINT=$MAINTAINER_MODE_TRUE
 
645
  AC_SUBST(MAINT)dnl
 
646
]
 
647
)
 
648
 
 
649
AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
 
650
 
 
651
# Check to see how 'make' treats includes.      -*- Autoconf -*-
 
652
 
 
653
# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
 
654
 
 
655
# This program is free software; you can redistribute it and/or modify
 
656
# it under the terms of the GNU General Public License as published by
 
657
# the Free Software Foundation; either version 2, or (at your option)
 
658
# any later version.
 
659
 
 
660
# This program is distributed in the hope that it will be useful,
 
661
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
662
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
663
# GNU General Public License for more details.
 
664
 
 
665
# You should have received a copy of the GNU General Public License
 
666
# along with this program; if not, write to the Free Software
 
667
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
668
# 02111-1307, USA.
 
669
 
 
670
# serial 2
 
671
 
 
672
# AM_MAKE_INCLUDE()
 
673
# -----------------
 
674
# Check to see how make treats includes.
 
675
AC_DEFUN([AM_MAKE_INCLUDE],
 
676
[am_make=${MAKE-make}
 
677
cat > confinc << 'END'
 
678
am__doit:
 
679
        @echo done
 
680
.PHONY: am__doit
 
681
END
 
682
# If we don't find an include directive, just comment out the code.
 
683
AC_MSG_CHECKING([for style of include used by $am_make])
 
684
am__include="#"
 
685
am__quote=
 
686
_am_result=none
 
687
# First try GNU make style include.
 
688
echo "include confinc" > confmf
 
689
# We grep out `Entering directory' and `Leaving directory'
 
690
# messages which can occur if `w' ends up in MAKEFLAGS.
 
691
# In particular we don't look at `^make:' because GNU make might
 
692
# be invoked under some other name (usually "gmake"), in which
 
693
# case it prints its new name instead of `make'.
 
694
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
 
695
   am__include=include
 
696
   am__quote=
 
697
   _am_result=GNU
 
698
fi
 
699
# Now try BSD make style include.
 
700
if test "$am__include" = "#"; then
 
701
   echo '.include "confinc"' > confmf
 
702
   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
 
703
      am__include=.include
 
704
      am__quote="\""
 
705
      _am_result=BSD
 
706
   fi
 
707
fi
 
708
AC_SUBST([am__include])
 
709
AC_SUBST([am__quote])
 
710
AC_MSG_RESULT([$_am_result])
 
711
rm -f confinc confmf
 
712
])
 
713
 
 
714
#  -*- Autoconf -*-
 
715
 
 
716
 
 
717
# Copyright (C) 1997, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
 
718
 
 
719
# This program is free software; you can redistribute it and/or modify
 
720
# it under the terms of the GNU General Public License as published by
 
721
# the Free Software Foundation; either version 2, or (at your option)
 
722
# any later version.
 
723
 
 
724
# This program is distributed in the hope that it will be useful,
 
725
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
726
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
727
# GNU General Public License for more details.
 
728
 
 
729
# You should have received a copy of the GNU General Public License
 
730
# along with this program; if not, write to the Free Software
 
731
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
732
# 02111-1307, USA.
 
733
 
 
734
# serial 3
 
735
 
 
736
# AM_MISSING_PROG(NAME, PROGRAM)
 
737
# ------------------------------
 
738
AC_DEFUN([AM_MISSING_PROG],
 
739
[AC_REQUIRE([AM_MISSING_HAS_RUN])
 
740
$1=${$1-"${am_missing_run}$2"}
 
741
AC_SUBST($1)])
 
742
 
 
743
 
 
744
# AM_MISSING_HAS_RUN
 
745
# ------------------
 
746
# Define MISSING if not defined so far and test if it supports --run.
 
747
# If it does, set am_missing_run to use it, otherwise, to nothing.
 
748
AC_DEFUN([AM_MISSING_HAS_RUN],
 
749
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
750
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
 
751
# Use eval to expand $SHELL
 
752
if eval "$MISSING --run true"; then
 
753
  am_missing_run="$MISSING --run "
 
754
else
 
755
  am_missing_run=
 
756
  AC_MSG_WARN([`missing' script is too old or missing])
 
757
fi
 
758
])
 
759
 
 
760
# AM_PROG_MKDIR_P
 
761
# ---------------
 
762
# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
 
763
 
 
764
# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
 
765
 
 
766
# This program is free software; you can redistribute it and/or modify
 
767
# it under the terms of the GNU General Public License as published by
 
768
# the Free Software Foundation; either version 2, or (at your option)
 
769
# any later version.
 
770
 
 
771
# This program is distributed in the hope that it will be useful,
 
772
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
773
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
774
# GNU General Public License for more details.
 
775
 
 
776
# You should have received a copy of the GNU General Public License
 
777
# along with this program; if not, write to the Free Software
 
778
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
779
# 02111-1307, USA.
 
780
 
 
781
# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
 
782
# created by `make install' are always world readable, even if the
 
783
# installer happens to have an overly restrictive umask (e.g. 077).
 
784
# This was a mistake.  There are at least two reasons why we must not
 
785
# use `-m 0755':
 
786
#   - it causes special bits like SGID to be ignored,
 
787
#   - it may be too restrictive (some setups expect 775 directories).
 
788
#
 
789
# Do not use -m 0755 and let people choose whatever they expect by
 
790
# setting umask.
 
791
#
 
792
# We cannot accept any implementation of `mkdir' that recognizes `-p'.
 
793
# Some implementations (such as Solaris 8's) are not thread-safe: if a
 
794
# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
 
795
# concurrently, both version can detect that a/ is missing, but only
 
796
# one can create it and the other will error out.  Consequently we
 
797
# restrict ourselves to GNU make (using the --version option ensures
 
798
# this.)
 
799
AC_DEFUN([AM_PROG_MKDIR_P],
 
800
[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
 
801
  # Keeping the `.' argument allows $(mkdir_p) to be used without
 
802
  # argument.  Indeed, we sometimes output rules like
 
803
  #   $(mkdir_p) $(somedir)
 
804
  # where $(somedir) is conditionally defined.
 
805
  # (`test -n '$(somedir)' && $(mkdir_p) $(somedir)' is a more
 
806
  # expensive solution, as it forces Make to start a sub-shell.)
 
807
  mkdir_p='mkdir -p -- .'
 
808
else
 
809
  # On NextStep and OpenStep, the `mkdir' command does not
 
810
  # recognize any option.  It will interpret all options as
 
811
  # directories to create, and then abort because `.' already
 
812
  # exists.
 
813
  for d in ./-p ./--version;
 
814
  do
 
815
    test -d $d && rmdir $d
 
816
  done
 
817
  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
 
818
  if test -f "$ac_aux_dir/mkinstalldirs"; then
 
819
    mkdir_p='$(mkinstalldirs)'
 
820
  else
 
821
    mkdir_p='$(install_sh) -d'
 
822
  fi
 
823
fi
 
824
AC_SUBST([mkdir_p])])
 
825
 
 
826
# Helper functions for option handling.                    -*- Autoconf -*-
 
827
 
 
828
# Copyright (C) 2001, 2002, 2003  Free Software Foundation, Inc.
 
829
 
 
830
# This program is free software; you can redistribute it and/or modify
 
831
# it under the terms of the GNU General Public License as published by
 
832
# the Free Software Foundation; either version 2, or (at your option)
 
833
# any later version.
 
834
 
 
835
# This program is distributed in the hope that it will be useful,
 
836
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
837
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
838
# GNU General Public License for more details.
 
839
 
 
840
# You should have received a copy of the GNU General Public License
 
841
# along with this program; if not, write to the Free Software
 
842
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
843
# 02111-1307, USA.
 
844
 
 
845
# serial 2
 
846
 
 
847
# _AM_MANGLE_OPTION(NAME)
 
848
# -----------------------
 
849
AC_DEFUN([_AM_MANGLE_OPTION],
 
850
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
 
851
 
 
852
# _AM_SET_OPTION(NAME)
 
853
# ------------------------------
 
854
# Set option NAME.  Presently that only means defining a flag for this option.
 
855
AC_DEFUN([_AM_SET_OPTION],
 
856
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
 
857
 
 
858
# _AM_SET_OPTIONS(OPTIONS)
 
859
# ----------------------------------
 
860
# OPTIONS is a space-separated list of Automake options.
 
861
AC_DEFUN([_AM_SET_OPTIONS],
 
862
[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
 
863
 
 
864
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
 
865
# -------------------------------------------
 
866
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
 
867
AC_DEFUN([_AM_IF_OPTION],
 
868
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
869
 
 
870
#
 
871
# Check to make sure that the build environment is sane.
 
872
#
 
873
 
 
874
# Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc.
 
875
 
 
876
# This program is free software; you can redistribute it and/or modify
 
877
# it under the terms of the GNU General Public License as published by
 
878
# the Free Software Foundation; either version 2, or (at your option)
 
879
# any later version.
 
880
 
 
881
# This program is distributed in the hope that it will be useful,
 
882
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
883
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
884
# GNU General Public License for more details.
 
885
 
 
886
# You should have received a copy of the GNU General Public License
 
887
# along with this program; if not, write to the Free Software
 
888
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
889
# 02111-1307, USA.
 
890
 
 
891
# serial 3
 
892
 
 
893
# AM_SANITY_CHECK
 
894
# ---------------
 
895
AC_DEFUN([AM_SANITY_CHECK],
 
896
[AC_MSG_CHECKING([whether build environment is sane])
 
897
# Just in case
 
898
sleep 1
 
899
echo timestamp > conftest.file
 
900
# Do `set' in a subshell so we don't clobber the current shell's
 
901
# arguments.  Must try -L first in case configure is actually a
 
902
# symlink; some systems play weird games with the mod time of symlinks
 
903
# (eg FreeBSD returns the mod time of the symlink's containing
 
904
# directory).
 
905
if (
 
906
   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
 
907
   if test "$[*]" = "X"; then
 
908
      # -L didn't work.
 
909
      set X `ls -t $srcdir/configure conftest.file`
 
910
   fi
 
911
   rm -f conftest.file
 
912
   if test "$[*]" != "X $srcdir/configure conftest.file" \
 
913
      && test "$[*]" != "X conftest.file $srcdir/configure"; then
 
914
 
 
915
      # If neither matched, then we have a broken ls.  This can happen
 
916
      # if, for instance, CONFIG_SHELL is bash and it inherits a
 
917
      # broken ls alias from the environment.  This has actually
 
918
      # happened.  Such a system could not be considered "sane".
 
919
      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
 
920
alias in your environment])
 
921
   fi
 
922
 
 
923
   test "$[2]" = conftest.file
 
924
   )
 
925
then
 
926
   # Ok.
 
927
   :
 
928
else
 
929
   AC_MSG_ERROR([newly created file is older than distributed files!
 
930
Check your system clock])
 
931
fi
 
932
AC_MSG_RESULT(yes)])
 
933
 
 
934
# AM_PROG_INSTALL_STRIP
 
935
 
 
936
# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
 
937
 
 
938
# This program is free software; you can redistribute it and/or modify
 
939
# it under the terms of the GNU General Public License as published by
 
940
# the Free Software Foundation; either version 2, or (at your option)
 
941
# any later version.
 
942
 
 
943
# This program is distributed in the hope that it will be useful,
 
944
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
945
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
946
# GNU General Public License for more details.
 
947
 
 
948
# You should have received a copy of the GNU General Public License
 
949
# along with this program; if not, write to the Free Software
 
950
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
951
# 02111-1307, USA.
 
952
 
 
953
# One issue with vendor `install' (even GNU) is that you can't
 
954
# specify the program used to strip binaries.  This is especially
 
955
# annoying in cross-compiling environments, where the build's strip
 
956
# is unlikely to handle the host's binaries.
 
957
# Fortunately install-sh will honor a STRIPPROG variable, so we
 
958
# always use install-sh in `make install-strip', and initialize
 
959
# STRIPPROG with the value of the STRIP variable (set by the user).
 
960
AC_DEFUN([AM_PROG_INSTALL_STRIP],
 
961
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 
962
# Installed binaries are usually stripped using `strip' when the user
 
963
# run `make install-strip'.  However `strip' might not be the right
 
964
# tool to use in cross-compilation environments, therefore Automake
 
965
# will honor the `STRIP' environment variable to overrule this program.
 
966
dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
 
967
if test "$cross_compiling" != no; then
 
968
  AC_CHECK_TOOL([STRIP], [strip], :)
 
969
fi
 
970
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 
971
AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
972
 
 
973
m4_include([m4/glibc21.m4])
 
974
m4_include([m4/gpg-error.m4])
 
975
m4_include([m4/libtool.m4])
 
976
m4_include([m4/pth.m4])
 
977
m4_include([acinclude.m4])