~ubuntu-branches/ubuntu/oneiric/poldi/oneiric

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Elie Mamane
  • Date: 2009-07-30 19:24:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730192402-xd6u17n502qu6cah
Tags: 0.4.1-1
* New upstream version (closes: #502562)
   - Handle missing reader gracefully (closes: #428053)
* New comaintainer
* Add Homepage field to debian/control
* Bump up Standards-Version to 3.8.2
* Make poldi much more silent when not in debug mode
* Tweak some prompts
* Shut up scdaemon when not in verbose mode
* Timeout (3s hardcoded) when waiting for a smartcard
* Allow PIN with any character (not only digits)
* Reasonable default configuration file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# generated automatically by aclocal 1.9.4 -*- Autoconf -*-
 
1
# generated automatically by aclocal 1.10.1 -*- Autoconf -*-
2
2
 
3
 
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
4
 
# Free Software Foundation, Inc.
 
3
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 
4
# 2005, 2006, 2007, 2008  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
 
#                                                        -*- 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
 
14
m4_ifndef([AC_AUTOCONF_VERSION],
 
15
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 
16
m4_if(AC_AUTOCONF_VERSION, [2.61],,
 
17
[m4_warning([this file was generated for autoconf 2.61.
 
18
You have another version of autoconf.  It may work, but is not guaranteed to.
 
19
If you have problems, you may need to regenerate the build system entirely.
 
20
To do so, use the procedure documented by the package, typically `autoreconf'.])])
 
21
 
 
22
# intlmacosx.m4 serial 1 (gettext-0.17)
 
23
dnl Copyright (C) 2004-2007 Free Software Foundation, Inc.
 
24
dnl This file is free software; the Free Software Foundation
 
25
dnl gives unlimited permission to copy and/or distribute it,
 
26
dnl with or without modifications, as long as this notice is preserved.
 
27
dnl
 
28
dnl This file can can be used in projects which are not available under
 
29
dnl the GNU General Public License or the GNU Library General Public
 
30
dnl License but which still want to provide support for the GNU gettext
 
31
dnl functionality.
 
32
dnl Please note that the actual code of the GNU gettext library is covered
 
33
dnl by the GNU Library General Public License, and the rest of the GNU
 
34
dnl gettext package package is covered by the GNU General Public License.
 
35
dnl They are *not* in the public domain.
 
36
 
 
37
dnl Checks for special options needed on MacOS X.
 
38
dnl Defines INTL_MACOSX_LIBS.
 
39
AC_DEFUN([gt_INTL_MACOSX],
 
40
[
 
41
  dnl Check for API introduced in MacOS X 10.2.
 
42
  AC_CACHE_CHECK([for CFPreferencesCopyAppValue],
 
43
    gt_cv_func_CFPreferencesCopyAppValue,
 
44
    [gt_save_LIBS="$LIBS"
 
45
     LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
 
46
     AC_TRY_LINK([#include <CoreFoundation/CFPreferences.h>],
 
47
       [CFPreferencesCopyAppValue(NULL, NULL)],
 
48
       [gt_cv_func_CFPreferencesCopyAppValue=yes],
 
49
       [gt_cv_func_CFPreferencesCopyAppValue=no])
 
50
     LIBS="$gt_save_LIBS"])
 
51
  if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
 
52
    AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], 1,
 
53
      [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.])
 
54
  fi
 
55
  dnl Check for API introduced in MacOS X 10.3.
 
56
  AC_CACHE_CHECK([for CFLocaleCopyCurrent], gt_cv_func_CFLocaleCopyCurrent,
 
57
    [gt_save_LIBS="$LIBS"
 
58
     LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
 
59
     AC_TRY_LINK([#include <CoreFoundation/CFLocale.h>], [CFLocaleCopyCurrent();],
 
60
       [gt_cv_func_CFLocaleCopyCurrent=yes],
 
61
       [gt_cv_func_CFLocaleCopyCurrent=no])
 
62
     LIBS="$gt_save_LIBS"])
 
63
  if test $gt_cv_func_CFLocaleCopyCurrent = yes; then
 
64
    AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], 1,
 
65
      [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.])
 
66
  fi
 
67
  INTL_MACOSX_LIBS=
 
68
  if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then
 
69
    INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation"
 
70
  fi
 
71
  AC_SUBST([INTL_MACOSX_LIBS])
 
72
])
 
73
 
 
74
# Copyright (C) 2002, 2003, 2005, 2006, 2007  Free Software Foundation, Inc.
 
75
#
 
76
# This file is free software; the Free Software Foundation
 
77
# gives unlimited permission to copy and/or distribute it,
 
78
# with or without modifications, as long as this notice is preserved.
31
79
 
32
80
# AM_AUTOMAKE_VERSION(VERSION)
33
81
# ----------------------------
34
82
# Automake X.Y traces this macro to ensure aclocal.m4 has been
35
83
# generated from the m4 files accompanying Automake X.Y.
36
 
AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
 
84
# (This private macro should not be called outside this file.)
 
85
AC_DEFUN([AM_AUTOMAKE_VERSION],
 
86
[am__api_version='1.10'
 
87
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 
88
dnl require some minimum version.  Point them to the right macro.
 
89
m4_if([$1], [1.10.1], [],
 
90
      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 
91
])
 
92
 
 
93
# _AM_AUTOCONF_VERSION(VERSION)
 
94
# -----------------------------
 
95
# aclocal traces this macro to find the Autoconf version.
 
96
# This is a private macro too.  Using m4_define simplifies
 
97
# the logic in aclocal, which can simply ignore this definition.
 
98
m4_define([_AM_AUTOCONF_VERSION], [])
37
99
 
38
100
# AM_SET_CURRENT_AUTOMAKE_VERSION
39
101
# -------------------------------
40
 
# Call AM_AUTOMAKE_VERSION so it can be traced.
 
102
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
41
103
# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
42
104
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
43
 
         [AM_AUTOMAKE_VERSION([1.9.4])])
44
 
 
45
 
# AM_AUX_DIR_EXPAND
46
 
 
47
 
# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
48
 
 
49
 
# This program is free software; you can redistribute it and/or modify
50
 
# it under the terms of the GNU General Public License as published by
51
 
# the Free Software Foundation; either version 2, or (at your option)
52
 
# any later version.
53
 
 
54
 
# This program is distributed in the hope that it will be useful,
55
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
56
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57
 
# GNU General Public License for more details.
58
 
 
59
 
# You should have received a copy of the GNU General Public License
60
 
# along with this program; if not, write to the Free Software
61
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
62
 
# 02111-1307, USA.
 
105
[AM_AUTOMAKE_VERSION([1.10.1])dnl
 
106
m4_ifndef([AC_AUTOCONF_VERSION],
 
107
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 
108
_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)])
 
109
 
 
110
# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 
111
 
 
112
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
113
#
 
114
# This file is free software; the Free Software Foundation
 
115
# gives unlimited permission to copy and/or distribute it,
 
116
# with or without modifications, as long as this notice is preserved.
63
117
 
64
118
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
65
119
# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
106
160
am_aux_dir=`cd $ac_aux_dir && pwd`
107
161
])
108
162
 
109
 
# AM_CONDITIONAL                                              -*- Autoconf -*-
110
 
 
111
 
# Copyright (C) 1997, 2000, 2001, 2003, 2004 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
 
163
# AM_CONDITIONAL                                            -*- Autoconf -*-
 
164
 
 
165
# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006
 
166
# Free Software Foundation, Inc.
 
167
#
 
168
# This file is free software; the Free Software Foundation
 
169
# gives unlimited permission to copy and/or distribute it,
 
170
# with or without modifications, as long as this notice is preserved.
 
171
 
 
172
# serial 8
129
173
 
130
174
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
131
175
# -------------------------------------
134
178
[AC_PREREQ(2.52)dnl
135
179
 ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
136
180
        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
137
 
AC_SUBST([$1_TRUE])
138
 
AC_SUBST([$1_FALSE])
 
181
AC_SUBST([$1_TRUE])dnl
 
182
AC_SUBST([$1_FALSE])dnl
 
183
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
 
184
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
139
185
if $2; then
140
186
  $1_TRUE=
141
187
  $1_FALSE='#'
149
195
Usually this means the macro was only invoked conditionally.]])
150
196
fi])])
151
197
 
152
 
# serial 7                                              -*- Autoconf -*-
153
 
 
154
 
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
 
198
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
155
199
# 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
 
 
 
200
#
 
201
# This file is free software; the Free Software Foundation
 
202
# gives unlimited permission to copy and/or distribute it,
 
203
# with or without modifications, as long as this notice is preserved.
 
204
 
 
205
# serial 9
172
206
 
173
207
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
174
208
# written in clear, in which case automake, when reading aclocal.m4,
177
211
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
178
212
 
179
213
 
180
 
 
181
214
# _AM_DEPENDENCIES(NAME)
182
215
# ----------------------
183
216
# See how the compiler implements dependency checking.
197
230
ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
198
231
       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
199
232
       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
 
233
       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
200
234
       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
201
235
                   [depcc="$$1"   am_compiler_list=])
202
236
 
262
296
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
263
297
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
264
298
         >/dev/null 2>conftest.err &&
 
299
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
265
300
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
266
301
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
267
302
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
314
349
  AMDEPBACKSLASH='\'
315
350
fi
316
351
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
317
 
AC_SUBST([AMDEPBACKSLASH])
 
352
AC_SUBST([AMDEPBACKSLASH])dnl
 
353
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
318
354
])
319
355
 
320
 
# Generate code to set up dependency tracking.   -*- Autoconf -*-
321
 
 
322
 
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
323
 
#   Free Software Foundation, Inc.
324
 
 
325
 
# This program is free software; you can redistribute it and/or modify
326
 
# it under the terms of the GNU General Public License as published by
327
 
# the Free Software Foundation; either version 2, or (at your option)
328
 
# any later version.
329
 
 
330
 
# This program is distributed in the hope that it will be useful,
331
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
332
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
333
 
# GNU General Public License for more details.
334
 
 
335
 
# You should have received a copy of the GNU General Public License
336
 
# along with this program; if not, write to the Free Software
337
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
338
 
# 02111-1307, USA.
339
 
 
340
 
#serial 2
 
356
# Generate code to set up dependency tracking.              -*- Autoconf -*-
 
357
 
 
358
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
359
# Free Software Foundation, Inc.
 
360
#
 
361
# This file is free software; the Free Software Foundation
 
362
# gives unlimited permission to copy and/or distribute it,
 
363
# with or without modifications, as long as this notice is preserved.
 
364
 
 
365
#serial 3
341
366
 
342
367
# _AM_OUTPUT_DEPENDENCY_COMMANDS
343
368
# ------------------------------
350
375
  # some people rename them; so instead we look at the file content.
351
376
  # Grep'ing the first line is not enough: some people post-process
352
377
  # each Makefile.in and add a new line on top of each file to say so.
353
 
  # So let's grep whole file.
354
 
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
378
  # Grep'ing the whole file is not good either: AIX grep has a line
 
379
  # limit of 2048, but all sed's we know have understand at least 4000.
 
380
  if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
355
381
    dirpart=`AS_DIRNAME("$mf")`
356
382
  else
357
383
    continue
396
422
     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
397
423
])
398
424
 
399
 
# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*-
400
 
 
401
 
# Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc.
402
 
 
403
 
# This program is free software; you can redistribute it and/or modify
404
 
# it under the terms of the GNU General Public License as published by
405
 
# the Free Software Foundation; either version 2, or (at your option)
406
 
# any later version.
407
 
 
408
 
# This program is distributed in the hope that it will be useful,
409
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
410
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
411
 
# GNU General Public License for more details.
412
 
 
413
 
# You should have received a copy of the GNU General Public License
414
 
# along with this program; if not, write to the Free Software
415
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
416
 
# 02111-1307, USA.
417
 
 
418
 
# serial 7
 
425
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
 
426
# Free Software Foundation, Inc.
 
427
#
 
428
# This file is free software; the Free Software Foundation
 
429
# gives unlimited permission to copy and/or distribute it,
 
430
# with or without modifications, as long as this notice is preserved.
 
431
 
 
432
# serial 8
419
433
 
420
434
# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
421
435
AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
422
436
 
423
 
# Do all the work for Automake.                            -*- Autoconf -*-
424
 
 
425
 
# This macro actually does too much some checks are only needed if
 
437
# Do all the work for Automake.                             -*- Autoconf -*-
 
438
 
 
439
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 
440
# 2005, 2006, 2008 Free Software Foundation, Inc.
 
441
#
 
442
# This file is free software; the Free Software Foundation
 
443
# gives unlimited permission to copy and/or distribute it,
 
444
# with or without modifications, as long as this notice is preserved.
 
445
 
 
446
# serial 13
 
447
 
 
448
# This macro actually does too much.  Some checks are only needed if
426
449
# your package does certain things.  But this isn't really a big deal.
427
450
 
428
 
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
429
 
# Free Software Foundation, Inc.
430
 
 
431
 
# This program is free software; you can redistribute it and/or modify
432
 
# it under the terms of the GNU General Public License as published by
433
 
# the Free Software Foundation; either version 2, or (at your option)
434
 
# any later version.
435
 
 
436
 
# This program is distributed in the hope that it will be useful,
437
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
438
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
439
 
# GNU General Public License for more details.
440
 
 
441
 
# You should have received a copy of the GNU General Public License
442
 
# along with this program; if not, write to the Free Software
443
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
444
 
# 02111-1307, USA.
445
 
 
446
 
# serial 11
447
 
 
448
451
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
449
452
# AM_INIT_AUTOMAKE([OPTIONS])
450
453
# -----------------------------------------------
457
460
# arguments mandatory, and then we can depend on a new Autoconf
458
461
# release and drop the old call support.
459
462
AC_DEFUN([AM_INIT_AUTOMAKE],
460
 
[AC_PREREQ([2.58])dnl
 
463
[AC_PREREQ([2.60])dnl
461
464
dnl Autoconf wants to disallow AM_ names.  We explicitly allow
462
465
dnl the ones we care about.
463
466
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
464
467
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
465
468
AC_REQUIRE([AC_PROG_INSTALL])dnl
466
 
# test to see if srcdir already configured
467
 
if test "`cd $srcdir && pwd`" != "`pwd`" &&
468
 
   test -f $srcdir/config.status; then
469
 
  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
 
469
if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
470
  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
471
  # is not polluted with repeated "-I."
 
472
  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
 
473
  # test to see if srcdir already configured
 
474
  if test -f $srcdir/config.status; then
 
475
    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
 
476
  fi
470
477
fi
471
478
 
472
479
# test whether we have cygpath
486
493
 AC_SUBST([PACKAGE], [$1])dnl
487
494
 AC_SUBST([VERSION], [$2])],
488
495
[_AM_SET_OPTIONS([$1])dnl
 
496
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
 
497
m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
 
498
  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
489
499
 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
490
500
 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
491
501
 
521
531
                  [_AM_DEPENDENCIES(CXX)],
522
532
                  [define([AC_PROG_CXX],
523
533
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
 
534
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
 
535
                  [_AM_DEPENDENCIES(OBJC)],
 
536
                  [define([AC_PROG_OBJC],
 
537
                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
524
538
])
525
539
])
526
540
 
534
548
# our stamp files there.
535
549
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
536
550
[# Compute $1's index in $config_headers.
 
551
_am_arg=$1
537
552
_am_stamp_count=1
538
553
for _am_header in $config_headers :; do
539
554
  case $_am_header in
540
 
    $1 | $1:* )
 
555
    $_am_arg | $_am_arg:* )
541
556
      break ;;
542
557
    * )
543
558
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
544
559
  esac
545
560
done
546
 
echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
 
561
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
 
562
 
 
563
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
564
#
 
565
# This file is free software; the Free Software Foundation
 
566
# gives unlimited permission to copy and/or distribute it,
 
567
# with or without modifications, as long as this notice is preserved.
547
568
 
548
569
# AM_PROG_INSTALL_SH
549
570
# ------------------
550
571
# Define $install_sh.
551
 
 
552
 
# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
553
 
 
554
 
# This program is free software; you can redistribute it and/or modify
555
 
# it under the terms of the GNU General Public License as published by
556
 
# the Free Software Foundation; either version 2, or (at your option)
557
 
# any later version.
558
 
 
559
 
# This program is distributed in the hope that it will be useful,
560
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
561
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
562
 
# GNU General Public License for more details.
563
 
 
564
 
# You should have received a copy of the GNU General Public License
565
 
# along with this program; if not, write to the Free Software
566
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
567
 
# 02111-1307, USA.
568
 
 
569
572
AC_DEFUN([AM_PROG_INSTALL_SH],
570
573
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
571
 
install_sh=${install_sh-"$am_aux_dir/install-sh"}
 
574
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
572
575
AC_SUBST(install_sh)])
573
576
 
574
 
#                                                          -*- Autoconf -*-
575
 
# Copyright (C) 2003  Free Software Foundation, Inc.
576
 
 
577
 
# This program is free software; you can redistribute it and/or modify
578
 
# it under the terms of the GNU General Public License as published by
579
 
# the Free Software Foundation; either version 2, or (at your option)
580
 
# any later version.
581
 
 
582
 
# This program is distributed in the hope that it will be useful,
583
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
584
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
585
 
# GNU General Public License for more details.
586
 
 
587
 
# You should have received a copy of the GNU General Public License
588
 
# along with this program; if not, write to the Free Software
589
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
590
 
# 02111-1307, USA.
591
 
 
592
 
# serial 1
 
577
# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
 
578
#
 
579
# This file is free software; the Free Software Foundation
 
580
# gives unlimited permission to copy and/or distribute it,
 
581
# with or without modifications, as long as this notice is preserved.
 
582
 
 
583
# serial 2
593
584
 
594
585
# Check whether the underlying file-system supports filenames
595
586
# with a leading dot.  For instance MS-DOS doesn't.
604
595
rmdir .tst 2>/dev/null
605
596
AC_SUBST([am__leading_dot])])
606
597
 
607
 
# Add --enable-maintainer-mode option to configure.
 
598
# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
608
599
# From Jim Meyering
609
600
 
610
 
# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004
 
601
# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005
611
602
# Free Software Foundation, Inc.
612
 
 
613
 
# This program is free software; you can redistribute it and/or modify
614
 
# it under the terms of the GNU General Public License as published by
615
 
# the Free Software Foundation; either version 2, or (at your option)
616
 
# any later version.
617
 
 
618
 
# This program is distributed in the hope that it will be useful,
619
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
620
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
621
 
# GNU General Public License for more details.
622
 
 
623
 
# You should have received a copy of the GNU General Public License
624
 
# along with this program; if not, write to the Free Software
625
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
626
 
# 02111-1307, USA.
627
 
 
628
 
# serial 3
 
603
#
 
604
# This file is free software; the Free Software Foundation
 
605
# gives unlimited permission to copy and/or distribute it,
 
606
# with or without modifications, as long as this notice is preserved.
 
607
 
 
608
# serial 4
629
609
 
630
610
AC_DEFUN([AM_MAINTAINER_MODE],
631
611
[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
644
624
 
645
625
AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
646
626
 
647
 
# Check to see how 'make' treats includes.      -*- Autoconf -*-
648
 
 
649
 
# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
650
 
 
651
 
# This program is free software; you can redistribute it and/or modify
652
 
# it under the terms of the GNU General Public License as published by
653
 
# the Free Software Foundation; either version 2, or (at your option)
654
 
# any later version.
655
 
 
656
 
# This program is distributed in the hope that it will be useful,
657
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
658
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
659
 
# GNU General Public License for more details.
660
 
 
661
 
# You should have received a copy of the GNU General Public License
662
 
# along with this program; if not, write to the Free Software
663
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
664
 
# 02111-1307, USA.
665
 
 
666
 
# serial 2
 
627
# Check to see how 'make' treats includes.                  -*- Autoconf -*-
 
628
 
 
629
# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
 
630
#
 
631
# This file is free software; the Free Software Foundation
 
632
# gives unlimited permission to copy and/or distribute it,
 
633
# with or without modifications, as long as this notice is preserved.
 
634
 
 
635
# serial 3
667
636
 
668
637
# AM_MAKE_INCLUDE()
669
638
# -----------------
707
676
rm -f confinc confmf
708
677
])
709
678
 
710
 
#  -*- Autoconf -*-
711
 
 
712
 
 
713
 
# Copyright (C) 1997, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
714
 
 
715
 
# This program is free software; you can redistribute it and/or modify
716
 
# it under the terms of the GNU General Public License as published by
717
 
# the Free Software Foundation; either version 2, or (at your option)
718
 
# any later version.
719
 
 
720
 
# This program is distributed in the hope that it will be useful,
721
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
722
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
723
 
# GNU General Public License for more details.
724
 
 
725
 
# You should have received a copy of the GNU General Public License
726
 
# along with this program; if not, write to the Free Software
727
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
728
 
# 02111-1307, USA.
729
 
 
730
 
# serial 3
 
679
# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005
 
680
# Free Software Foundation, Inc.
 
681
#
 
682
# This file is free software; the Free Software Foundation
 
683
# gives unlimited permission to copy and/or distribute it,
 
684
# with or without modifications, as long as this notice is preserved.
 
685
 
 
686
# serial 5
 
687
 
 
688
# AM_PROG_CC_C_O
 
689
# --------------
 
690
# Like AC_PROG_CC_C_O, but changed for automake.
 
691
AC_DEFUN([AM_PROG_CC_C_O],
 
692
[AC_REQUIRE([AC_PROG_CC_C_O])dnl
 
693
AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
694
AC_REQUIRE_AUX_FILE([compile])dnl
 
695
# FIXME: we rely on the cache variable name because
 
696
# there is no other way.
 
697
set dummy $CC
 
698
ac_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
 
699
if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then
 
700
   # Losing compiler, so override with the script.
 
701
   # FIXME: It is wrong to rewrite CC.
 
702
   # But if we don't then we get into trouble of one sort or another.
 
703
   # A longer-term fix would be to have automake use am__CC in this case,
 
704
   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
 
705
   CC="$am_aux_dir/compile $CC"
 
706
fi
 
707
dnl Make sure AC_PROG_CC is never called again, or it will override our
 
708
dnl setting of CC.
 
709
m4_define([AC_PROG_CC],
 
710
          [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
 
711
])
 
712
 
 
713
# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
 
714
 
 
715
# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
 
716
# Free Software Foundation, Inc.
 
717
#
 
718
# This file is free software; the Free Software Foundation
 
719
# gives unlimited permission to copy and/or distribute it,
 
720
# with or without modifications, as long as this notice is preserved.
 
721
 
 
722
# serial 5
731
723
 
732
724
# AM_MISSING_PROG(NAME, PROGRAM)
733
725
# ------------------------------
743
735
# If it does, set am_missing_run to use it, otherwise, to nothing.
744
736
AC_DEFUN([AM_MISSING_HAS_RUN],
745
737
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
738
AC_REQUIRE_AUX_FILE([missing])dnl
746
739
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
747
740
# Use eval to expand $SHELL
748
741
if eval "$MISSING --run true"; then
753
746
fi
754
747
])
755
748
 
 
749
# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
 
750
#
 
751
# This file is free software; the Free Software Foundation
 
752
# gives unlimited permission to copy and/or distribute it,
 
753
# with or without modifications, as long as this notice is preserved.
 
754
 
756
755
# AM_PROG_MKDIR_P
757
756
# ---------------
758
 
# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
759
 
 
760
 
# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
761
 
 
762
 
# This program is free software; you can redistribute it and/or modify
763
 
# it under the terms of the GNU General Public License as published by
764
 
# the Free Software Foundation; either version 2, or (at your option)
765
 
# any later version.
766
 
 
767
 
# This program is distributed in the hope that it will be useful,
768
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
769
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
770
 
# GNU General Public License for more details.
771
 
 
772
 
# You should have received a copy of the GNU General Public License
773
 
# along with this program; if not, write to the Free Software
774
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
775
 
# 02111-1307, USA.
776
 
 
777
 
# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
778
 
# created by `make install' are always world readable, even if the
779
 
# installer happens to have an overly restrictive umask (e.g. 077).
780
 
# This was a mistake.  There are at least two reasons why we must not
781
 
# use `-m 0755':
782
 
#   - it causes special bits like SGID to be ignored,
783
 
#   - it may be too restrictive (some setups expect 775 directories).
784
 
#
785
 
# Do not use -m 0755 and let people choose whatever they expect by
786
 
# setting umask.
787
 
#
788
 
# We cannot accept any implementation of `mkdir' that recognizes `-p'.
789
 
# Some implementations (such as Solaris 8's) are not thread-safe: if a
790
 
# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
791
 
# concurrently, both version can detect that a/ is missing, but only
792
 
# one can create it and the other will error out.  Consequently we
793
 
# restrict ourselves to GNU make (using the --version option ensures
794
 
# this.)
 
757
# Check for `mkdir -p'.
795
758
AC_DEFUN([AM_PROG_MKDIR_P],
796
 
[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
797
 
  # We used to keeping the `.' as first argument, in order to
798
 
  # allow $(mkdir_p) to be used without argument.  As in
799
 
  #   $(mkdir_p) $(somedir)
800
 
  # where $(somedir) is conditionally defined.  However this is wrong
801
 
  # for two reasons:
802
 
  #  1. if the package is installed by a user who cannot write `.'
803
 
  #     make install will fail,
804
 
  #  2. the above comment should most certainly read
805
 
  #     $(mkdir_p) $(DESTDIR)$(somedir)
806
 
  #     so it does not work when $(somedir) is undefined and
807
 
  #     $(DESTDIR) is not.
808
 
  #  To support the latter case, we have to write
809
 
  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
810
 
  #  so the `.' trick is pointless.
811
 
  mkdir_p='mkdir -p --'
812
 
else
813
 
  # On NextStep and OpenStep, the `mkdir' command does not
814
 
  # recognize any option.  It will interpret all options as
815
 
  # directories to create, and then abort because `.' already
816
 
  # exists.
817
 
  for d in ./-p ./--version;
818
 
  do
819
 
    test -d $d && rmdir $d
820
 
  done
821
 
  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
822
 
  if test -f "$ac_aux_dir/mkinstalldirs"; then
823
 
    mkdir_p='$(mkinstalldirs)'
824
 
  else
825
 
    mkdir_p='$(install_sh) -d'
826
 
  fi
827
 
fi
828
 
AC_SUBST([mkdir_p])])
829
 
 
830
 
# Helper functions for option handling.                    -*- Autoconf -*-
831
 
 
832
 
# Copyright (C) 2001, 2002, 2003  Free Software Foundation, Inc.
833
 
 
834
 
# This program is free software; you can redistribute it and/or modify
835
 
# it under the terms of the GNU General Public License as published by
836
 
# the Free Software Foundation; either version 2, or (at your option)
837
 
# any later version.
838
 
 
839
 
# This program is distributed in the hope that it will be useful,
840
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
841
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
842
 
# GNU General Public License for more details.
843
 
 
844
 
# You should have received a copy of the GNU General Public License
845
 
# along with this program; if not, write to the Free Software
846
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
847
 
# 02111-1307, USA.
848
 
 
849
 
# serial 2
 
759
[AC_PREREQ([2.60])dnl
 
760
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
 
761
dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
 
762
dnl while keeping a definition of mkdir_p for backward compatibility.
 
763
dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
 
764
dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
 
765
dnl Makefile.ins that do not define MKDIR_P, so we do our own
 
766
dnl adjustment using top_builddir (which is defined more often than
 
767
dnl MKDIR_P).
 
768
AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
 
769
case $mkdir_p in
 
770
  [[\\/$]]* | ?:[[\\/]]*) ;;
 
771
  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
772
esac
 
773
])
 
774
 
 
775
# Helper functions for option handling.                     -*- Autoconf -*-
 
776
 
 
777
# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
 
778
#
 
779
# This file is free software; the Free Software Foundation
 
780
# gives unlimited permission to copy and/or distribute it,
 
781
# with or without modifications, as long as this notice is preserved.
 
782
 
 
783
# serial 3
850
784
 
851
785
# _AM_MANGLE_OPTION(NAME)
852
786
# -----------------------
871
805
AC_DEFUN([_AM_IF_OPTION],
872
806
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
873
807
 
874
 
#
875
 
# Check to make sure that the build environment is sane.
876
 
#
877
 
 
878
 
# Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc.
879
 
 
880
 
# This program is free software; you can redistribute it and/or modify
881
 
# it under the terms of the GNU General Public License as published by
882
 
# the Free Software Foundation; either version 2, or (at your option)
883
 
# any later version.
884
 
 
885
 
# This program is distributed in the hope that it will be useful,
886
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
887
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
888
 
# GNU General Public License for more details.
889
 
 
890
 
# You should have received a copy of the GNU General Public License
891
 
# along with this program; if not, write to the Free Software
892
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
893
 
# 02111-1307, USA.
894
 
 
895
 
# serial 3
 
808
# Check to make sure that the build environment is sane.    -*- Autoconf -*-
 
809
 
 
810
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
 
811
# Free Software Foundation, Inc.
 
812
#
 
813
# This file is free software; the Free Software Foundation
 
814
# gives unlimited permission to copy and/or distribute it,
 
815
# with or without modifications, as long as this notice is preserved.
 
816
 
 
817
# serial 4
896
818
 
897
819
# AM_SANITY_CHECK
898
820
# ---------------
935
857
fi
936
858
AC_MSG_RESULT(yes)])
937
859
 
 
860
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
861
#
 
862
# This file is free software; the Free Software Foundation
 
863
# gives unlimited permission to copy and/or distribute it,
 
864
# with or without modifications, as long as this notice is preserved.
 
865
 
938
866
# AM_PROG_INSTALL_STRIP
939
 
 
940
 
# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
941
 
 
942
 
# This program is free software; you can redistribute it and/or modify
943
 
# it under the terms of the GNU General Public License as published by
944
 
# the Free Software Foundation; either version 2, or (at your option)
945
 
# any later version.
946
 
 
947
 
# This program is distributed in the hope that it will be useful,
948
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
949
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
950
 
# GNU General Public License for more details.
951
 
 
952
 
# You should have received a copy of the GNU General Public License
953
 
# along with this program; if not, write to the Free Software
954
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
955
 
# 02111-1307, USA.
956
 
 
 
867
# ---------------------
957
868
# One issue with vendor `install' (even GNU) is that you can't
958
869
# specify the program used to strip binaries.  This is especially
959
870
# annoying in cross-compiling environments, where the build's strip
971
882
if test "$cross_compiling" != no; then
972
883
  AC_CHECK_TOOL([STRIP], [strip], :)
973
884
fi
974
 
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 
885
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
975
886
AC_SUBST([INSTALL_STRIP_PROGRAM])])
976
887
 
 
888
# Copyright (C) 2006  Free Software Foundation, Inc.
 
889
#
 
890
# This file is free software; the Free Software Foundation
 
891
# gives unlimited permission to copy and/or distribute it,
 
892
# with or without modifications, as long as this notice is preserved.
 
893
 
 
894
# _AM_SUBST_NOTMAKE(VARIABLE)
 
895
# ---------------------------
 
896
# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
 
897
# This macro is traced by Automake.
 
898
AC_DEFUN([_AM_SUBST_NOTMAKE])
 
899
 
977
900
# Check how to create a tarball.                            -*- Autoconf -*-
978
901
 
979
 
# Copyright (C) 2004  Free Software Foundation, Inc.
980
 
 
981
 
# This program is free software; you can redistribute it and/or modify
982
 
# it under the terms of the GNU General Public License as published by
983
 
# the Free Software Foundation; either version 2, or (at your option)
984
 
# any later version.
985
 
 
986
 
# This program is distributed in the hope that it will be useful,
987
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
988
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
989
 
# GNU General Public License for more details.
990
 
 
991
 
# You should have received a copy of the GNU General Public License
992
 
# along with this program; if not, write to the Free Software
993
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
994
 
# 02111-1307, USA.
995
 
 
996
 
# serial 1
997
 
 
 
902
# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
903
#
 
904
# This file is free software; the Free Software Foundation
 
905
# gives unlimited permission to copy and/or distribute it,
 
906
# with or without modifications, as long as this notice is preserved.
 
907
 
 
908
# serial 2
998
909
 
999
910
# _AM_PROG_TAR(FORMAT)
1000
911
# --------------------
1082
993
AC_SUBST([am__untar])
1083
994
]) # _AM_PROG_TAR
1084
995
 
 
996
m4_include([m4/gettext.m4])
 
997
m4_include([m4/gpg-error.m4])
 
998
m4_include([m4/iconv.m4])
 
999
m4_include([m4/ksba.m4])
 
1000
m4_include([m4/lib-ld.m4])
 
1001
m4_include([m4/lib-link.m4])
 
1002
m4_include([m4/lib-prefix.m4])
 
1003
m4_include([m4/libgcrypt.m4])
 
1004
m4_include([m4/nls.m4])
 
1005
m4_include([m4/po.m4])
 
1006
m4_include([m4/progtest.m4])
1085
1007
m4_include([acinclude.m4])