1# generated automatically by aclocal 1.16.3 -*- Autoconf -*-
2
3# Copyright (C) 1996-2020 Free Software Foundation, Inc.
4
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
14m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
15m4_ifndef([AC_AUTOCONF_VERSION],
16  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
17m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.71],,
18[m4_warning([this file was generated for autoconf 2.71.
19You have another version of autoconf.  It may work, but is not guaranteed to.
20If you have problems, you may need to regenerate the build system entirely.
21To do so, use the procedure documented by the package, typically 'autoreconf'.])])
22
23# ===========================================================================
24#    https://www.gnu.org/software/autoconf-archive/ax_require_defined.html
25# ===========================================================================
26#
27# SYNOPSIS
28#
29#   AX_REQUIRE_DEFINED(MACRO)
30#
31# DESCRIPTION
32#
33#   AX_REQUIRE_DEFINED is a simple helper for making sure other macros have
34#   been defined and thus are available for use.  This avoids random issues
35#   where a macro isn't expanded.  Instead the configure script emits a
36#   non-fatal:
37#
38#     ./configure: line 1673: AX_CFLAGS_WARN_ALL: command not found
39#
40#   It's like AC_REQUIRE except it doesn't expand the required macro.
41#
42#   Here's an example:
43#
44#     AX_REQUIRE_DEFINED([AX_CHECK_LINK_FLAG])
45#
46# LICENSE
47#
48#   Copyright (c) 2014 Mike Frysinger <vapier@gentoo.org>
49#
50#   Copying and distribution of this file, with or without modification, are
51#   permitted in any medium without royalty provided the copyright notice
52#   and this notice are preserved. This file is offered as-is, without any
53#   warranty.
54
55#serial 2
56
57AC_DEFUN([AX_REQUIRE_DEFINED], [dnl
58  m4_ifndef([$1], [m4_fatal([macro ]$1[ is not defined; is a m4 file missing?])])
59])dnl AX_REQUIRE_DEFINED
60
61# pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
62# serial 11 (pkg-config-0.29.1)
63
64dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
65dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
66dnl
67dnl This program is free software; you can redistribute it and/or modify
68dnl it under the terms of the GNU General Public License as published by
69dnl the Free Software Foundation; either version 2 of the License, or
70dnl (at your option) any later version.
71dnl
72dnl This program is distributed in the hope that it will be useful, but
73dnl WITHOUT ANY WARRANTY; without even the implied warranty of
74dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
75dnl General Public License for more details.
76dnl
77dnl You should have received a copy of the GNU General Public License
78dnl along with this program; if not, write to the Free Software
79dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
80dnl 02111-1307, USA.
81dnl
82dnl As a special exception to the GNU General Public License, if you
83dnl distribute this file as part of a program that contains a
84dnl configuration script generated by Autoconf, you may include it under
85dnl the same distribution terms that you use for the rest of that
86dnl program.
87
88dnl PKG_PREREQ(MIN-VERSION)
89dnl -----------------------
90dnl Since: 0.29
91dnl
92dnl Verify that the version of the pkg-config macros are at least
93dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
94dnl installed version of pkg-config, this checks the developer's version
95dnl of pkg.m4 when generating configure.
96dnl
97dnl To ensure that this macro is defined, also add:
98dnl m4_ifndef([PKG_PREREQ],
99dnl     [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
100dnl
101dnl See the "Since" comment for each macro you use to see what version
102dnl of the macros you require.
103m4_defun([PKG_PREREQ],
104[m4_define([PKG_MACROS_VERSION], [0.29.1])
105m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
106    [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
107])dnl PKG_PREREQ
108
109dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
110dnl ----------------------------------
111dnl Since: 0.16
112dnl
113dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
114dnl first found in the path. Checks that the version of pkg-config found
115dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
116dnl used since that's the first version where most current features of
117dnl pkg-config existed.
118AC_DEFUN([PKG_PROG_PKG_CONFIG],
119[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
120m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
121m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
122AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
123AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
124AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
125
126if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
127	AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
128fi
129if test -n "$PKG_CONFIG"; then
130	_pkg_min_version=m4_default([$1], [0.9.0])
131	AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
132	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
133		AC_MSG_RESULT([yes])
134	else
135		AC_MSG_RESULT([no])
136		PKG_CONFIG=""
137	fi
138fi[]dnl
139])dnl PKG_PROG_PKG_CONFIG
140
141dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
142dnl -------------------------------------------------------------------
143dnl Since: 0.18
144dnl
145dnl Check to see whether a particular set of modules exists. Similar to
146dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
147dnl
148dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
149dnl only at the first occurence in configure.ac, so if the first place
150dnl it's called might be skipped (such as if it is within an "if", you
151dnl have to call PKG_CHECK_EXISTS manually
152AC_DEFUN([PKG_CHECK_EXISTS],
153[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
154if test -n "$PKG_CONFIG" && \
155    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
156  m4_default([$2], [:])
157m4_ifvaln([$3], [else
158  $3])dnl
159fi])
160
161dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
162dnl ---------------------------------------------
163dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
164dnl pkg_failed based on the result.
165m4_define([_PKG_CONFIG],
166[if test -n "$$1"; then
167    pkg_cv_[]$1="$$1"
168 elif test -n "$PKG_CONFIG"; then
169    PKG_CHECK_EXISTS([$3],
170                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
171		      test "x$?" != "x0" && pkg_failed=yes ],
172		     [pkg_failed=yes])
173 else
174    pkg_failed=untried
175fi[]dnl
176])dnl _PKG_CONFIG
177
178dnl _PKG_SHORT_ERRORS_SUPPORTED
179dnl ---------------------------
180dnl Internal check to see if pkg-config supports short errors.
181AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
182[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
183if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
184        _pkg_short_errors_supported=yes
185else
186        _pkg_short_errors_supported=no
187fi[]dnl
188])dnl _PKG_SHORT_ERRORS_SUPPORTED
189
190
191dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
192dnl   [ACTION-IF-NOT-FOUND])
193dnl --------------------------------------------------------------
194dnl Since: 0.4.0
195dnl
196dnl Note that if there is a possibility the first call to
197dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
198dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
199AC_DEFUN([PKG_CHECK_MODULES],
200[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
201AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
202AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
203
204pkg_failed=no
205AC_MSG_CHECKING([for $1])
206
207_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
208_PKG_CONFIG([$1][_LIBS], [libs], [$2])
209
210m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
211and $1[]_LIBS to avoid the need to call pkg-config.
212See the pkg-config man page for more details.])
213
214if test $pkg_failed = yes; then
215   	AC_MSG_RESULT([no])
216        _PKG_SHORT_ERRORS_SUPPORTED
217        if test $_pkg_short_errors_supported = yes; then
218	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
219        else
220	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
221        fi
222	# Put the nasty error message in config.log where it belongs
223	echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
224
225	m4_default([$4], [AC_MSG_ERROR(
226[Package requirements ($2) were not met:
227
228$$1_PKG_ERRORS
229
230Consider adjusting the PKG_CONFIG_PATH environment variable if you
231installed software in a non-standard prefix.
232
233_PKG_TEXT])[]dnl
234        ])
235elif test $pkg_failed = untried; then
236     	AC_MSG_RESULT([no])
237	m4_default([$4], [AC_MSG_FAILURE(
238[The pkg-config script could not be found or is too old.  Make sure it
239is in your PATH or set the PKG_CONFIG environment variable to the full
240path to pkg-config.
241
242_PKG_TEXT
243
244To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
245        ])
246else
247	$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
248	$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
249        AC_MSG_RESULT([yes])
250	$3
251fi[]dnl
252])dnl PKG_CHECK_MODULES
253
254
255dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
256dnl   [ACTION-IF-NOT-FOUND])
257dnl ---------------------------------------------------------------------
258dnl Since: 0.29
259dnl
260dnl Checks for existence of MODULES and gathers its build flags with
261dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
262dnl and VARIABLE-PREFIX_LIBS from --libs.
263dnl
264dnl Note that if there is a possibility the first call to
265dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
266dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
267dnl configure.ac.
268AC_DEFUN([PKG_CHECK_MODULES_STATIC],
269[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
270_save_PKG_CONFIG=$PKG_CONFIG
271PKG_CONFIG="$PKG_CONFIG --static"
272PKG_CHECK_MODULES($@)
273PKG_CONFIG=$_save_PKG_CONFIG[]dnl
274])dnl PKG_CHECK_MODULES_STATIC
275
276
277dnl PKG_INSTALLDIR([DIRECTORY])
278dnl -------------------------
279dnl Since: 0.27
280dnl
281dnl Substitutes the variable pkgconfigdir as the location where a module
282dnl should install pkg-config .pc files. By default the directory is
283dnl $libdir/pkgconfig, but the default can be changed by passing
284dnl DIRECTORY. The user can override through the --with-pkgconfigdir
285dnl parameter.
286AC_DEFUN([PKG_INSTALLDIR],
287[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
288m4_pushdef([pkg_description],
289    [pkg-config installation directory @<:@]pkg_default[@:>@])
290AC_ARG_WITH([pkgconfigdir],
291    [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
292    [with_pkgconfigdir=]pkg_default)
293AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
294m4_popdef([pkg_default])
295m4_popdef([pkg_description])
296])dnl PKG_INSTALLDIR
297
298
299dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
300dnl --------------------------------
301dnl Since: 0.27
302dnl
303dnl Substitutes the variable noarch_pkgconfigdir as the location where a
304dnl module should install arch-independent pkg-config .pc files. By
305dnl default the directory is $datadir/pkgconfig, but the default can be
306dnl changed by passing DIRECTORY. The user can override through the
307dnl --with-noarch-pkgconfigdir parameter.
308AC_DEFUN([PKG_NOARCH_INSTALLDIR],
309[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
310m4_pushdef([pkg_description],
311    [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
312AC_ARG_WITH([noarch-pkgconfigdir],
313    [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
314    [with_noarch_pkgconfigdir=]pkg_default)
315AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
316m4_popdef([pkg_default])
317m4_popdef([pkg_description])
318])dnl PKG_NOARCH_INSTALLDIR
319
320
321dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
322dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
323dnl -------------------------------------------
324dnl Since: 0.28
325dnl
326dnl Retrieves the value of the pkg-config variable for the given module.
327AC_DEFUN([PKG_CHECK_VAR],
328[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
329AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
330
331_PKG_CONFIG([$1], [variable="][$3]["], [$2])
332AS_VAR_COPY([$1], [pkg_cv_][$1])
333
334AS_VAR_IF([$1], [""], [$5], [$4])dnl
335])dnl PKG_CHECK_VAR
336
337dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES,
338dnl   [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND],
339dnl   [DESCRIPTION], [DEFAULT])
340dnl ------------------------------------------
341dnl
342dnl Prepare a "--with-" configure option using the lowercase
343dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and
344dnl PKG_CHECK_MODULES in a single macro.
345AC_DEFUN([PKG_WITH_MODULES],
346[
347m4_pushdef([with_arg], m4_tolower([$1]))
348
349m4_pushdef([description],
350           [m4_default([$5], [build with ]with_arg[ support])])
351
352m4_pushdef([def_arg], [m4_default([$6], [auto])])
353m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
354m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
355
356m4_case(def_arg,
357            [yes],[m4_pushdef([with_without], [--without-]with_arg)],
358            [m4_pushdef([with_without],[--with-]with_arg)])
359
360AC_ARG_WITH(with_arg,
361     AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
362    [AS_TR_SH([with_]with_arg)=def_arg])
363
364AS_CASE([$AS_TR_SH([with_]with_arg)],
365            [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
366            [auto],[PKG_CHECK_MODULES([$1],[$2],
367                                        [m4_n([def_action_if_found]) $3],
368                                        [m4_n([def_action_if_not_found]) $4])])
369
370m4_popdef([with_arg])
371m4_popdef([description])
372m4_popdef([def_arg])
373
374])dnl PKG_WITH_MODULES
375
376dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
377dnl   [DESCRIPTION], [DEFAULT])
378dnl -----------------------------------------------
379dnl
380dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES
381dnl check._[VARIABLE-PREFIX] is exported as make variable.
382AC_DEFUN([PKG_HAVE_WITH_MODULES],
383[
384PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
385
386AM_CONDITIONAL([HAVE_][$1],
387               [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
388])dnl PKG_HAVE_WITH_MODULES
389
390dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
391dnl   [DESCRIPTION], [DEFAULT])
392dnl ------------------------------------------------------
393dnl
394dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after
395dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make
396dnl and preprocessor variable.
397AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES],
398[
399PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
400
401AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
402        [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
403])dnl PKG_HAVE_DEFINE_WITH_MODULES
404
405# Copyright (C) 2002-2020 Free Software Foundation, Inc.
406#
407# This file is free software; the Free Software Foundation
408# gives unlimited permission to copy and/or distribute it,
409# with or without modifications, as long as this notice is preserved.
410
411# AM_AUTOMAKE_VERSION(VERSION)
412# ----------------------------
413# Automake X.Y traces this macro to ensure aclocal.m4 has been
414# generated from the m4 files accompanying Automake X.Y.
415# (This private macro should not be called outside this file.)
416AC_DEFUN([AM_AUTOMAKE_VERSION],
417[am__api_version='1.16'
418dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
419dnl require some minimum version.  Point them to the right macro.
420m4_if([$1], [1.16.3], [],
421      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
422])
423
424# _AM_AUTOCONF_VERSION(VERSION)
425# -----------------------------
426# aclocal traces this macro to find the Autoconf version.
427# This is a private macro too.  Using m4_define simplifies
428# the logic in aclocal, which can simply ignore this definition.
429m4_define([_AM_AUTOCONF_VERSION], [])
430
431# AM_SET_CURRENT_AUTOMAKE_VERSION
432# -------------------------------
433# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
434# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
435AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
436[AM_AUTOMAKE_VERSION([1.16.3])dnl
437m4_ifndef([AC_AUTOCONF_VERSION],
438  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
439_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
440
441# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
442
443# Copyright (C) 2001-2020 Free Software Foundation, Inc.
444#
445# This file is free software; the Free Software Foundation
446# gives unlimited permission to copy and/or distribute it,
447# with or without modifications, as long as this notice is preserved.
448
449# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
450# $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
451# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
452#
453# Of course, Automake must honor this variable whenever it calls a
454# tool from the auxiliary directory.  The problem is that $srcdir (and
455# therefore $ac_aux_dir as well) can be either absolute or relative,
456# depending on how configure is run.  This is pretty annoying, since
457# it makes $ac_aux_dir quite unusable in subdirectories: in the top
458# source directory, any form will work fine, but in subdirectories a
459# relative path needs to be adjusted first.
460#
461# $ac_aux_dir/missing
462#    fails when called from a subdirectory if $ac_aux_dir is relative
463# $top_srcdir/$ac_aux_dir/missing
464#    fails if $ac_aux_dir is absolute,
465#    fails when called from a subdirectory in a VPATH build with
466#          a relative $ac_aux_dir
467#
468# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
469# are both prefixed by $srcdir.  In an in-source build this is usually
470# harmless because $srcdir is '.', but things will broke when you
471# start a VPATH build or use an absolute $srcdir.
472#
473# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
474# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
475#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
476# and then we would define $MISSING as
477#   MISSING="\${SHELL} $am_aux_dir/missing"
478# This will work as long as MISSING is not called from configure, because
479# unfortunately $(top_srcdir) has no meaning in configure.
480# However there are other variables, like CC, which are often used in
481# configure, and could therefore not use this "fixed" $ac_aux_dir.
482#
483# Another solution, used here, is to always expand $ac_aux_dir to an
484# absolute PATH.  The drawback is that using absolute paths prevent a
485# configured tree to be moved without reconfiguration.
486
487AC_DEFUN([AM_AUX_DIR_EXPAND],
488[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
489# Expand $ac_aux_dir to an absolute path.
490am_aux_dir=`cd "$ac_aux_dir" && pwd`
491])
492
493# AM_CONDITIONAL                                            -*- Autoconf -*-
494
495# Copyright (C) 1997-2020 Free Software Foundation, Inc.
496#
497# This file is free software; the Free Software Foundation
498# gives unlimited permission to copy and/or distribute it,
499# with or without modifications, as long as this notice is preserved.
500
501# AM_CONDITIONAL(NAME, SHELL-CONDITION)
502# -------------------------------------
503# Define a conditional.
504AC_DEFUN([AM_CONDITIONAL],
505[AC_PREREQ([2.52])dnl
506 m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
507       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
508AC_SUBST([$1_TRUE])dnl
509AC_SUBST([$1_FALSE])dnl
510_AM_SUBST_NOTMAKE([$1_TRUE])dnl
511_AM_SUBST_NOTMAKE([$1_FALSE])dnl
512m4_define([_AM_COND_VALUE_$1], [$2])dnl
513if $2; then
514  $1_TRUE=
515  $1_FALSE='#'
516else
517  $1_TRUE='#'
518  $1_FALSE=
519fi
520AC_CONFIG_COMMANDS_PRE(
521[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
522  AC_MSG_ERROR([[conditional "$1" was never defined.
523Usually this means the macro was only invoked conditionally.]])
524fi])])
525
526# Copyright (C) 1999-2020 Free Software Foundation, Inc.
527#
528# This file is free software; the Free Software Foundation
529# gives unlimited permission to copy and/or distribute it,
530# with or without modifications, as long as this notice is preserved.
531
532
533# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
534# written in clear, in which case automake, when reading aclocal.m4,
535# will think it sees a *use*, and therefore will trigger all it's
536# C support machinery.  Also note that it means that autoscan, seeing
537# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
538
539
540# _AM_DEPENDENCIES(NAME)
541# ----------------------
542# See how the compiler implements dependency checking.
543# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
544# We try a few techniques and use that to set a single cache variable.
545#
546# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
547# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
548# dependency, and given that the user is not expected to run this macro,
549# just rely on AC_PROG_CC.
550AC_DEFUN([_AM_DEPENDENCIES],
551[AC_REQUIRE([AM_SET_DEPDIR])dnl
552AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
553AC_REQUIRE([AM_MAKE_INCLUDE])dnl
554AC_REQUIRE([AM_DEP_TRACK])dnl
555
556m4_if([$1], [CC],   [depcc="$CC"   am_compiler_list=],
557      [$1], [CXX],  [depcc="$CXX"  am_compiler_list=],
558      [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
559      [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
560      [$1], [UPC],  [depcc="$UPC"  am_compiler_list=],
561      [$1], [GCJ],  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
562                    [depcc="$$1"   am_compiler_list=])
563
564AC_CACHE_CHECK([dependency style of $depcc],
565               [am_cv_$1_dependencies_compiler_type],
566[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
567  # We make a subdir and do the tests there.  Otherwise we can end up
568  # making bogus files that we don't know about and never remove.  For
569  # instance it was reported that on HP-UX the gcc test will end up
570  # making a dummy file named 'D' -- because '-MD' means "put the output
571  # in D".
572  rm -rf conftest.dir
573  mkdir conftest.dir
574  # Copy depcomp to subdir because otherwise we won't find it if we're
575  # using a relative directory.
576  cp "$am_depcomp" conftest.dir
577  cd conftest.dir
578  # We will build objects and dependencies in a subdirectory because
579  # it helps to detect inapplicable dependency modes.  For instance
580  # both Tru64's cc and ICC support -MD to output dependencies as a
581  # side effect of compilation, but ICC will put the dependencies in
582  # the current directory while Tru64 will put them in the object
583  # directory.
584  mkdir sub
585
586  am_cv_$1_dependencies_compiler_type=none
587  if test "$am_compiler_list" = ""; then
588     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
589  fi
590  am__universal=false
591  m4_case([$1], [CC],
592    [case " $depcc " in #(
593     *\ -arch\ *\ -arch\ *) am__universal=true ;;
594     esac],
595    [CXX],
596    [case " $depcc " in #(
597     *\ -arch\ *\ -arch\ *) am__universal=true ;;
598     esac])
599
600  for depmode in $am_compiler_list; do
601    # Setup a source with many dependencies, because some compilers
602    # like to wrap large dependency lists on column 80 (with \), and
603    # we should not choose a depcomp mode which is confused by this.
604    #
605    # We need to recreate these files for each test, as the compiler may
606    # overwrite some of them when testing with obscure command lines.
607    # This happens at least with the AIX C compiler.
608    : > sub/conftest.c
609    for i in 1 2 3 4 5 6; do
610      echo '#include "conftst'$i'.h"' >> sub/conftest.c
611      # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
612      # Solaris 10 /bin/sh.
613      echo '/* dummy */' > sub/conftst$i.h
614    done
615    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
616
617    # We check with '-c' and '-o' for the sake of the "dashmstdout"
618    # mode.  It turns out that the SunPro C++ compiler does not properly
619    # handle '-M -o', and we need to detect this.  Also, some Intel
620    # versions had trouble with output in subdirs.
621    am__obj=sub/conftest.${OBJEXT-o}
622    am__minus_obj="-o $am__obj"
623    case $depmode in
624    gcc)
625      # This depmode causes a compiler race in universal mode.
626      test "$am__universal" = false || continue
627      ;;
628    nosideeffect)
629      # After this tag, mechanisms are not by side-effect, so they'll
630      # only be used when explicitly requested.
631      if test "x$enable_dependency_tracking" = xyes; then
632	continue
633      else
634	break
635      fi
636      ;;
637    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
638      # This compiler won't grok '-c -o', but also, the minuso test has
639      # not run yet.  These depmodes are late enough in the game, and
640      # so weak that their functioning should not be impacted.
641      am__obj=conftest.${OBJEXT-o}
642      am__minus_obj=
643      ;;
644    none) break ;;
645    esac
646    if depmode=$depmode \
647       source=sub/conftest.c object=$am__obj \
648       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
649       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
650         >/dev/null 2>conftest.err &&
651       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
652       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
653       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
654       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
655      # icc doesn't choke on unknown options, it will just issue warnings
656      # or remarks (even with -Werror).  So we grep stderr for any message
657      # that says an option was ignored or not supported.
658      # When given -MP, icc 7.0 and 7.1 complain thusly:
659      #   icc: Command line warning: ignoring option '-M'; no argument required
660      # The diagnosis changed in icc 8.0:
661      #   icc: Command line remark: option '-MP' not supported
662      if (grep 'ignoring option' conftest.err ||
663          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
664        am_cv_$1_dependencies_compiler_type=$depmode
665        break
666      fi
667    fi
668  done
669
670  cd ..
671  rm -rf conftest.dir
672else
673  am_cv_$1_dependencies_compiler_type=none
674fi
675])
676AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
677AM_CONDITIONAL([am__fastdep$1], [
678  test "x$enable_dependency_tracking" != xno \
679  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
680])
681
682
683# AM_SET_DEPDIR
684# -------------
685# Choose a directory name for dependency files.
686# This macro is AC_REQUIREd in _AM_DEPENDENCIES.
687AC_DEFUN([AM_SET_DEPDIR],
688[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
689AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
690])
691
692
693# AM_DEP_TRACK
694# ------------
695AC_DEFUN([AM_DEP_TRACK],
696[AC_ARG_ENABLE([dependency-tracking], [dnl
697AS_HELP_STRING(
698  [--enable-dependency-tracking],
699  [do not reject slow dependency extractors])
700AS_HELP_STRING(
701  [--disable-dependency-tracking],
702  [speeds up one-time build])])
703if test "x$enable_dependency_tracking" != xno; then
704  am_depcomp="$ac_aux_dir/depcomp"
705  AMDEPBACKSLASH='\'
706  am__nodep='_no'
707fi
708AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
709AC_SUBST([AMDEPBACKSLASH])dnl
710_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
711AC_SUBST([am__nodep])dnl
712_AM_SUBST_NOTMAKE([am__nodep])dnl
713])
714
715# Generate code to set up dependency tracking.              -*- Autoconf -*-
716
717# Copyright (C) 1999-2020 Free Software Foundation, Inc.
718#
719# This file is free software; the Free Software Foundation
720# gives unlimited permission to copy and/or distribute it,
721# with or without modifications, as long as this notice is preserved.
722
723# _AM_OUTPUT_DEPENDENCY_COMMANDS
724# ------------------------------
725AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
726[{
727  # Older Autoconf quotes --file arguments for eval, but not when files
728  # are listed without --file.  Let's play safe and only enable the eval
729  # if we detect the quoting.
730  # TODO: see whether this extra hack can be removed once we start
731  # requiring Autoconf 2.70 or later.
732  AS_CASE([$CONFIG_FILES],
733          [*\'*], [eval set x "$CONFIG_FILES"],
734          [*], [set x $CONFIG_FILES])
735  shift
736  # Used to flag and report bootstrapping failures.
737  am_rc=0
738  for am_mf
739  do
740    # Strip MF so we end up with the name of the file.
741    am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
742    # Check whether this is an Automake generated Makefile which includes
743    # dependency-tracking related rules and includes.
744    # Grep'ing the whole file directly is not great: AIX grep has a line
745    # limit of 2048, but all sed's we know have understand at least 4000.
746    sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
747      || continue
748    am_dirpart=`AS_DIRNAME(["$am_mf"])`
749    am_filepart=`AS_BASENAME(["$am_mf"])`
750    AM_RUN_LOG([cd "$am_dirpart" \
751      && sed -e '/# am--include-marker/d' "$am_filepart" \
752        | $MAKE -f - am--depfiles]) || am_rc=$?
753  done
754  if test $am_rc -ne 0; then
755    AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
756    for automatic dependency tracking.  If GNU make was not used, consider
757    re-running the configure script with MAKE="gmake" (or whatever is
758    necessary).  You can also try re-running configure with the
759    '--disable-dependency-tracking' option to at least be able to build
760    the package (albeit without support for automatic dependency tracking).])
761  fi
762  AS_UNSET([am_dirpart])
763  AS_UNSET([am_filepart])
764  AS_UNSET([am_mf])
765  AS_UNSET([am_rc])
766  rm -f conftest-deps.mk
767}
768])# _AM_OUTPUT_DEPENDENCY_COMMANDS
769
770
771# AM_OUTPUT_DEPENDENCY_COMMANDS
772# -----------------------------
773# This macro should only be invoked once -- use via AC_REQUIRE.
774#
775# This code is only required when automatic dependency tracking is enabled.
776# This creates each '.Po' and '.Plo' makefile fragment that we'll need in
777# order to bootstrap the dependency handling code.
778AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
779[AC_CONFIG_COMMANDS([depfiles],
780     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
781     [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
782
783# Do all the work for Automake.                             -*- Autoconf -*-
784
785# Copyright (C) 1996-2020 Free Software Foundation, Inc.
786#
787# This file is free software; the Free Software Foundation
788# gives unlimited permission to copy and/or distribute it,
789# with or without modifications, as long as this notice is preserved.
790
791# This macro actually does too much.  Some checks are only needed if
792# your package does certain things.  But this isn't really a big deal.
793
794dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
795m4_define([AC_PROG_CC],
796m4_defn([AC_PROG_CC])
797[_AM_PROG_CC_C_O
798])
799
800# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
801# AM_INIT_AUTOMAKE([OPTIONS])
802# -----------------------------------------------
803# The call with PACKAGE and VERSION arguments is the old style
804# call (pre autoconf-2.50), which is being phased out.  PACKAGE
805# and VERSION should now be passed to AC_INIT and removed from
806# the call to AM_INIT_AUTOMAKE.
807# We support both call styles for the transition.  After
808# the next Automake release, Autoconf can make the AC_INIT
809# arguments mandatory, and then we can depend on a new Autoconf
810# release and drop the old call support.
811AC_DEFUN([AM_INIT_AUTOMAKE],
812[AC_PREREQ([2.65])dnl
813dnl Autoconf wants to disallow AM_ names.  We explicitly allow
814dnl the ones we care about.
815m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
816AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
817AC_REQUIRE([AC_PROG_INSTALL])dnl
818if test "`cd $srcdir && pwd`" != "`pwd`"; then
819  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
820  # is not polluted with repeated "-I."
821  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
822  # test to see if srcdir already configured
823  if test -f $srcdir/config.status; then
824    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
825  fi
826fi
827
828# test whether we have cygpath
829if test -z "$CYGPATH_W"; then
830  if (cygpath --version) >/dev/null 2>/dev/null; then
831    CYGPATH_W='cygpath -w'
832  else
833    CYGPATH_W=echo
834  fi
835fi
836AC_SUBST([CYGPATH_W])
837
838# Define the identity of the package.
839dnl Distinguish between old-style and new-style calls.
840m4_ifval([$2],
841[AC_DIAGNOSE([obsolete],
842             [$0: two- and three-arguments forms are deprecated.])
843m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
844 AC_SUBST([PACKAGE], [$1])dnl
845 AC_SUBST([VERSION], [$2])],
846[_AM_SET_OPTIONS([$1])dnl
847dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
848m4_if(
849  m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
850  [ok:ok],,
851  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
852 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
853 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
854
855_AM_IF_OPTION([no-define],,
856[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
857 AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
858
859# Some tools Automake needs.
860AC_REQUIRE([AM_SANITY_CHECK])dnl
861AC_REQUIRE([AC_ARG_PROGRAM])dnl
862AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
863AM_MISSING_PROG([AUTOCONF], [autoconf])
864AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
865AM_MISSING_PROG([AUTOHEADER], [autoheader])
866AM_MISSING_PROG([MAKEINFO], [makeinfo])
867AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
868AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
869AC_REQUIRE([AC_PROG_MKDIR_P])dnl
870# For better backward compatibility.  To be removed once Automake 1.9.x
871# dies out for good.  For more background, see:
872# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
873# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
874AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
875# We need awk for the "check" target (and possibly the TAP driver).  The
876# system "awk" is bad on some platforms.
877AC_REQUIRE([AC_PROG_AWK])dnl
878AC_REQUIRE([AC_PROG_MAKE_SET])dnl
879AC_REQUIRE([AM_SET_LEADING_DOT])dnl
880_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
881	      [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
882			     [_AM_PROG_TAR([v7])])])
883_AM_IF_OPTION([no-dependencies],,
884[AC_PROVIDE_IFELSE([AC_PROG_CC],
885		  [_AM_DEPENDENCIES([CC])],
886		  [m4_define([AC_PROG_CC],
887			     m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
888AC_PROVIDE_IFELSE([AC_PROG_CXX],
889		  [_AM_DEPENDENCIES([CXX])],
890		  [m4_define([AC_PROG_CXX],
891			     m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
892AC_PROVIDE_IFELSE([AC_PROG_OBJC],
893		  [_AM_DEPENDENCIES([OBJC])],
894		  [m4_define([AC_PROG_OBJC],
895			     m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
896AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
897		  [_AM_DEPENDENCIES([OBJCXX])],
898		  [m4_define([AC_PROG_OBJCXX],
899			     m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
900])
901AC_REQUIRE([AM_SILENT_RULES])dnl
902dnl The testsuite driver may need to know about EXEEXT, so add the
903dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This
904dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
905AC_CONFIG_COMMANDS_PRE(dnl
906[m4_provide_if([_AM_COMPILER_EXEEXT],
907  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
908
909# POSIX will say in a future version that running "rm -f" with no argument
910# is OK; and we want to be able to make that assumption in our Makefile
911# recipes.  So use an aggressive probe to check that the usage we want is
912# actually supported "in the wild" to an acceptable degree.
913# See automake bug#10828.
914# To make any issue more visible, cause the running configure to be aborted
915# by default if the 'rm' program in use doesn't match our expectations; the
916# user can still override this though.
917if rm -f && rm -fr && rm -rf; then : OK; else
918  cat >&2 <<'END'
919Oops!
920
921Your 'rm' program seems unable to run without file operands specified
922on the command line, even when the '-f' option is present.  This is contrary
923to the behaviour of most rm programs out there, and not conforming with
924the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
925
926Please tell bug-automake@gnu.org about your system, including the value
927of your $PATH and any error possibly output before this message.  This
928can help us improve future automake versions.
929
930END
931  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
932    echo 'Configuration will proceed anyway, since you have set the' >&2
933    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
934    echo >&2
935  else
936    cat >&2 <<'END'
937Aborting the configuration process, to ensure you take notice of the issue.
938
939You can download and install GNU coreutils to get an 'rm' implementation
940that behaves properly: <https://www.gnu.org/software/coreutils/>.
941
942If you want to complete the configuration process using your problematic
943'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
944to "yes", and re-run configure.
945
946END
947    AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
948  fi
949fi
950dnl The trailing newline in this macro's definition is deliberate, for
951dnl backward compatibility and to allow trailing 'dnl'-style comments
952dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
953])
954
955dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
956dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
957dnl mangled by Autoconf and run in a shell conditional statement.
958m4_define([_AC_COMPILER_EXEEXT],
959m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
960
961# When config.status generates a header, we must update the stamp-h file.
962# This file resides in the same directory as the config header
963# that is generated.  The stamp files are numbered to have different names.
964
965# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
966# loop where config.status creates the headers, so we can generate
967# our stamp files there.
968AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
969[# Compute $1's index in $config_headers.
970_am_arg=$1
971_am_stamp_count=1
972for _am_header in $config_headers :; do
973  case $_am_header in
974    $_am_arg | $_am_arg:* )
975      break ;;
976    * )
977      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
978  esac
979done
980echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
981
982# Copyright (C) 2001-2020 Free Software Foundation, Inc.
983#
984# This file is free software; the Free Software Foundation
985# gives unlimited permission to copy and/or distribute it,
986# with or without modifications, as long as this notice is preserved.
987
988# AM_PROG_INSTALL_SH
989# ------------------
990# Define $install_sh.
991AC_DEFUN([AM_PROG_INSTALL_SH],
992[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
993if test x"${install_sh+set}" != xset; then
994  case $am_aux_dir in
995  *\ * | *\	*)
996    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
997  *)
998    install_sh="\${SHELL} $am_aux_dir/install-sh"
999  esac
1000fi
1001AC_SUBST([install_sh])])
1002
1003# Copyright (C) 2003-2020 Free Software Foundation, Inc.
1004#
1005# This file is free software; the Free Software Foundation
1006# gives unlimited permission to copy and/or distribute it,
1007# with or without modifications, as long as this notice is preserved.
1008
1009# Check whether the underlying file-system supports filenames
1010# with a leading dot.  For instance MS-DOS doesn't.
1011AC_DEFUN([AM_SET_LEADING_DOT],
1012[rm -rf .tst 2>/dev/null
1013mkdir .tst 2>/dev/null
1014if test -d .tst; then
1015  am__leading_dot=.
1016else
1017  am__leading_dot=_
1018fi
1019rmdir .tst 2>/dev/null
1020AC_SUBST([am__leading_dot])])
1021
1022# Check to see how 'make' treats includes.	            -*- Autoconf -*-
1023
1024# Copyright (C) 2001-2020 Free Software Foundation, Inc.
1025#
1026# This file is free software; the Free Software Foundation
1027# gives unlimited permission to copy and/or distribute it,
1028# with or without modifications, as long as this notice is preserved.
1029
1030# AM_MAKE_INCLUDE()
1031# -----------------
1032# Check whether make has an 'include' directive that can support all
1033# the idioms we need for our automatic dependency tracking code.
1034AC_DEFUN([AM_MAKE_INCLUDE],
1035[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
1036cat > confinc.mk << 'END'
1037am__doit:
1038	@echo this is the am__doit target >confinc.out
1039.PHONY: am__doit
1040END
1041am__include="#"
1042am__quote=
1043# BSD make does it like this.
1044echo '.include "confinc.mk" # ignored' > confmf.BSD
1045# Other make implementations (GNU, Solaris 10, AIX) do it like this.
1046echo 'include confinc.mk # ignored' > confmf.GNU
1047_am_result=no
1048for s in GNU BSD; do
1049  AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
1050  AS_CASE([$?:`cat confinc.out 2>/dev/null`],
1051      ['0:this is the am__doit target'],
1052      [AS_CASE([$s],
1053          [BSD], [am__include='.include' am__quote='"'],
1054          [am__include='include' am__quote=''])])
1055  if test "$am__include" != "#"; then
1056    _am_result="yes ($s style)"
1057    break
1058  fi
1059done
1060rm -f confinc.* confmf.*
1061AC_MSG_RESULT([${_am_result}])
1062AC_SUBST([am__include])])
1063AC_SUBST([am__quote])])
1064
1065# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
1066
1067# Copyright (C) 1997-2020 Free Software Foundation, Inc.
1068#
1069# This file is free software; the Free Software Foundation
1070# gives unlimited permission to copy and/or distribute it,
1071# with or without modifications, as long as this notice is preserved.
1072
1073# AM_MISSING_PROG(NAME, PROGRAM)
1074# ------------------------------
1075AC_DEFUN([AM_MISSING_PROG],
1076[AC_REQUIRE([AM_MISSING_HAS_RUN])
1077$1=${$1-"${am_missing_run}$2"}
1078AC_SUBST($1)])
1079
1080# AM_MISSING_HAS_RUN
1081# ------------------
1082# Define MISSING if not defined so far and test if it is modern enough.
1083# If it is, set am_missing_run to use it, otherwise, to nothing.
1084AC_DEFUN([AM_MISSING_HAS_RUN],
1085[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1086AC_REQUIRE_AUX_FILE([missing])dnl
1087if test x"${MISSING+set}" != xset; then
1088  MISSING="\${SHELL} '$am_aux_dir/missing'"
1089fi
1090# Use eval to expand $SHELL
1091if eval "$MISSING --is-lightweight"; then
1092  am_missing_run="$MISSING "
1093else
1094  am_missing_run=
1095  AC_MSG_WARN(['missing' script is too old or missing])
1096fi
1097])
1098
1099# Helper functions for option handling.                     -*- Autoconf -*-
1100
1101# Copyright (C) 2001-2020 Free Software Foundation, Inc.
1102#
1103# This file is free software; the Free Software Foundation
1104# gives unlimited permission to copy and/or distribute it,
1105# with or without modifications, as long as this notice is preserved.
1106
1107# _AM_MANGLE_OPTION(NAME)
1108# -----------------------
1109AC_DEFUN([_AM_MANGLE_OPTION],
1110[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1111
1112# _AM_SET_OPTION(NAME)
1113# --------------------
1114# Set option NAME.  Presently that only means defining a flag for this option.
1115AC_DEFUN([_AM_SET_OPTION],
1116[m4_define(_AM_MANGLE_OPTION([$1]), [1])])
1117
1118# _AM_SET_OPTIONS(OPTIONS)
1119# ------------------------
1120# OPTIONS is a space-separated list of Automake options.
1121AC_DEFUN([_AM_SET_OPTIONS],
1122[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1123
1124# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
1125# -------------------------------------------
1126# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
1127AC_DEFUN([_AM_IF_OPTION],
1128[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1129
1130# Copyright (C) 1999-2020 Free Software Foundation, Inc.
1131#
1132# This file is free software; the Free Software Foundation
1133# gives unlimited permission to copy and/or distribute it,
1134# with or without modifications, as long as this notice is preserved.
1135
1136# _AM_PROG_CC_C_O
1137# ---------------
1138# Like AC_PROG_CC_C_O, but changed for automake.  We rewrite AC_PROG_CC
1139# to automatically call this.
1140AC_DEFUN([_AM_PROG_CC_C_O],
1141[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1142AC_REQUIRE_AUX_FILE([compile])dnl
1143AC_LANG_PUSH([C])dnl
1144AC_CACHE_CHECK(
1145  [whether $CC understands -c and -o together],
1146  [am_cv_prog_cc_c_o],
1147  [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
1148  # Make sure it works both with $CC and with simple cc.
1149  # Following AC_PROG_CC_C_O, we do the test twice because some
1150  # compilers refuse to overwrite an existing .o file with -o,
1151  # though they will create one.
1152  am_cv_prog_cc_c_o=yes
1153  for am_i in 1 2; do
1154    if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
1155         && test -f conftest2.$ac_objext; then
1156      : OK
1157    else
1158      am_cv_prog_cc_c_o=no
1159      break
1160    fi
1161  done
1162  rm -f core conftest*
1163  unset am_i])
1164if test "$am_cv_prog_cc_c_o" != yes; then
1165   # Losing compiler, so override with the script.
1166   # FIXME: It is wrong to rewrite CC.
1167   # But if we don't then we get into trouble of one sort or another.
1168   # A longer-term fix would be to have automake use am__CC in this case,
1169   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
1170   CC="$am_aux_dir/compile $CC"
1171fi
1172AC_LANG_POP([C])])
1173
1174# For backward compatibility.
1175AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
1176
1177# Copyright (C) 2001-2020 Free Software Foundation, Inc.
1178#
1179# This file is free software; the Free Software Foundation
1180# gives unlimited permission to copy and/or distribute it,
1181# with or without modifications, as long as this notice is preserved.
1182
1183# AM_RUN_LOG(COMMAND)
1184# -------------------
1185# Run COMMAND, save the exit status in ac_status, and log it.
1186# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
1187AC_DEFUN([AM_RUN_LOG],
1188[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
1189   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
1190   ac_status=$?
1191   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1192   (exit $ac_status); }])
1193
1194# Check to make sure that the build environment is sane.    -*- Autoconf -*-
1195
1196# Copyright (C) 1996-2020 Free Software Foundation, Inc.
1197#
1198# This file is free software; the Free Software Foundation
1199# gives unlimited permission to copy and/or distribute it,
1200# with or without modifications, as long as this notice is preserved.
1201
1202# AM_SANITY_CHECK
1203# ---------------
1204AC_DEFUN([AM_SANITY_CHECK],
1205[AC_MSG_CHECKING([whether build environment is sane])
1206# Reject unsafe characters in $srcdir or the absolute working directory
1207# name.  Accept space and tab only in the latter.
1208am_lf='
1209'
1210case `pwd` in
1211  *[[\\\"\#\$\&\'\`$am_lf]]*)
1212    AC_MSG_ERROR([unsafe absolute working directory name]);;
1213esac
1214case $srcdir in
1215  *[[\\\"\#\$\&\'\`$am_lf\ \	]]*)
1216    AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
1217esac
1218
1219# Do 'set' in a subshell so we don't clobber the current shell's
1220# arguments.  Must try -L first in case configure is actually a
1221# symlink; some systems play weird games with the mod time of symlinks
1222# (eg FreeBSD returns the mod time of the symlink's containing
1223# directory).
1224if (
1225   am_has_slept=no
1226   for am_try in 1 2; do
1227     echo "timestamp, slept: $am_has_slept" > conftest.file
1228     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
1229     if test "$[*]" = "X"; then
1230	# -L didn't work.
1231	set X `ls -t "$srcdir/configure" conftest.file`
1232     fi
1233     if test "$[*]" != "X $srcdir/configure conftest.file" \
1234	&& test "$[*]" != "X conftest.file $srcdir/configure"; then
1235
1236	# If neither matched, then we have a broken ls.  This can happen
1237	# if, for instance, CONFIG_SHELL is bash and it inherits a
1238	# broken ls alias from the environment.  This has actually
1239	# happened.  Such a system could not be considered "sane".
1240	AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
1241  alias in your environment])
1242     fi
1243     if test "$[2]" = conftest.file || test $am_try -eq 2; then
1244       break
1245     fi
1246     # Just in case.
1247     sleep 1
1248     am_has_slept=yes
1249   done
1250   test "$[2]" = conftest.file
1251   )
1252then
1253   # Ok.
1254   :
1255else
1256   AC_MSG_ERROR([newly created file is older than distributed files!
1257Check your system clock])
1258fi
1259AC_MSG_RESULT([yes])
1260# If we didn't sleep, we still need to ensure time stamps of config.status and
1261# generated files are strictly newer.
1262am_sleep_pid=
1263if grep 'slept: no' conftest.file >/dev/null 2>&1; then
1264  ( sleep 1 ) &
1265  am_sleep_pid=$!
1266fi
1267AC_CONFIG_COMMANDS_PRE(
1268  [AC_MSG_CHECKING([that generated files are newer than configure])
1269   if test -n "$am_sleep_pid"; then
1270     # Hide warnings about reused PIDs.
1271     wait $am_sleep_pid 2>/dev/null
1272   fi
1273   AC_MSG_RESULT([done])])
1274rm -f conftest.file
1275])
1276
1277# Copyright (C) 2009-2020 Free Software Foundation, Inc.
1278#
1279# This file is free software; the Free Software Foundation
1280# gives unlimited permission to copy and/or distribute it,
1281# with or without modifications, as long as this notice is preserved.
1282
1283# AM_SILENT_RULES([DEFAULT])
1284# --------------------------
1285# Enable less verbose build rules; with the default set to DEFAULT
1286# ("yes" being less verbose, "no" or empty being verbose).
1287AC_DEFUN([AM_SILENT_RULES],
1288[AC_ARG_ENABLE([silent-rules], [dnl
1289AS_HELP_STRING(
1290  [--enable-silent-rules],
1291  [less verbose build output (undo: "make V=1")])
1292AS_HELP_STRING(
1293  [--disable-silent-rules],
1294  [verbose build output (undo: "make V=0")])dnl
1295])
1296case $enable_silent_rules in @%:@ (((
1297  yes) AM_DEFAULT_VERBOSITY=0;;
1298   no) AM_DEFAULT_VERBOSITY=1;;
1299    *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1300esac
1301dnl
1302dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
1303dnl do not support nested variable expansions.
1304dnl See automake bug#9928 and bug#10237.
1305am_make=${MAKE-make}
1306AC_CACHE_CHECK([whether $am_make supports nested variables],
1307   [am_cv_make_support_nested_variables],
1308   [if AS_ECHO([['TRUE=$(BAR$(V))
1309BAR0=false
1310BAR1=true
1311V=1
1312am__doit:
1313	@$(TRUE)
1314.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
1315  am_cv_make_support_nested_variables=yes
1316else
1317  am_cv_make_support_nested_variables=no
1318fi])
1319if test $am_cv_make_support_nested_variables = yes; then
1320  dnl Using '$V' instead of '$(V)' breaks IRIX make.
1321  AM_V='$(V)'
1322  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1323else
1324  AM_V=$AM_DEFAULT_VERBOSITY
1325  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1326fi
1327AC_SUBST([AM_V])dnl
1328AM_SUBST_NOTMAKE([AM_V])dnl
1329AC_SUBST([AM_DEFAULT_V])dnl
1330AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
1331AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1332AM_BACKSLASH='\'
1333AC_SUBST([AM_BACKSLASH])dnl
1334_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1335])
1336
1337# Copyright (C) 2001-2020 Free Software Foundation, Inc.
1338#
1339# This file is free software; the Free Software Foundation
1340# gives unlimited permission to copy and/or distribute it,
1341# with or without modifications, as long as this notice is preserved.
1342
1343# AM_PROG_INSTALL_STRIP
1344# ---------------------
1345# One issue with vendor 'install' (even GNU) is that you can't
1346# specify the program used to strip binaries.  This is especially
1347# annoying in cross-compiling environments, where the build's strip
1348# is unlikely to handle the host's binaries.
1349# Fortunately install-sh will honor a STRIPPROG variable, so we
1350# always use install-sh in "make install-strip", and initialize
1351# STRIPPROG with the value of the STRIP variable (set by the user).
1352AC_DEFUN([AM_PROG_INSTALL_STRIP],
1353[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1354# Installed binaries are usually stripped using 'strip' when the user
1355# run "make install-strip".  However 'strip' might not be the right
1356# tool to use in cross-compilation environments, therefore Automake
1357# will honor the 'STRIP' environment variable to overrule this program.
1358dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
1359if test "$cross_compiling" != no; then
1360  AC_CHECK_TOOL([STRIP], [strip], :)
1361fi
1362INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1363AC_SUBST([INSTALL_STRIP_PROGRAM])])
1364
1365# Copyright (C) 2006-2020 Free Software Foundation, Inc.
1366#
1367# This file is free software; the Free Software Foundation
1368# gives unlimited permission to copy and/or distribute it,
1369# with or without modifications, as long as this notice is preserved.
1370
1371# _AM_SUBST_NOTMAKE(VARIABLE)
1372# ---------------------------
1373# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1374# This macro is traced by Automake.
1375AC_DEFUN([_AM_SUBST_NOTMAKE])
1376
1377# AM_SUBST_NOTMAKE(VARIABLE)
1378# --------------------------
1379# Public sister of _AM_SUBST_NOTMAKE.
1380AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
1381
1382# Check how to create a tarball.                            -*- Autoconf -*-
1383
1384# Copyright (C) 2004-2020 Free Software Foundation, Inc.
1385#
1386# This file is free software; the Free Software Foundation
1387# gives unlimited permission to copy and/or distribute it,
1388# with or without modifications, as long as this notice is preserved.
1389
1390# _AM_PROG_TAR(FORMAT)
1391# --------------------
1392# Check how to create a tarball in format FORMAT.
1393# FORMAT should be one of 'v7', 'ustar', or 'pax'.
1394#
1395# Substitute a variable $(am__tar) that is a command
1396# writing to stdout a FORMAT-tarball containing the directory
1397# $tardir.
1398#     tardir=directory && $(am__tar) > result.tar
1399#
1400# Substitute a variable $(am__untar) that extract such
1401# a tarball read from stdin.
1402#     $(am__untar) < result.tar
1403#
1404AC_DEFUN([_AM_PROG_TAR],
1405[# Always define AMTAR for backward compatibility.  Yes, it's still used
1406# in the wild :-(  We should find a proper way to deprecate it ...
1407AC_SUBST([AMTAR], ['$${TAR-tar}'])
1408
1409# We'll loop over all known methods to create a tar archive until one works.
1410_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1411
1412m4_if([$1], [v7],
1413  [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1414
1415  [m4_case([$1],
1416    [ustar],
1417     [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
1418      # There is notably a 21 bits limit for the UID and the GID.  In fact,
1419      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
1420      # and bug#13588).
1421      am_max_uid=2097151 # 2^21 - 1
1422      am_max_gid=$am_max_uid
1423      # The $UID and $GID variables are not portable, so we need to resort
1424      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
1425      # below are definitely unexpected, so allow the users to see them
1426      # (that is, avoid stderr redirection).
1427      am_uid=`id -u || echo unknown`
1428      am_gid=`id -g || echo unknown`
1429      AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
1430      if test $am_uid -le $am_max_uid; then
1431         AC_MSG_RESULT([yes])
1432      else
1433         AC_MSG_RESULT([no])
1434         _am_tools=none
1435      fi
1436      AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
1437      if test $am_gid -le $am_max_gid; then
1438         AC_MSG_RESULT([yes])
1439      else
1440        AC_MSG_RESULT([no])
1441        _am_tools=none
1442      fi],
1443
1444  [pax],
1445    [],
1446
1447  [m4_fatal([Unknown tar format])])
1448
1449  AC_MSG_CHECKING([how to create a $1 tar archive])
1450
1451  # Go ahead even if we have the value already cached.  We do so because we
1452  # need to set the values for the 'am__tar' and 'am__untar' variables.
1453  _am_tools=${am_cv_prog_tar_$1-$_am_tools}
1454
1455  for _am_tool in $_am_tools; do
1456    case $_am_tool in
1457    gnutar)
1458      for _am_tar in tar gnutar gtar; do
1459        AM_RUN_LOG([$_am_tar --version]) && break
1460      done
1461      am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1462      am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1463      am__untar="$_am_tar -xf -"
1464      ;;
1465    plaintar)
1466      # Must skip GNU tar: if it does not support --format= it doesn't create
1467      # ustar tarball either.
1468      (tar --version) >/dev/null 2>&1 && continue
1469      am__tar='tar chf - "$$tardir"'
1470      am__tar_='tar chf - "$tardir"'
1471      am__untar='tar xf -'
1472      ;;
1473    pax)
1474      am__tar='pax -L -x $1 -w "$$tardir"'
1475      am__tar_='pax -L -x $1 -w "$tardir"'
1476      am__untar='pax -r'
1477      ;;
1478    cpio)
1479      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1480      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1481      am__untar='cpio -i -H $1 -d'
1482      ;;
1483    none)
1484      am__tar=false
1485      am__tar_=false
1486      am__untar=false
1487      ;;
1488    esac
1489
1490    # If the value was cached, stop now.  We just wanted to have am__tar
1491    # and am__untar set.
1492    test -n "${am_cv_prog_tar_$1}" && break
1493
1494    # tar/untar a dummy directory, and stop if the command works.
1495    rm -rf conftest.dir
1496    mkdir conftest.dir
1497    echo GrepMe > conftest.dir/file
1498    AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1499    rm -rf conftest.dir
1500    if test -s conftest.tar; then
1501      AM_RUN_LOG([$am__untar <conftest.tar])
1502      AM_RUN_LOG([cat conftest.dir/file])
1503      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1504    fi
1505  done
1506  rm -rf conftest.dir
1507
1508  AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1509  AC_MSG_RESULT([$am_cv_prog_tar_$1])])
1510
1511AC_SUBST([am__tar])
1512AC_SUBST([am__untar])
1513]) # _AM_PROG_TAR
1514
1515m4_include([ax_cxx_compile_stdcxx.m4])
1516