~ubuntu-branches/ubuntu/vivid/parted/vivid

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-07-30 13:16:15 UTC
  • mfrom: (7.2.34 sid)
  • Revision ID: package-import@ubuntu.com-20140730131615-6uy87mosal6722s6
Tags: 3.2-1
* New upstream release.
* Drop currently-unused build-dependency on po4a (thanks, Johannes
  Schauer).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# generated automatically by aclocal 1.11a -*- Autoconf -*-
2
 
 
3
 
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4
 
# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
5
 
# Inc.
 
1
# generated automatically by aclocal 1.14.1 -*- Autoconf -*-
 
2
 
 
3
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
 
4
 
6
5
# This file is free software; the Free Software Foundation
7
6
# gives unlimited permission to copy and/or distribute it,
8
7
# with or without modifications, as long as this notice is preserved.
12
11
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
12
# PARTICULAR PURPOSE.
14
13
 
 
14
m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
15
15
m4_ifndef([AC_AUTOCONF_VERSION],
16
16
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
17
 
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68b.1-36a2],,
18
 
[m4_warning([this file was generated for autoconf 2.68b.1-36a2.
 
17
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
 
18
[m4_warning([this file was generated for autoconf 2.69.
19
19
You have another version of autoconf.  It may work, but is not guaranteed to.
20
20
If you have problems, you may need to regenerate the build system entirely.
21
21
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
48
48
# ----------------------------------
49
49
AC_DEFUN([PKG_PROG_PKG_CONFIG],
50
50
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
51
 
m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
 
51
m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
 
52
m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
52
53
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
53
54
AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
54
55
AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
94
95
    pkg_cv_[]$1="$$1"
95
96
 elif test -n "$PKG_CONFIG"; then
96
97
    PKG_CHECK_EXISTS([$3],
97
 
                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
 
98
                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
 
99
                      test "x$?" != "x0" && pkg_failed=yes ],
98
100
                     [pkg_failed=yes])
99
101
 else
100
102
    pkg_failed=untried
142
144
        AC_MSG_RESULT([no])
143
145
        _PKG_SHORT_ERRORS_SUPPORTED
144
146
        if test $_pkg_short_errors_supported = yes; then
145
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
 
147
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
146
148
        else 
147
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
 
149
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
148
150
        fi
149
151
        # Put the nasty error message in config.log where it belongs
150
152
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
157
159
Consider adjusting the PKG_CONFIG_PATH environment variable if you
158
160
installed software in a non-standard prefix.
159
161
 
160
 
_PKG_TEXT])
 
162
_PKG_TEXT])[]dnl
161
163
        ])
162
164
elif test $pkg_failed = untried; then
163
165
        AC_MSG_RESULT([no])
168
170
 
169
171
_PKG_TEXT
170
172
 
171
 
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])
 
173
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
172
174
        ])
173
175
else
174
176
        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
178
180
fi[]dnl
179
181
])# PKG_CHECK_MODULES
180
182
 
181
 
# Copyright (C) 2002-2012 Free Software Foundation, Inc.
 
183
 
 
184
# PKG_INSTALLDIR(DIRECTORY)
 
185
# -------------------------
 
186
# Substitutes the variable pkgconfigdir as the location where a module
 
187
# should install pkg-config .pc files. By default the directory is
 
188
# $libdir/pkgconfig, but the default can be changed by passing
 
189
# DIRECTORY. The user can override through the --with-pkgconfigdir
 
190
# parameter.
 
191
AC_DEFUN([PKG_INSTALLDIR],
 
192
[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
 
193
m4_pushdef([pkg_description],
 
194
    [pkg-config installation directory @<:@]pkg_default[@:>@])
 
195
AC_ARG_WITH([pkgconfigdir],
 
196
    [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
 
197
    [with_pkgconfigdir=]pkg_default)
 
198
AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
 
199
m4_popdef([pkg_default])
 
200
m4_popdef([pkg_description])
 
201
]) dnl PKG_INSTALLDIR
 
202
 
 
203
 
 
204
# PKG_NOARCH_INSTALLDIR(DIRECTORY)
 
205
# -------------------------
 
206
# Substitutes the variable noarch_pkgconfigdir as the location where a
 
207
# module should install arch-independent pkg-config .pc files. By
 
208
# default the directory is $datadir/pkgconfig, but the default can be
 
209
# changed by passing DIRECTORY. The user can override through the
 
210
# --with-noarch-pkgconfigdir parameter.
 
211
AC_DEFUN([PKG_NOARCH_INSTALLDIR],
 
212
[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
 
213
m4_pushdef([pkg_description],
 
214
    [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
 
215
AC_ARG_WITH([noarch-pkgconfigdir],
 
216
    [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
 
217
    [with_noarch_pkgconfigdir=]pkg_default)
 
218
AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
 
219
m4_popdef([pkg_default])
 
220
m4_popdef([pkg_description])
 
221
]) dnl PKG_NOARCH_INSTALLDIR
 
222
 
 
223
 
 
224
# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
 
225
# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
 
226
# -------------------------------------------
 
227
# Retrieves the value of the pkg-config variable for the given module.
 
228
AC_DEFUN([PKG_CHECK_VAR],
 
229
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 
230
AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
 
231
 
 
232
_PKG_CONFIG([$1], [variable="][$3]["], [$2])
 
233
AS_VAR_COPY([$1], [pkg_cv_][$1])
 
234
 
 
235
AS_VAR_IF([$1], [""], [$5], [$4])dnl
 
236
])# PKG_CHECK_VAR
 
237
 
 
238
# Copyright (C) 2002-2013 Free Software Foundation, Inc.
182
239
#
183
240
# This file is free software; the Free Software Foundation
184
241
# gives unlimited permission to copy and/or distribute it,
185
242
# with or without modifications, as long as this notice is preserved.
186
243
 
187
 
# serial 8
188
 
 
189
244
# AM_AUTOMAKE_VERSION(VERSION)
190
245
# ----------------------------
191
246
# Automake X.Y traces this macro to ensure aclocal.m4 has been
192
247
# generated from the m4 files accompanying Automake X.Y.
193
248
# (This private macro should not be called outside this file.)
194
249
AC_DEFUN([AM_AUTOMAKE_VERSION],
195
 
[am__api_version='1.11a'
 
250
[am__api_version='1.14'
196
251
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
197
252
dnl require some minimum version.  Point them to the right macro.
198
 
m4_if([$1], [1.11a], [],
 
253
m4_if([$1], [1.14.1], [],
199
254
      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
200
255
])
201
256
 
211
266
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
212
267
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
213
268
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
214
 
[AM_AUTOMAKE_VERSION([1.11a])dnl
 
269
[AM_AUTOMAKE_VERSION([1.14.1])dnl
215
270
m4_ifndef([AC_AUTOCONF_VERSION],
216
271
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
217
272
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
218
273
 
219
274
# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
220
275
 
221
 
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
 
276
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
222
277
#
223
278
# This file is free software; the Free Software Foundation
224
279
# gives unlimited permission to copy and/or distribute it,
225
280
# with or without modifications, as long as this notice is preserved.
226
281
 
227
 
# serial 2
228
 
 
229
282
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
230
283
# $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
231
284
# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
273
326
 
274
327
# AM_CONDITIONAL                                            -*- Autoconf -*-
275
328
 
276
 
# Copyright (C) 1997-2012 Free Software Foundation, Inc.
 
329
# Copyright (C) 1997-2013 Free Software Foundation, Inc.
277
330
#
278
331
# This file is free software; the Free Software Foundation
279
332
# gives unlimited permission to copy and/or distribute it,
280
333
# with or without modifications, as long as this notice is preserved.
281
334
 
282
 
# serial 10
283
 
 
284
335
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
285
336
# -------------------------------------
286
337
# Define a conditional.
306
357
Usually this means the macro was only invoked conditionally.]])
307
358
fi])])
308
359
 
309
 
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
 
360
# Copyright (C) 1999-2013 Free Software Foundation, Inc.
310
361
#
311
362
# This file is free software; the Free Software Foundation
312
363
# gives unlimited permission to copy and/or distribute it,
313
364
# with or without modifications, as long as this notice is preserved.
314
365
 
315
 
# serial 16
316
366
 
317
367
# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
318
368
# written in clear, in which case automake, when reading aclocal.m4,
324
374
# _AM_DEPENDENCIES(NAME)
325
375
# ----------------------
326
376
# See how the compiler implements dependency checking.
327
 
# NAME is "CC", "CXX", "GCJ", or "OBJC".
 
377
# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
328
378
# We try a few techniques and use that to set a single cache variable.
329
379
#
330
380
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
340
390
m4_if([$1], [CC],   [depcc="$CC"   am_compiler_list=],
341
391
      [$1], [CXX],  [depcc="$CXX"  am_compiler_list=],
342
392
      [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
 
393
      [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
343
394
      [$1], [UPC],  [depcc="$UPC"  am_compiler_list=],
344
395
      [$1], [GCJ],  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
345
396
                    [depcc="$$1"   am_compiler_list=])
497
548
 
498
549
# Generate code to set up dependency tracking.              -*- Autoconf -*-
499
550
 
500
 
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
 
551
# Copyright (C) 1999-2013 Free Software Foundation, Inc.
501
552
#
502
553
# This file is free software; the Free Software Foundation
503
554
# gives unlimited permission to copy and/or distribute it,
504
555
# with or without modifications, as long as this notice is preserved.
505
556
 
506
 
# serial 6
507
557
 
508
558
# _AM_OUTPUT_DEPENDENCY_COMMANDS
509
559
# ------------------------------
510
560
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
511
561
[{
512
 
  # Autoconf 2.62 quotes --file arguments for eval, but not when files
 
562
  # Older Autoconf quotes --file arguments for eval, but not when files
513
563
  # are listed without --file.  Let's play safe and only enable the eval
514
564
  # if we detect the quoting.
515
565
  case $CONFIG_FILES in
538
588
    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
539
589
    test -z "$DEPDIR" && continue
540
590
    am__include=`sed -n 's/^am__include = //p' < "$mf"`
541
 
    test -z "am__include" && continue
 
591
    test -z "$am__include" && continue
542
592
    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
543
593
    # Find all dependency output files, they are included files with
544
594
    # $(DEPDIR) in their names.  We invoke sed twice because it is the
574
624
 
575
625
# Do all the work for Automake.                             -*- Autoconf -*-
576
626
 
577
 
# Copyright (C) 1996-2012 Free Software Foundation, Inc.
 
627
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
578
628
#
579
629
# This file is free software; the Free Software Foundation
580
630
# gives unlimited permission to copy and/or distribute it,
581
631
# with or without modifications, as long as this notice is preserved.
582
632
 
583
 
# serial 18
584
 
 
585
633
# This macro actually does too much.  Some checks are only needed if
586
634
# your package does certain things.  But this isn't really a big deal.
587
635
 
 
636
dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
 
637
m4_define([AC_PROG_CC],
 
638
m4_defn([AC_PROG_CC])
 
639
[_AM_PROG_CC_C_O
 
640
])
 
641
 
588
642
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
589
643
# AM_INIT_AUTOMAKE([OPTIONS])
590
644
# -----------------------------------------------
597
651
# arguments mandatory, and then we can depend on a new Autoconf
598
652
# release and drop the old call support.
599
653
AC_DEFUN([AM_INIT_AUTOMAKE],
600
 
[AC_PREREQ([2.62])dnl
 
654
[AC_PREREQ([2.65])dnl
601
655
dnl Autoconf wants to disallow AM_ names.  We explicitly allow
602
656
dnl the ones we care about.
603
657
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
626
680
# Define the identity of the package.
627
681
dnl Distinguish between old-style and new-style calls.
628
682
m4_ifval([$2],
629
 
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
 
683
[AC_DIAGNOSE([obsolete],
 
684
             [$0: two- and three-arguments forms are deprecated.])
 
685
m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
630
686
 AC_SUBST([PACKAGE], [$1])dnl
631
687
 AC_SUBST([VERSION], [$2])],
632
688
[_AM_SET_OPTIONS([$1])dnl
652
708
AM_MISSING_PROG([MAKEINFO], [makeinfo])
653
709
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
654
710
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
655
 
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
 
711
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
 
712
# For better backward compatibility.  To be removed once Automake 1.9.x
 
713
# dies out for good.  For more background, see:
 
714
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
 
715
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
 
716
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
656
717
# We need awk for the "check" target.  The system "awk" is bad on
657
718
# some platforms.
658
719
AC_REQUIRE([AC_PROG_AWK])dnl
664
725
_AM_IF_OPTION([no-dependencies],,
665
726
[AC_PROVIDE_IFELSE([AC_PROG_CC],
666
727
                  [_AM_DEPENDENCIES([CC])],
667
 
                  [define([AC_PROG_CC],
668
 
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
 
728
                  [m4_define([AC_PROG_CC],
 
729
                             m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
669
730
AC_PROVIDE_IFELSE([AC_PROG_CXX],
670
731
                  [_AM_DEPENDENCIES([CXX])],
671
 
                  [define([AC_PROG_CXX],
672
 
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
 
732
                  [m4_define([AC_PROG_CXX],
 
733
                             m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
673
734
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
674
735
                  [_AM_DEPENDENCIES([OBJC])],
675
 
                  [define([AC_PROG_OBJC],
676
 
                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
 
736
                  [m4_define([AC_PROG_OBJC],
 
737
                             m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
 
738
AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
 
739
                  [_AM_DEPENDENCIES([OBJCXX])],
 
740
                  [m4_define([AC_PROG_OBJCXX],
 
741
                             m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
677
742
])
678
 
_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
679
 
dnl The 'parallel-tests' driver may need to know about EXEEXT, so add the
680
 
dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
681
 
dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
 
743
AC_REQUIRE([AM_SILENT_RULES])dnl
 
744
dnl The testsuite driver may need to know about EXEEXT, so add the
 
745
dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This
 
746
dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
682
747
AC_CONFIG_COMMANDS_PRE(dnl
683
748
[m4_provide_if([_AM_COMPILER_EXEEXT],
684
749
  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
685
 
])
 
750
 
 
751
# POSIX will say in a future version that running "rm -f" with no argument
 
752
# is OK; and we want to be able to make that assumption in our Makefile
 
753
# recipes.  So use an aggressive probe to check that the usage we want is
 
754
# actually supported "in the wild" to an acceptable degree.
 
755
# See automake bug#10828.
 
756
# To make any issue more visible, cause the running configure to be aborted
 
757
# by default if the 'rm' program in use doesn't match our expectations; the
 
758
# user can still override this though.
 
759
if rm -f && rm -fr && rm -rf; then : OK; else
 
760
  cat >&2 <<'END'
 
761
Oops!
 
762
 
 
763
Your 'rm' program seems unable to run without file operands specified
 
764
on the command line, even when the '-f' option is present.  This is contrary
 
765
to the behaviour of most rm programs out there, and not conforming with
 
766
the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
 
767
 
 
768
Please tell bug-automake@gnu.org about your system, including the value
 
769
of your $PATH and any error possibly output before this message.  This
 
770
can help us improve future automake versions.
 
771
 
 
772
END
 
773
  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
 
774
    echo 'Configuration will proceed anyway, since you have set the' >&2
 
775
    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
 
776
    echo >&2
 
777
  else
 
778
    cat >&2 <<'END'
 
779
Aborting the configuration process, to ensure you take notice of the issue.
 
780
 
 
781
You can download and install GNU coreutils to get an 'rm' implementation
 
782
that behaves properly: <http://www.gnu.org/software/coreutils/>.
 
783
 
 
784
If you want to complete the configuration process using your problematic
 
785
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
 
786
to "yes", and re-run configure.
 
787
 
 
788
END
 
789
    AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
 
790
  fi
 
791
fi])
686
792
 
687
793
dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
688
794
dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
690
796
m4_define([_AC_COMPILER_EXEEXT],
691
797
m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
692
798
 
693
 
 
694
799
# When config.status generates a header, we must update the stamp-h file.
695
800
# This file resides in the same directory as the config header
696
801
# that is generated.  The stamp files are numbered to have different names.
712
817
done
713
818
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
714
819
 
715
 
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
 
820
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
716
821
#
717
822
# This file is free software; the Free Software Foundation
718
823
# gives unlimited permission to copy and/or distribute it,
719
824
# with or without modifications, as long as this notice is preserved.
720
825
 
721
 
# serial 8
722
 
 
723
826
# AM_PROG_INSTALL_SH
724
827
# ------------------
725
828
# Define $install_sh.
735
838
fi
736
839
AC_SUBST([install_sh])])
737
840
 
738
 
# Copyright (C) 2003-2012 Free Software Foundation, Inc.
 
841
# Copyright (C) 2003-2013 Free Software Foundation, Inc.
739
842
#
740
843
# This file is free software; the Free Software Foundation
741
844
# gives unlimited permission to copy and/or distribute it,
742
845
# with or without modifications, as long as this notice is preserved.
743
846
 
744
 
# serial 2
745
 
 
746
847
# Check whether the underlying file-system supports filenames
747
848
# with a leading dot.  For instance MS-DOS doesn't.
748
849
AC_DEFUN([AM_SET_LEADING_DOT],
758
859
 
759
860
# Check to see how 'make' treats includes.                  -*- Autoconf -*-
760
861
 
761
 
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
 
862
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
762
863
#
763
864
# This file is free software; the Free Software Foundation
764
865
# gives unlimited permission to copy and/or distribute it,
765
866
# with or without modifications, as long as this notice is preserved.
766
867
 
767
 
# serial 5
768
 
 
769
868
# AM_MAKE_INCLUDE()
770
869
# -----------------
771
870
# Check to see how make treats includes.
808
907
rm -f confinc confmf
809
908
])
810
909
 
811
 
# Copyright (C) 1999-2012 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 6
818
 
 
819
 
# AM_PROG_CC_C_O
820
 
# --------------
821
 
# Like AC_PROG_CC_C_O, but changed for automake.
822
 
AC_DEFUN([AM_PROG_CC_C_O],
823
 
[AC_REQUIRE([AC_PROG_CC_C_O])dnl
824
 
AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
825
 
AC_REQUIRE_AUX_FILE([compile])dnl
826
 
# FIXME: we rely on the cache variable name because
827
 
# there is no other way.
828
 
set dummy $CC
829
 
am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
830
 
eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
831
 
if test "$am_t" != yes; then
832
 
   # Losing compiler, so override with the script.
833
 
   # FIXME: It is wrong to rewrite CC.
834
 
   # But if we don't then we get into trouble of one sort or another.
835
 
   # A longer-term fix would be to have automake use am__CC in this case,
836
 
   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
837
 
   CC="$am_aux_dir/compile $CC"
838
 
fi
839
 
dnl Make sure AC_PROG_CC is never called again, or it will override our
840
 
dnl setting of CC.
841
 
m4_define([AC_PROG_CC],
842
 
          [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
843
 
])
844
 
 
845
910
# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
846
911
 
847
 
# Copyright (C) 1997-2012 Free Software Foundation, Inc.
 
912
# Copyright (C) 1997-2013 Free Software Foundation, Inc.
848
913
#
849
914
# This file is free software; the Free Software Foundation
850
915
# gives unlimited permission to copy and/or distribute it,
851
916
# with or without modifications, as long as this notice is preserved.
852
917
 
853
 
# serial 7
854
 
 
855
918
# AM_MISSING_PROG(NAME, PROGRAM)
856
919
# ------------------------------
857
920
AC_DEFUN([AM_MISSING_PROG],
859
922
$1=${$1-"${am_missing_run}$2"}
860
923
AC_SUBST($1)])
861
924
 
862
 
 
863
925
# AM_MISSING_HAS_RUN
864
926
# ------------------
865
 
# Define MISSING if not defined so far and test if it supports --run.
866
 
# If it does, set am_missing_run to use it, otherwise, to nothing.
 
927
# Define MISSING if not defined so far and test if it is modern enough.
 
928
# If it is, set am_missing_run to use it, otherwise, to nothing.
867
929
AC_DEFUN([AM_MISSING_HAS_RUN],
868
930
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
869
931
AC_REQUIRE_AUX_FILE([missing])dnl
876
938
  esac
877
939
fi
878
940
# Use eval to expand $SHELL
879
 
if eval "$MISSING --run true"; then
880
 
  am_missing_run="$MISSING --run "
 
941
if eval "$MISSING --is-lightweight"; then
 
942
  am_missing_run="$MISSING "
881
943
else
882
944
  am_missing_run=
883
945
  AC_MSG_WARN(['missing' script is too old or missing])
884
946
fi
885
947
])
886
948
 
887
 
# Copyright (C) 2003-2012 Free Software Foundation, Inc.
 
949
# Copyright (C) 2003-2013 Free Software Foundation, Inc.
888
950
#
889
951
# This file is free software; the Free Software Foundation
890
952
# gives unlimited permission to copy and/or distribute it,
891
953
# with or without modifications, as long as this notice is preserved.
892
954
 
893
 
# serial 2
894
 
 
895
955
# AM_PROG_MKDIR_P
896
956
# ---------------
897
957
# Check for 'mkdir -p'.
898
958
AC_DEFUN([AM_PROG_MKDIR_P],
899
959
[AC_PREREQ([2.60])dnl
900
960
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
 
961
dnl FIXME we are no longer going to remove this! adjust warning
 
962
dnl FIXME message accordingly.
 
963
AC_DIAGNOSE([obsolete],
 
964
[$0: this macro is deprecated, and will soon be removed.
 
965
You should use the Autoconf-provided 'AC][_PROG_MKDIR_P' macro instead,
 
966
and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files.])
901
967
dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
902
968
dnl while keeping a definition of mkdir_p for backward compatibility.
903
969
dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
914
980
 
915
981
# Helper functions for option handling.                     -*- Autoconf -*-
916
982
 
917
 
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
 
983
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
918
984
#
919
985
# This file is free software; the Free Software Foundation
920
986
# gives unlimited permission to copy and/or distribute it,
921
987
# with or without modifications, as long as this notice is preserved.
922
988
 
923
 
# serial 6
924
 
 
925
989
# _AM_MANGLE_OPTION(NAME)
926
990
# -----------------------
927
991
AC_DEFUN([_AM_MANGLE_OPTION],
945
1009
AC_DEFUN([_AM_IF_OPTION],
946
1010
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
947
1011
 
 
1012
# Copyright (C) 1999-2013 Free Software Foundation, Inc.
 
1013
#
 
1014
# This file is free software; the Free Software Foundation
 
1015
# gives unlimited permission to copy and/or distribute it,
 
1016
# with or without modifications, as long as this notice is preserved.
 
1017
 
 
1018
# _AM_PROG_CC_C_O
 
1019
# ---------------
 
1020
# Like AC_PROG_CC_C_O, but changed for automake.  We rewrite AC_PROG_CC
 
1021
# to automatically call this.
 
1022
AC_DEFUN([_AM_PROG_CC_C_O],
 
1023
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
1024
AC_REQUIRE_AUX_FILE([compile])dnl
 
1025
AC_LANG_PUSH([C])dnl
 
1026
AC_CACHE_CHECK(
 
1027
  [whether $CC understands -c and -o together],
 
1028
  [am_cv_prog_cc_c_o],
 
1029
  [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
 
1030
  # Make sure it works both with $CC and with simple cc.
 
1031
  # Following AC_PROG_CC_C_O, we do the test twice because some
 
1032
  # compilers refuse to overwrite an existing .o file with -o,
 
1033
  # though they will create one.
 
1034
  am_cv_prog_cc_c_o=yes
 
1035
  for am_i in 1 2; do
 
1036
    if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
 
1037
         && test -f conftest2.$ac_objext; then
 
1038
      : OK
 
1039
    else
 
1040
      am_cv_prog_cc_c_o=no
 
1041
      break
 
1042
    fi
 
1043
  done
 
1044
  rm -f core conftest*
 
1045
  unset am_i])
 
1046
if test "$am_cv_prog_cc_c_o" != yes; then
 
1047
   # Losing compiler, so override with the script.
 
1048
   # FIXME: It is wrong to rewrite CC.
 
1049
   # But if we don't then we get into trouble of one sort or another.
 
1050
   # A longer-term fix would be to have automake use am__CC in this case,
 
1051
   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
 
1052
   CC="$am_aux_dir/compile $CC"
 
1053
fi
 
1054
AC_LANG_POP([C])])
 
1055
 
 
1056
# For backward compatibility.
 
1057
AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
 
1058
 
 
1059
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
 
1060
#
 
1061
# This file is free software; the Free Software Foundation
 
1062
# gives unlimited permission to copy and/or distribute it,
 
1063
# with or without modifications, as long as this notice is preserved.
 
1064
 
 
1065
# AM_RUN_LOG(COMMAND)
 
1066
# -------------------
 
1067
# Run COMMAND, save the exit status in ac_status, and log it.
 
1068
# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
 
1069
AC_DEFUN([AM_RUN_LOG],
 
1070
[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
 
1071
   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
 
1072
   ac_status=$?
 
1073
   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
 
1074
   (exit $ac_status); }])
 
1075
 
948
1076
# Check to make sure that the build environment is sane.    -*- Autoconf -*-
949
1077
 
950
 
# Copyright (C) 1996-2012 Free Software Foundation, Inc.
 
1078
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
951
1079
#
952
1080
# This file is free software; the Free Software Foundation
953
1081
# gives unlimited permission to copy and/or distribute it,
954
1082
# with or without modifications, as long as this notice is preserved.
955
1083
 
956
 
# serial 9
957
 
 
958
1084
# AM_SANITY_CHECK
959
1085
# ---------------
960
1086
AC_DEFUN([AM_SANITY_CHECK],
1030
1156
rm -f conftest.file
1031
1157
])
1032
1158
 
1033
 
# Copyright (C) 2009-2012 Free Software Foundation, Inc.
 
1159
# Copyright (C) 2009-2013 Free Software Foundation, Inc.
1034
1160
#
1035
1161
# This file is free software; the Free Software Foundation
1036
1162
# gives unlimited permission to copy and/or distribute it,
1037
1163
# with or without modifications, as long as this notice is preserved.
1038
1164
 
1039
 
# serial 3
1040
 
 
1041
1165
# AM_SILENT_RULES([DEFAULT])
1042
1166
# --------------------------
1043
1167
# Enable less verbose build rules; with the default set to DEFAULT
1092
1216
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1093
1217
])
1094
1218
 
1095
 
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
 
1219
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
1096
1220
#
1097
1221
# This file is free software; the Free Software Foundation
1098
1222
# gives unlimited permission to copy and/or distribute it,
1099
1223
# with or without modifications, as long as this notice is preserved.
1100
1224
 
1101
 
# serial 2
1102
 
 
1103
1225
# AM_PROG_INSTALL_STRIP
1104
1226
# ---------------------
1105
1227
# One issue with vendor 'install' (even GNU) is that you can't
1122
1244
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1123
1245
AC_SUBST([INSTALL_STRIP_PROGRAM])])
1124
1246
 
1125
 
# Copyright (C) 2006-2012 Free Software Foundation, Inc.
 
1247
# Copyright (C) 2006-2013 Free Software Foundation, Inc.
1126
1248
#
1127
1249
# This file is free software; the Free Software Foundation
1128
1250
# gives unlimited permission to copy and/or distribute it,
1129
1251
# with or without modifications, as long as this notice is preserved.
1130
1252
 
1131
 
# serial 3
1132
 
 
1133
1253
# _AM_SUBST_NOTMAKE(VARIABLE)
1134
1254
# ---------------------------
1135
1255
# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1143
1263
 
1144
1264
# Check how to create a tarball.                            -*- Autoconf -*-
1145
1265
 
1146
 
# Copyright (C) 2004-2012 Free Software Foundation, Inc.
 
1266
# Copyright (C) 2004-2013 Free Software Foundation, Inc.
1147
1267
#
1148
1268
# This file is free software; the Free Software Foundation
1149
1269
# gives unlimited permission to copy and/or distribute it,
1150
1270
# with or without modifications, as long as this notice is preserved.
1151
1271
 
1152
 
# serial 3
1153
 
 
1154
1272
# _AM_PROG_TAR(FORMAT)
1155
1273
# --------------------
1156
1274
# Check how to create a tarball in format FORMAT.
1164
1282
# Substitute a variable $(am__untar) that extract such
1165
1283
# a tarball read from stdin.
1166
1284
#     $(am__untar) < result.tar
 
1285
#
1167
1286
AC_DEFUN([_AM_PROG_TAR],
1168
1287
[# Always define AMTAR for backward compatibility.  Yes, it's still used
1169
1288
# in the wild :-(  We should find a proper way to deprecate it ...
1170
1289
AC_SUBST([AMTAR], ['$${TAR-tar}'])
 
1290
 
 
1291
# We'll loop over all known methods to create a tar archive until one works.
 
1292
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
 
1293
 
1171
1294
m4_if([$1], [v7],
1172
 
     [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1173
 
     [m4_case([$1], [ustar],, [pax],,
1174
 
              [m4_fatal([Unknown tar format])])
1175
 
AC_MSG_CHECKING([how to create a $1 tar archive])
1176
 
# Loop over all known methods to create a tar archive until one works.
1177
 
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1178
 
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
1179
 
# Do not fold the above two line into one, because Tru64 sh and
1180
 
# Solaris sh will not grok spaces in the rhs of '-'.
1181
 
for _am_tool in $_am_tools
1182
 
do
1183
 
  case $_am_tool in
1184
 
  gnutar)
1185
 
    for _am_tar in tar gnutar gtar;
1186
 
    do
1187
 
      AM_RUN_LOG([$_am_tar --version]) && break
1188
 
    done
1189
 
    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1190
 
    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1191
 
    am__untar="$_am_tar -xf -"
1192
 
    ;;
1193
 
  plaintar)
1194
 
    # Must skip GNU tar: if it does not support --format= it doesn't create
1195
 
    # ustar tarball either.
1196
 
    (tar --version) >/dev/null 2>&1 && continue
1197
 
    am__tar='tar chf - "$$tardir"'
1198
 
    am__tar_='tar chf - "$tardir"'
1199
 
    am__untar='tar xf -'
1200
 
    ;;
1201
 
  pax)
1202
 
    am__tar='pax -L -x $1 -w "$$tardir"'
1203
 
    am__tar_='pax -L -x $1 -w "$tardir"'
1204
 
    am__untar='pax -r'
1205
 
    ;;
1206
 
  cpio)
1207
 
    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1208
 
    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1209
 
    am__untar='cpio -i -H $1 -d'
1210
 
    ;;
1211
 
  none)
1212
 
    am__tar=false
1213
 
    am__tar_=false
1214
 
    am__untar=false
1215
 
    ;;
1216
 
  esac
1217
 
 
1218
 
  # If the value was cached, stop now.  We just wanted to have am__tar
1219
 
  # and am__untar set.
1220
 
  test -n "${am_cv_prog_tar_$1}" && break
1221
 
 
1222
 
  # tar/untar a dummy directory, and stop if the command works
1223
 
  rm -rf conftest.dir
1224
 
  mkdir conftest.dir
1225
 
  echo GrepMe > conftest.dir/file
1226
 
  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1227
 
  rm -rf conftest.dir
1228
 
  if test -s conftest.tar; then
1229
 
    AM_RUN_LOG([$am__untar <conftest.tar])
1230
 
    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1231
 
  fi
1232
 
done
1233
 
rm -rf conftest.dir
1234
 
 
1235
 
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1236
 
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 
1295
  [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
 
1296
 
 
1297
  [m4_case([$1],
 
1298
    [ustar],
 
1299
     [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
 
1300
      # There is notably a 21 bits limit for the UID and the GID.  In fact,
 
1301
      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
 
1302
      # and bug#13588).
 
1303
      am_max_uid=2097151 # 2^21 - 1
 
1304
      am_max_gid=$am_max_uid
 
1305
      # The $UID and $GID variables are not portable, so we need to resort
 
1306
      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
 
1307
      # below are definitely unexpected, so allow the users to see them
 
1308
      # (that is, avoid stderr redirection).
 
1309
      am_uid=`id -u || echo unknown`
 
1310
      am_gid=`id -g || echo unknown`
 
1311
      AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
 
1312
      if test $am_uid -le $am_max_uid; then
 
1313
         AC_MSG_RESULT([yes])
 
1314
      else
 
1315
         AC_MSG_RESULT([no])
 
1316
         _am_tools=none
 
1317
      fi
 
1318
      AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
 
1319
      if test $am_gid -le $am_max_gid; then
 
1320
         AC_MSG_RESULT([yes])
 
1321
      else
 
1322
        AC_MSG_RESULT([no])
 
1323
        _am_tools=none
 
1324
      fi],
 
1325
 
 
1326
  [pax],
 
1327
    [],
 
1328
 
 
1329
  [m4_fatal([Unknown tar format])])
 
1330
 
 
1331
  AC_MSG_CHECKING([how to create a $1 tar archive])
 
1332
 
 
1333
  # Go ahead even if we have the value already cached.  We do so because we
 
1334
  # need to set the values for the 'am__tar' and 'am__untar' variables.
 
1335
  _am_tools=${am_cv_prog_tar_$1-$_am_tools}
 
1336
 
 
1337
  for _am_tool in $_am_tools; do
 
1338
    case $_am_tool in
 
1339
    gnutar)
 
1340
      for _am_tar in tar gnutar gtar; do
 
1341
        AM_RUN_LOG([$_am_tar --version]) && break
 
1342
      done
 
1343
      am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
 
1344
      am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
 
1345
      am__untar="$_am_tar -xf -"
 
1346
      ;;
 
1347
    plaintar)
 
1348
      # Must skip GNU tar: if it does not support --format= it doesn't create
 
1349
      # ustar tarball either.
 
1350
      (tar --version) >/dev/null 2>&1 && continue
 
1351
      am__tar='tar chf - "$$tardir"'
 
1352
      am__tar_='tar chf - "$tardir"'
 
1353
      am__untar='tar xf -'
 
1354
      ;;
 
1355
    pax)
 
1356
      am__tar='pax -L -x $1 -w "$$tardir"'
 
1357
      am__tar_='pax -L -x $1 -w "$tardir"'
 
1358
      am__untar='pax -r'
 
1359
      ;;
 
1360
    cpio)
 
1361
      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
 
1362
      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
 
1363
      am__untar='cpio -i -H $1 -d'
 
1364
      ;;
 
1365
    none)
 
1366
      am__tar=false
 
1367
      am__tar_=false
 
1368
      am__untar=false
 
1369
      ;;
 
1370
    esac
 
1371
 
 
1372
    # If the value was cached, stop now.  We just wanted to have am__tar
 
1373
    # and am__untar set.
 
1374
    test -n "${am_cv_prog_tar_$1}" && break
 
1375
 
 
1376
    # tar/untar a dummy directory, and stop if the command works.
 
1377
    rm -rf conftest.dir
 
1378
    mkdir conftest.dir
 
1379
    echo GrepMe > conftest.dir/file
 
1380
    AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
 
1381
    rm -rf conftest.dir
 
1382
    if test -s conftest.tar; then
 
1383
      AM_RUN_LOG([$am__untar <conftest.tar])
 
1384
      AM_RUN_LOG([cat conftest.dir/file])
 
1385
      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
 
1386
    fi
 
1387
  done
 
1388
  rm -rf conftest.dir
 
1389
 
 
1390
  AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
 
1391
  AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 
1392
 
1237
1393
AC_SUBST([am__tar])
1238
1394
AC_SUBST([am__untar])
1239
1395
]) # _AM_PROG_TAR
1240
1396
 
1241
1397
m4_include([m4/00gnulib.m4])
 
1398
m4_include([m4/absolute-header.m4])
1242
1399
m4_include([m4/alloca.m4])
1243
1400
m4_include([m4/assert.m4])
1244
1401
m4_include([m4/btowc.m4])
1258
1415
m4_include([m4/errno_h.m4])
1259
1416
m4_include([m4/error.m4])
1260
1417
m4_include([m4/extensions.m4])
1261
 
m4_include([m4/fchdir.m4])
 
1418
m4_include([m4/extern-inline.m4])
1262
1419
m4_include([m4/fcntl-o.m4])
1263
1420
m4_include([m4/fcntl_h.m4])
1264
1421
m4_include([m4/fdopen.m4])
1266
1423
m4_include([m4/fstat.m4])
1267
1424
m4_include([m4/fsync.m4])
1268
1425
m4_include([m4/getcwd.m4])
 
1426
m4_include([m4/getdtablesize.m4])
1269
1427
m4_include([m4/getopt.m4])
1270
1428
m4_include([m4/getpagesize.m4])
1271
1429
m4_include([m4/gettext.m4])
1275
1433
m4_include([m4/gnulib-comp.m4])
1276
1434
m4_include([m4/iconv.m4])
1277
1435
m4_include([m4/include_next.m4])
1278
 
m4_include([m4/inline.m4])
1279
1436
m4_include([m4/intlmacosx.m4])
1280
1437
m4_include([m4/inttypes-pri.m4])
1281
1438
m4_include([m4/inttypes.m4])
1293
1450
m4_include([m4/locale-tr.m4])
1294
1451
m4_include([m4/locale-zh.m4])
1295
1452
m4_include([m4/locale_h.m4])
 
1453
m4_include([m4/localeconv.m4])
1296
1454
m4_include([m4/localename.m4])
1297
1455
m4_include([m4/lock.m4])
1298
1456
m4_include([m4/longlong.m4])
1319
1477
m4_include([m4/nls.m4])
1320
1478
m4_include([m4/nocrash.m4])
1321
1479
m4_include([m4/o-direct.m4])
 
1480
m4_include([m4/off_t.m4])
1322
1481
m4_include([m4/open.m4])
1323
1482
m4_include([m4/pathmax.m4])
1324
1483
m4_include([m4/po.m4])
1333
1492
m4_include([m4/regex.m4])
1334
1493
m4_include([m4/rpmatch.m4])
1335
1494
m4_include([m4/safe-read.m4])
 
1495
m4_include([m4/secure_getenv.m4])
1336
1496
m4_include([m4/setenv.m4])
1337
1497
m4_include([m4/setlocale.m4])
1338
1498
m4_include([m4/sleep.m4])
1344
1504
m4_include([m4/stdint.m4])
1345
1505
m4_include([m4/stdio_h.m4])
1346
1506
m4_include([m4/stdlib_h.m4])
1347
 
m4_include([m4/strcase.m4])
1348
1507
m4_include([m4/strdup.m4])
1349
1508
m4_include([m4/strerror.m4])
1350
 
m4_include([m4/strerror_r.m4])
1351
1509
m4_include([m4/string_h.m4])
1352
 
m4_include([m4/strings_h.m4])
1353
1510
m4_include([m4/strndup.m4])
1354
1511
m4_include([m4/strnlen.m4])
1355
1512
m4_include([m4/strtoll.m4])