aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2018-10-31 17:03:16 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2018-10-31 17:03:16 +0000
commit22e052725189a472e4e86ebb6595278a49f4bcdd (patch)
tree7bd47b7e2436f93e7dd27cdec37d6631a998d6eb /libstdc++-v3
parentd8b1c3f075a59fec5316935240929037ea0c69c7 (diff)
downloadgcc-22e052725189a472e4e86ebb6595278a49f4bcdd.zip
gcc-22e052725189a472e4e86ebb6595278a49f4bcdd.tar.gz
gcc-22e052725189a472e4e86ebb6595278a49f4bcdd.tar.bz2
Update GCC to autoconf 2.69, automake 1.15.1 (PR bootstrap/82856).
This patch updates GCC to use autoconf 2.69 and automake 1.15.1. (That's not the latest automake version, but it's the one used by binutils-gdb, with which consistency is desirable, and in any case seems a useful incremental update that should make a future update to 1.16.1 easier.) The changes are generally similar to the binutils-gdb ones, and are copied from there where shared files and directories are involved (there are some further changes to such shared directories, however, which I'd expect to apply to binutils-gdb once this patch is in GCC). Largely, obsolete AC_PREREQ calls are removed, while many AC_LANG_SOURCE calls are added to avoid warnings from aclocal and autoconf. Multilib support is no longer included in core automake, meaning that multilib.am needs copying from automake's contrib directory into the GCC source tree. Autoconf 2.69 has Go support, so local copies of that support are removed. I hope the D support will soon be submitted to upstream autoconf so the local copy of that can be removed in a future update. Changes to how automake generates runtest calls mean quotes are removed from RUNTEST definitions in five lib*/testsuite/Makefile.am files (libatomic, libgomp, libitm, libphobos, libvtv; some others have RUNTEST definitions without quotes, which are still OK); libgo and libphobos also get -Wno-override added to AM_INIT_AUTOMAKE so those overrides of RUNTEST do not generate automake warnings. Note that the regeneration did not include regeneration of fixincludes/config.h.in (attempting such regeneration resulted in all the USED_FOR_TARGET conditionals disappearing; and I don't see anything in the fixincludes/ directory that would result in such conditionals being generated, unlike in the gcc/ directory). Also note that libvtv/testsuite/other-tests/Makefile.in was not regenerated; that directory is not listed as a subdirectory for which Makefile.in gets regenerated by calling "automake" in libvtv/, so I'm not sure how it's meant to be regenerated. While I mostly fixed warnings should running aclocal / automake / autoconf, there were various such warnings from automake in the libgfortran, libgo, libgomp, liboffloadmic, libsanitizer, libphobos directories that I did not fix, preferring to leave those to the relevant subsystem maintainers. Specifically, most of those warnings were of the following form (example from libgfortran): Makefile.am:48: warning: source file 'caf/single.c' is in a subdirectory, Makefile.am:48: but option 'subdir-objects' is disabled automake: warning: possible forward-incompatibility. automake: At least a source file is in a subdirectory, but the 'subdir-objects' automake: automake option hasn't been enabled. For now, the corresponding output automake: object file(s) will be placed in the top-level directory. However, automake: this behaviour will change in future Automake versions: they will automake: unconditionally cause object files to be placed in the same subdirectory automake: of the corresponding sources. automake: You are advised to start using 'subdir-objects' option throughout your automake: project, to avoid future incompatibilities. I think it's best for the relevant maintainers to add subdir-objects and do any other associated Makefile.am changes needed. In some cases the paths in the warnings involved ../; I don't know if that adds any extra complications to the use of subdir-objects. I've tested this with native, cross and Canadian cross builds. The risk of any OS-specific issues should I hope be rather lower than if a libtool upgrade were included (we *should* do such an upgrade at some point, but it's more complicated - it involves identifying all our local libtool changes to see if any aren't included in the upstream version we update to, and reverting an upstream libtool patch that's inappropriate for use in GCC); I think it would be better to get this update into GCC so that people can test in different configurations and we can fix any issues found, rather than to try to get more and more testing done before it goes in. top level: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * multilib.am: New file. From automake. Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * libtool.m4: Use AC_LANG_SOURCE. * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE. * ar-lib: New file. * test-driver: New file. * configure: Re-generate. config: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * math.m4, tls.m4: Use AC_LANG_SOURCE. Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * override.m4 (_GCC_AUTOCONF_VERSION): Bump from 2.64 to 2.69. fixincludes: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * aclocal.m4, configure: Regenerate. gcc: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. Use single line for second argument of AC_DEFINE_UNQUOTED. * doc/install.texi (Tools/packages necessary for modifying GCC): Update to autoconf 2.69 and automake 1.15.1. * aclocal.m4, config.in, configure: Regenerate. gnattools: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * configure: Regenerate. gotools: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * config/go.m4: Remove file. * Makefile.am (ACLOCAL_AMFLAGS): Do not use -I ./config. * configure.ac: Remove AC_PREREQ. Do not include config/go.m4. * Makefile.in, aclocal.m4, configure: Regenerate. intl: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * configure.ac: Add AC_USE_SYSTEM_EXTENSIONS, remove AC_PREREQ. * configure: Re-generate. * config.h.in: Re-generate. * aclocal.m4: Re-generate. libada: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * configure: Regenerate. libatomic: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * acinclude.m4: Use AC_LANG_SOURCE. * configure.ac: Remove AC_PREREQ. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. libbacktrace: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * Makefile.in, aclocal.m4, config.h.in, configure: Regenerate. libcc1: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure: Regenerate. libcpp: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * aclocal.m4, config.in, configure: Regenerate. libdecnumber: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * configure.ac: Remove AC_PREREQ. * configure: Re-generate. * aclocal.m4. libffi: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. (AUTOMAKE_OPTIONS): Add info-in-builddir. (CLEANFILES): Remove doc/libffi.info. * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure, fficonfig.h.in, include/Makefile.in, man/Makefile.in, testsuite/Makefile.in: Regenerate. libgcc: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * configure: Regenerate. libgfortran: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, config.h.in, configure: Regenerate. libgo [logically part of this change but omitted from the commit]: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * config/go.m4: Remove file. * config/libtool.m4: Use AC_LANG_SOURCE. * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. Use -Wno-override in AM_INIT_AUTOMAKE call. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. libgomp: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am (AUTOMAKE_OPTIONS): Add info-in-builddir. (CLEANFILES): Remove libgomp.info. * configure.ac: Remove AC_PREREQ. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. libhsail-rt: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure: Regenerate. libiberty: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * configure.ac: Remove AC_PREREQ. * configure: Re-generate. * config.in: Re-generate. libitm: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. (AUTOMAKE_OPTIONS): Add info-in-builddir. (CLEANFILES): Remove libitm.info. * configure.ac: Remove AC_PREREQ. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. libobjc: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * aclocal.m4, config.h.in, configure: Regenerate. liboffloadmic: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. * plugin/Makefile.am: Include multilib.am. * plugin/configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure, plugin/Makefile.in, plugin/aclocal.m4, plugin/configure: Regenerate. libphobos: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. Use -Wno-override in AM_INIT_AUTOMAKE call. * m4/autoconf.m4: Add extra argument to AC_LANG_DEFINE call. * m4/druntime/os.m4: Use AC_LANG_SOURCE. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, libdruntime/Makefile.in, src/Makefile.in, testsuite/Makefile.in: Regenerate. libquadmath: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. (AUTOMAKE_OPTIONS): Remove 1.8. Add info-in-builddir. (all-local): Define outside conditional code. (CLEANFILES): Remove libquadmath.info. * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, config.h.in, configure: Regenerate. libsanitizer: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * Makefile.in, aclocal.m4, asan/Makefile.in, configure, interception/Makefile.in, libbacktrace/Makefile.in, lsan/Makefile.in, sanitizer_common/Makefile.in, tsan/Makefile.in, ubsan/Makefile.in: Regenerate. libssp: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. (AUTOMAKE_OPTIONS): Remove 1.9.5. * configure.ac: Remove AC_PREREQ. Quote argument to AC_RUN_IFELSE. * Makefile.in, aclocal.m4, configure: Regenerate. libstdc++-v3: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure, doc/Makefile.in, include/Makefile.in, libsupc++/Makefile.in, po/Makefile.in, python/Makefile.in, src/Makefile.in, src/c++11/Makefile.in, src/c++17/Makefile.in, src/c++98/Makefile.in, src/filesystem/Makefile.in, testsuite/Makefile.in: Regenerate. libvtv: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. lto-plugin: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * Makefile.in, aclocal.m4, config.h.in, configure: Regenerate. zlib: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * configure.ac: Modernize AC_INIT call, remove AC_PREREQ. * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add foreign. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate. From-SVN: r265695
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog11
-rw-r--r--libstdc++-v3/Makefile.am2
-rw-r--r--libstdc++-v3/Makefile.in388
-rw-r--r--libstdc++-v3/aclocal.m4640
-rwxr-xr-xlibstdc++-v3/configure5602
-rw-r--r--libstdc++-v3/configure.ac1
-rw-r--r--libstdc++-v3/doc/Makefile.in122
-rw-r--r--libstdc++-v3/include/Makefile.in123
-rw-r--r--libstdc++-v3/libsupc++/Makefile.in258
-rw-r--r--libstdc++-v3/po/Makefile.in124
-rw-r--r--libstdc++-v3/python/Makefile.in125
-rw-r--r--libstdc++-v3/src/Makefile.in307
-rw-r--r--libstdc++-v3/src/c++11/Makefile.in225
-rw-r--r--libstdc++-v3/src/c++17/Makefile.in225
-rw-r--r--libstdc++-v3/src/c++98/Makefile.in225
-rw-r--r--libstdc++-v3/src/filesystem/Makefile.in224
-rw-r--r--libstdc++-v3/testsuite/Makefile.in122
17 files changed, 4963 insertions, 3761 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 9fb18de..b7126f8 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,14 @@
+2018-10-31 Joseph Myers <joseph@codesourcery.com>
+
+ PR bootstrap/82856
+ * Makefile.am: Include multilib.am.
+ * configure.ac: Remove AC_PREREQ.
+ * Makefile.in, aclocal.m4, configure, doc/Makefile.in,
+ include/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
+ python/Makefile.in, src/Makefile.in, src/c++11/Makefile.in,
+ src/c++17/Makefile.in, src/c++98/Makefile.in,
+ src/filesystem/Makefile.in, testsuite/Makefile.in: Regenerate.
+
2018-10-31 Jonathan Wakely <jwakely@redhat.com>
* testsuite/20_util/pair/87822.cc: Test deeper nesting.
diff --git a/libstdc++-v3/Makefile.am b/libstdc++-v3/Makefile.am
index 1565bd6..6f3f208 100644
--- a/libstdc++-v3/Makefile.am
+++ b/libstdc++-v3/Makefile.am
@@ -172,3 +172,5 @@ AM_MAKEFLAGS = \
# Subdir rules rely on $(FLAGS_TO_PASS)
FLAGS_TO_PASS = $(AM_MAKEFLAGS)
+
+include $(top_srcdir)/../multilib.am
diff --git a/libstdc++-v3/Makefile.in b/libstdc++-v3/Makefile.in
index f24f5d8..7fe9efb 100644
--- a/libstdc++-v3/Makefile.in
+++ b/libstdc++-v3/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -15,23 +14,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
esac; \
- test $$am__dry = yes; \
- }
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -51,13 +88,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am README ChangeLog \
- $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
- $(top_srcdir)/configure $(am__configure_deps) \
- $(srcdir)/config.h.in $(srcdir)/../mkinstalldirs \
- $(top_srcdir)/scripts/testsuite_flags.in \
- $(top_srcdir)/scripts/extract_symvers.in \
- $(top_srcdir)/doc/xsl/customization.xsl.in
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -84,28 +114,37 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
+ $(am__configure_deps)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES = scripts/testsuite_flags scripts/extract_symvers \
doc/xsl/customization.xsl
CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
depcomp =
am__depfiles_maybe =
SOURCES =
-MULTISRCTOP =
-MULTIBUILDTOP =
-MULTIDIRS =
-MULTISUBDIR =
-MULTIDO = true
-MULTICLEAN = true
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
- html-recursive info-recursive install-data-recursive \
- install-dvi-recursive install-exec-recursive \
- install-html-recursive install-info-recursive \
- install-pdf-recursive install-ps-recursive install-recursive \
- installcheck-recursive installdirs-recursive pdf-recursive \
- ps-recursive uninstall-recursive
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
+ ctags-recursive dvi-recursive html-recursive info-recursive \
+ install-data-recursive install-dvi-recursive \
+ install-exec-recursive install-html-recursive \
+ install-info-recursive install-pdf-recursive \
+ install-ps-recursive install-recursive installcheck-recursive \
+ installdirs-recursive pdf-recursive ps-recursive \
+ tags-recursive uninstall-recursive
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
@@ -113,16 +152,40 @@ am__can_run_installinfo = \
esac
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
- $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS
+am__recursive_targets = \
+ $(RECURSIVE_TARGETS) \
+ $(RECURSIVE_CLEAN_TARGETS) \
+ $(am__extra_recursive_targets)
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
+ cscope
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
+ $(LISP)config.h.in
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
+CSCOPE = cscope
DIST_SUBDIRS = include libsupc++ src doc po testsuite python
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -413,13 +476,19 @@ AM_MAKEFLAGS = \
# Subdir rules rely on $(FLAGS_TO_PASS)
FLAGS_TO_PASS = $(AM_MAKEFLAGS)
+MULTISRCTOP =
+MULTIBUILDTOP =
+MULTIDIRS =
+MULTISUBDIR =
+MULTIDO = true
+MULTICLEAN = true
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
.SUFFIXES:
am--refresh: Makefile
@:
-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/fragment.am $(am__configure_deps)
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/fragment.am $(top_srcdir)/../multilib.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
@@ -432,7 +501,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -442,7 +510,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(top_srcdir)/../multilib.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
@@ -454,8 +522,8 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
$(am__aclocal_m4_deps):
config.h: stamp-h1
- @if test ! -f $@; then rm -f stamp-h1; else :; fi
- @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
+ @test -f $@ || rm -f stamp-h1
+ @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
@rm -f stamp-h1
@@ -483,40 +551,26 @@ clean-libtool:
distclean-libtool:
-rm -f libtool config.lt
-# GNU Make needs to see an explicit $(MAKE) variable in the command it
-# runs to enable its job server during parallel builds. Hence the
-# comments below.
-all-multi:
- $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
-install-multi:
- $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
-
-mostlyclean-multi:
- $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
-clean-multi:
- $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
-distclean-multi:
- $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
-maintainer-clean-multi:
- $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)
-
# This directory's subdirectories are mostly independent; you can cd
-# into them and run `make' without going through this Makefile.
-# To change the values of `make' variables: instead of editing Makefiles,
-# (1) if the variable is set in `config.status', edit `config.status'
-# (which will cause the Makefiles to be regenerated when you run `make');
-# (2) otherwise, pass the desired values on the `make' command line.
-$(RECURSIVE_TARGETS):
- @fail= failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
+# into them and run 'make' without going through this Makefile.
+# To change the values of 'make' variables: instead of editing Makefiles,
+# (1) if the variable is set in 'config.status', edit 'config.status'
+# (which will cause the Makefiles to be regenerated when you run 'make');
+# (2) otherwise, pass the desired values on the 'make' command line.
+$(am__recursive_targets):
+ @fail=; \
+ if $(am__make_keepgoing); then \
+ failcom='fail=yes'; \
+ else \
+ failcom='exit 1'; \
+ fi; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
+ case "$@" in \
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+ *) list='$(SUBDIRS)' ;; \
+ esac; \
+ for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
@@ -531,63 +585,43 @@ $(RECURSIVE_TARGETS):
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
-$(RECURSIVE_CLEAN_TARGETS):
- @fail= failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- case "$@" in \
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
- *) list='$(SUBDIRS)' ;; \
- esac; \
- rev=''; for subdir in $$list; do \
- if test "$$subdir" = "."; then :; else \
- rev="$$subdir $$rev"; \
+ID: $(am__tagged_files)
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
+tags: tags-recursive
+
+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ set x; \
+ here=`pwd`; \
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
+ include_option=--etags-include; \
+ empty_fix=.; \
+ else \
+ include_option=--include; \
+ empty_fix=; \
+ fi; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ test ! -f $$subdir/TAGS || \
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
fi; \
done; \
- rev="$$rev ."; \
- target=`echo $@ | sed s/-recursive//`; \
- for subdir in $$rev; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- local_target="$$target-am"; \
+ $(am__define_uniq_tagged_files); \
+ shift; \
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ test -n "$$unique" || unique=$$empty_fix; \
+ if test $$# -gt 0; then \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ "$$@" $$unique; \
else \
- local_target="$$target"; \
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+ $$unique; \
fi; \
- ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done && test -z "$$fail"
-tags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- done
-ctags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- done
-
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
- mkid -fID $$unique
-tags: TAGS
-ctags: CTAGS
-CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ fi
+ctags: ctags-recursive
+
+CTAGS: ctags
+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ $(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
@@ -596,12 +630,34 @@ GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
+cscope: cscope.files
+ test ! -s cscope.files \
+ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
+clean-cscope:
+ -rm -f cscope.files
+cscope.files: clean-cscope cscopelist
+cscopelist: cscopelist-recursive
+
+cscopelist-am: $(am__tagged_files)
+ list='$(am__tagged_files)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+ -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
check-am: all-am
check: check-recursive
-all-am: Makefile all-multi config.h
+all-am: Makefile config.h all-local
installdirs: installdirs-recursive
installdirs-am:
install: install-recursive
@@ -634,15 +690,15 @@ distclean-generic:
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-clean: clean-multi clean-recursive
+clean: clean-recursive
-clean-am: clean-generic clean-libtool mostlyclean-am
+clean-am: clean-generic clean-libtool clean-local mostlyclean-am
-distclean: distclean-multi distclean-recursive
+distclean: distclean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -f Makefile
distclean-am: clean-am distclean-generic distclean-hdr \
- distclean-libtool distclean-tags
+ distclean-libtool distclean-local distclean-tags
dvi-am:
@@ -654,7 +710,7 @@ install-data-am:
install-dvi-am:
-install-exec-am: install-multi
+install-exec-am: install-exec-local
install-html-am:
@@ -666,15 +722,17 @@ install-ps-am:
installcheck-am:
-maintainer-clean: maintainer-clean-multi maintainer-clean-recursive
+maintainer-clean: maintainer-clean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(top_srcdir)/autom4te.cache
-rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
+maintainer-clean-am: distclean-am maintainer-clean-generic \
+ maintainer-clean-local
-mostlyclean: mostlyclean-multi mostlyclean-recursive
+mostlyclean: mostlyclean-recursive
-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool \
+ mostlyclean-local
pdf-am:
@@ -682,25 +740,24 @@ ps-am:
uninstall-am:
-.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all all-multi \
- clean-multi ctags-recursive distclean-multi install-am \
- install-multi install-strip maintainer-clean-multi \
- mostlyclean-multi tags-recursive
+.MAKE: $(am__recursive_targets) all install-am install-strip
-.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
- all all-am all-multi am--refresh check check-am clean \
- clean-generic clean-libtool clean-multi ctags ctags-recursive \
+.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \
+ am--refresh check check-am clean clean-cscope clean-generic \
+ clean-libtool clean-local cscope cscopelist-am ctags ctags-am \
distclean distclean-generic distclean-hdr distclean-libtool \
- distclean-multi distclean-tags dvi dvi-am html html-am info \
+ distclean-local distclean-tags dvi dvi-am html html-am info \
info-am install install-am install-data install-data-am \
install-dvi install-dvi-am install-exec install-exec-am \
- install-html install-html-am install-info install-info-am \
- install-man install-multi install-pdf install-pdf-am \
+ install-exec-local install-html install-html-am install-info \
+ install-info-am install-man install-pdf install-pdf-am \
install-ps install-ps-am install-strip installcheck \
installcheck-am installdirs installdirs-am maintainer-clean \
- maintainer-clean-generic maintainer-clean-multi mostlyclean \
- mostlyclean-generic mostlyclean-libtool mostlyclean-multi pdf \
- pdf-am ps ps-am tags tags-recursive uninstall uninstall-am
+ maintainer-clean-generic maintainer-clean-local mostlyclean \
+ mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \
+ pdf-am ps ps-am tags tags-am uninstall uninstall-am
+
+.PRECIOUS: Makefile
# Testsuite/check forwarding targets.
@@ -758,6 +815,33 @@ install-dvi:
# automake-generated TAGS rule. Make a simple one here.
TAGS: tags-recursive $(LISP)
+# GNU Make needs to see an explicit $(MAKE) variable in the command it
+# runs to enable its job server during parallel builds. Hence the
+# comments below.
+all-multi:
+ $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
+install-multi:
+ $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
+mostlyclean-multi:
+ $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
+clean-multi:
+ $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
+distclean-multi:
+ $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
+maintainer-clean-multi:
+ $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)
+
+.MAKE .PHONY: all-multi clean-multi distclean-multi install-am \
+ install-multi maintainer-clean-multi mostlyclean-multi
+
+install-exec-local: install-multi
+
+all-local: all-multi
+mostlyclean-local: mostlyclean-multi
+clean-local: clean-multi
+distclean-local: distclean-multi
+maintainer-clean-local: maintainer-clean-multi
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4
index 229d035..ce3f25e 100644
--- a/libstdc++-v3/aclocal.m4
+++ b/libstdc++-v3/aclocal.m4
@@ -1,8 +1,7 @@
-# generated automatically by aclocal 1.11.6 -*- Autoconf -*-
+# generated automatically by aclocal 1.15.1 -*- Autoconf -*-
+
+# Copyright (C) 1996-2017 Free Software Foundation, Inc.
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
-# Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -12,33 +11,31 @@
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
+m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.64],,
-[m4_warning([this file was generated for autoconf 2.64.
+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
+[m4_warning([this file was generated for autoconf 2.69.
You have another version of autoconf. It may work, but is not guaranteed to.
If you have problems, you may need to regenerate the build system entirely.
-To do so, use the procedure documented by the package, typically `autoreconf'.])])
+To do so, use the procedure documented by the package, typically 'autoreconf'.])])
-# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 1
-
# AM_AUTOMAKE_VERSION(VERSION)
# ----------------------------
# Automake X.Y traces this macro to ensure aclocal.m4 has been
# generated from the m4 files accompanying Automake X.Y.
# (This private macro should not be called outside this file.)
AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.11'
+[am__api_version='1.15'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro.
-m4_if([$1], [1.11.6], [],
+m4_if([$1], [1.15.1], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
@@ -54,24 +51,22 @@ m4_define([_AM_AUTOCONF_VERSION], [])
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.11.6])dnl
+[AM_AUTOMAKE_VERSION([1.15.1])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
-# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 1
-
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
-# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
-# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
+# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to
+# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
#
# Of course, Automake must honor this variable whenever it calls a
# tool from the auxiliary directory. The problem is that $srcdir (and
@@ -90,7 +85,7 @@ _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
#
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
# are both prefixed by $srcdir. In an in-source build this is usually
-# harmless because $srcdir is `.', but things will broke when you
+# harmless because $srcdir is '.', but things will broke when you
# start a VPATH build or use an absolute $srcdir.
#
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
@@ -108,30 +103,26 @@ _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
# configured tree to be moved without reconfiguration.
AC_DEFUN([AM_AUX_DIR_EXPAND],
-[dnl Rely on autoconf to set up CDPATH properly.
-AC_PREREQ([2.50])dnl
-# expand $ac_aux_dir to an absolute path
-am_aux_dir=`cd $ac_aux_dir && pwd`
+[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
+# Expand $ac_aux_dir to an absolute path.
+am_aux_dir=`cd "$ac_aux_dir" && pwd`
])
# AM_CONDITIONAL -*- Autoconf -*-
-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
-# Free Software Foundation, Inc.
+# Copyright (C) 1997-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 9
-
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
# -------------------------------------
# Define a conditional.
AC_DEFUN([AM_CONDITIONAL],
-[AC_PREREQ(2.52)dnl
- ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
- [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
+[AC_PREREQ([2.52])dnl
+ m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
+ [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
AC_SUBST([$1_TRUE])dnl
AC_SUBST([$1_FALSE])dnl
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
@@ -152,18 +143,21 @@ fi])])
# Do all the work for Automake. -*- Autoconf -*-
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+# Copyright (C) 1996-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 16
-
# This macro actually does too much. Some checks are only needed if
# your package does certain things. But this isn't really a big deal.
+dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
+m4_define([AC_PROG_CC],
+m4_defn([AC_PROG_CC])
+[_AM_PROG_CC_C_O
+])
+
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
# AM_INIT_AUTOMAKE([OPTIONS])
# -----------------------------------------------
@@ -176,7 +170,7 @@ fi])])
# arguments mandatory, and then we can depend on a new Autoconf
# release and drop the old call support.
AC_DEFUN([AM_INIT_AUTOMAKE],
-[AC_PREREQ([2.62])dnl
+[AC_PREREQ([2.65])dnl
dnl Autoconf wants to disallow AM_ names. We explicitly allow
dnl the ones we care about.
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
@@ -205,33 +199,42 @@ AC_SUBST([CYGPATH_W])
# Define the identity of the package.
dnl Distinguish between old-style and new-style calls.
m4_ifval([$2],
-[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
+[AC_DIAGNOSE([obsolete],
+ [$0: two- and three-arguments forms are deprecated.])
+m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
AC_SUBST([PACKAGE], [$1])dnl
AC_SUBST([VERSION], [$2])],
[_AM_SET_OPTIONS([$1])dnl
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
-m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
+m4_if(
+ m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
+ [ok:ok],,
[m4_fatal([AC_INIT should be called with package and version arguments])])dnl
AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
_AM_IF_OPTION([no-define],,
-[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
+[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
+ AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
# Some tools Automake needs.
AC_REQUIRE([AM_SANITY_CHECK])dnl
AC_REQUIRE([AC_ARG_PROGRAM])dnl
-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
-AM_MISSING_PROG(AUTOCONF, autoconf)
-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
-AM_MISSING_PROG(AUTOHEADER, autoheader)
-AM_MISSING_PROG(MAKEINFO, makeinfo)
+AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
+AM_MISSING_PROG([AUTOCONF], [autoconf])
+AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
+AM_MISSING_PROG([AUTOHEADER], [autoheader])
+AM_MISSING_PROG([MAKEINFO], [makeinfo])
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
-AC_REQUIRE([AM_PROG_MKDIR_P])dnl
-# We need awk for the "check" target. The system "awk" is bad on
-# some platforms.
+AC_REQUIRE([AC_PROG_MKDIR_P])dnl
+# For better backward compatibility. To be removed once Automake 1.9.x
+# dies out for good. For more background, see:
+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
+AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
+# We need awk for the "check" target (and possibly the TAP driver). The
+# system "awk" is bad on some platforms.
AC_REQUIRE([AC_PROG_AWK])dnl
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
@@ -240,34 +243,82 @@ _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
[_AM_PROG_TAR([v7])])])
_AM_IF_OPTION([no-dependencies],,
[AC_PROVIDE_IFELSE([AC_PROG_CC],
- [_AM_DEPENDENCIES(CC)],
- [define([AC_PROG_CC],
- defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
+ [_AM_DEPENDENCIES([CC])],
+ [m4_define([AC_PROG_CC],
+ m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
AC_PROVIDE_IFELSE([AC_PROG_CXX],
- [_AM_DEPENDENCIES(CXX)],
- [define([AC_PROG_CXX],
- defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
+ [_AM_DEPENDENCIES([CXX])],
+ [m4_define([AC_PROG_CXX],
+ m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
- [_AM_DEPENDENCIES(OBJC)],
- [define([AC_PROG_OBJC],
- defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
+ [_AM_DEPENDENCIES([OBJC])],
+ [m4_define([AC_PROG_OBJC],
+ m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
+AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
+ [_AM_DEPENDENCIES([OBJCXX])],
+ [m4_define([AC_PROG_OBJCXX],
+ m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
])
-_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
-dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
-dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
-dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
+AC_REQUIRE([AM_SILENT_RULES])dnl
+dnl The testsuite driver may need to know about EXEEXT, so add the
+dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
+dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
AC_CONFIG_COMMANDS_PRE(dnl
[m4_provide_if([_AM_COMPILER_EXEEXT],
[AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
+
+# POSIX will say in a future version that running "rm -f" with no argument
+# is OK; and we want to be able to make that assumption in our Makefile
+# recipes. So use an aggressive probe to check that the usage we want is
+# actually supported "in the wild" to an acceptable degree.
+# See automake bug#10828.
+# To make any issue more visible, cause the running configure to be aborted
+# by default if the 'rm' program in use doesn't match our expectations; the
+# user can still override this though.
+if rm -f && rm -fr && rm -rf; then : OK; else
+ cat >&2 <<'END'
+Oops!
+
+Your 'rm' program seems unable to run without file operands specified
+on the command line, even when the '-f' option is present. This is contrary
+to the behaviour of most rm programs out there, and not conforming with
+the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
+
+Please tell bug-automake@gnu.org about your system, including the value
+of your $PATH and any error possibly output before this message. This
+can help us improve future automake versions.
+
+END
+ if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
+ echo 'Configuration will proceed anyway, since you have set the' >&2
+ echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
+ echo >&2
+ else
+ cat >&2 <<'END'
+Aborting the configuration process, to ensure you take notice of the issue.
+
+You can download and install GNU coreutils to get an 'rm' implementation
+that behaves properly: <http://www.gnu.org/software/coreutils/>.
+
+If you want to complete the configuration process using your problematic
+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
+to "yes", and re-run configure.
+
+END
+ AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
+ fi
+fi
+dnl The trailing newline in this macro's definition is deliberate, for
+dnl backward compatibility and to allow trailing 'dnl'-style comments
+dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
])
-dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
+dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
dnl mangled by Autoconf and run in a shell conditional statement.
m4_define([_AC_COMPILER_EXEEXT],
m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
-
# When config.status generates a header, we must update the stamp-h file.
# This file resides in the same directory as the config header
# that is generated. The stamp files are numbered to have different names.
@@ -289,21 +340,18 @@ for _am_header in $config_headers :; do
done
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
-# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
-# Inc.
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 1
-
# AM_PROG_INSTALL_SH
# ------------------
# Define $install_sh.
AC_DEFUN([AM_PROG_INSTALL_SH],
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
-if test x"${install_sh}" != xset; then
+if test x"${install_sh+set}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
@@ -311,25 +359,22 @@ if test x"${install_sh}" != xset; then
install_sh="\${SHELL} $am_aux_dir/install-sh"
esac
fi
-AC_SUBST(install_sh)])
+AC_SUBST([install_sh])])
# Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
# From Jim Meyering
-# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008,
-# 2011 Free Software Foundation, Inc.
+# Copyright (C) 1996-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 5
-
# AM_MAINTAINER_MODE([DEFAULT-MODE])
# ----------------------------------
# Control maintainer-specific portions of Makefiles.
-# Default is to disable them, unless `enable' is passed literally.
-# For symmetry, `disable' may be passed as well. Anyway, the user
+# Default is to disable them, unless 'enable' is passed literally.
+# For symmetry, 'disable' may be passed as well. Anyway, the user
# can override the default with the --enable/--disable switch.
AC_DEFUN([AM_MAINTAINER_MODE],
[m4_case(m4_default([$1], [disable]),
@@ -340,10 +385,11 @@ AC_DEFUN([AM_MAINTAINER_MODE],
AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
dnl maintainer-mode's default is 'disable' unless 'enable' is passed
AC_ARG_ENABLE([maintainer-mode],
-[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful
- (and sometimes confusing) to the casual installer],
- [USE_MAINTAINER_MODE=$enableval],
- [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
+ [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
+ am_maintainer_other[ make rules and dependencies not useful
+ (and sometimes confusing) to the casual installer])],
+ [USE_MAINTAINER_MODE=$enableval],
+ [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
AC_MSG_RESULT([$USE_MAINTAINER_MODE])
AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
MAINT=$MAINTAINER_MODE_TRUE
@@ -351,19 +397,14 @@ AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
]
)
-AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
-
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
-# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
-# Free Software Foundation, Inc.
+# Copyright (C) 1997-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 6
-
# AM_MISSING_PROG(NAME, PROGRAM)
# ------------------------------
AC_DEFUN([AM_MISSING_PROG],
@@ -371,11 +412,10 @@ AC_DEFUN([AM_MISSING_PROG],
$1=${$1-"${am_missing_run}$2"}
AC_SUBST($1)])
-
# AM_MISSING_HAS_RUN
# ------------------
-# Define MISSING if not defined so far and test if it supports --run.
-# If it does, set am_missing_run to use it, otherwise, to nothing.
+# Define MISSING if not defined so far and test if it is modern enough.
+# If it is, set am_missing_run to use it, otherwise, to nothing.
AC_DEFUN([AM_MISSING_HAS_RUN],
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
AC_REQUIRE_AUX_FILE([missing])dnl
@@ -388,54 +428,22 @@ if test x"${MISSING+set}" != xset; then
esac
fi
# Use eval to expand $SHELL
-if eval "$MISSING --run true"; then
- am_missing_run="$MISSING --run "
+if eval "$MISSING --is-lightweight"; then
+ am_missing_run="$MISSING "
else
am_missing_run=
- AC_MSG_WARN([`missing' script is too old or missing])
+ AC_MSG_WARN(['missing' script is too old or missing])
fi
])
-# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
-# Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 1
-
-# AM_PROG_MKDIR_P
-# ---------------
-# Check for `mkdir -p'.
-AC_DEFUN([AM_PROG_MKDIR_P],
-[AC_PREREQ([2.60])dnl
-AC_REQUIRE([AC_PROG_MKDIR_P])dnl
-dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
-dnl while keeping a definition of mkdir_p for backward compatibility.
-dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
-dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
-dnl Makefile.ins that do not define MKDIR_P, so we do our own
-dnl adjustment using top_builddir (which is defined more often than
-dnl MKDIR_P).
-AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
-case $mkdir_p in
- [[\\/$]]* | ?:[[\\/]]*) ;;
- */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
-esac
-])
-
# Helper functions for option handling. -*- Autoconf -*-
-# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
-# Foundation, Inc.
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 5
-
# _AM_MANGLE_OPTION(NAME)
# -----------------------
AC_DEFUN([_AM_MANGLE_OPTION],
@@ -445,7 +453,7 @@ AC_DEFUN([_AM_MANGLE_OPTION],
# --------------------
# Set option NAME. Presently that only means defining a flag for this option.
AC_DEFUN([_AM_SET_OPTION],
-[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
+[m4_define(_AM_MANGLE_OPTION([$1]), [1])])
# _AM_SET_OPTIONS(OPTIONS)
# ------------------------
@@ -459,24 +467,82 @@ AC_DEFUN([_AM_SET_OPTIONS],
AC_DEFUN([_AM_IF_OPTION],
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
-# Check to make sure that the build environment is sane. -*- Autoconf -*-
+# Copyright (C) 1999-2017 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
-# Free Software Foundation, Inc.
+# _AM_PROG_CC_C_O
+# ---------------
+# Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC
+# to automatically call this.
+AC_DEFUN([_AM_PROG_CC_C_O],
+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+AC_REQUIRE_AUX_FILE([compile])dnl
+AC_LANG_PUSH([C])dnl
+AC_CACHE_CHECK(
+ [whether $CC understands -c and -o together],
+ [am_cv_prog_cc_c_o],
+ [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
+ # Make sure it works both with $CC and with simple cc.
+ # Following AC_PROG_CC_C_O, we do the test twice because some
+ # compilers refuse to overwrite an existing .o file with -o,
+ # though they will create one.
+ am_cv_prog_cc_c_o=yes
+ for am_i in 1 2; do
+ if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
+ && test -f conftest2.$ac_objext; then
+ : OK
+ else
+ am_cv_prog_cc_c_o=no
+ break
+ fi
+ done
+ rm -f core conftest*
+ unset am_i])
+if test "$am_cv_prog_cc_c_o" != yes; then
+ # Losing compiler, so override with the script.
+ # FIXME: It is wrong to rewrite CC.
+ # But if we don't then we get into trouble of one sort or another.
+ # A longer-term fix would be to have automake use am__CC in this case,
+ # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
+ CC="$am_aux_dir/compile $CC"
+fi
+AC_LANG_POP([C])])
+
+# For backward compatibility.
+AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
+
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 5
+# AM_RUN_LOG(COMMAND)
+# -------------------
+# Run COMMAND, save the exit status in ac_status, and log it.
+# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
+AC_DEFUN([AM_RUN_LOG],
+[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
+ ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
+ (exit $ac_status); }])
+
+# Check to make sure that the build environment is sane. -*- Autoconf -*-
+
+# Copyright (C) 1996-2017 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
# AM_SANITY_CHECK
# ---------------
AC_DEFUN([AM_SANITY_CHECK],
[AC_MSG_CHECKING([whether build environment is sane])
-# Just in case
-sleep 1
-echo timestamp > conftest.file
# Reject unsafe characters in $srcdir or the absolute working directory
# name. Accept space and tab only in the latter.
am_lf='
@@ -487,32 +553,40 @@ case `pwd` in
esac
case $srcdir in
*[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
- AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
+ AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
esac
-# Do `set' in a subshell so we don't clobber the current shell's
+# Do 'set' in a subshell so we don't clobber the current shell's
# arguments. Must try -L first in case configure is actually a
# symlink; some systems play weird games with the mod time of symlinks
# (eg FreeBSD returns the mod time of the symlink's containing
# directory).
if (
- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
- if test "$[*]" = "X"; then
- # -L didn't work.
- set X `ls -t "$srcdir/configure" conftest.file`
- fi
- rm -f conftest.file
- if test "$[*]" != "X $srcdir/configure conftest.file" \
- && test "$[*]" != "X conftest.file $srcdir/configure"; then
-
- # If neither matched, then we have a broken ls. This can happen
- # if, for instance, CONFIG_SHELL is bash and it inherits a
- # broken ls alias from the environment. This has actually
- # happened. Such a system could not be considered "sane".
- AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
-alias in your environment])
- fi
-
+ am_has_slept=no
+ for am_try in 1 2; do
+ echo "timestamp, slept: $am_has_slept" > conftest.file
+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
+ if test "$[*]" = "X"; then
+ # -L didn't work.
+ set X `ls -t "$srcdir/configure" conftest.file`
+ fi
+ if test "$[*]" != "X $srcdir/configure conftest.file" \
+ && test "$[*]" != "X conftest.file $srcdir/configure"; then
+
+ # If neither matched, then we have a broken ls. This can happen
+ # if, for instance, CONFIG_SHELL is bash and it inherits a
+ # broken ls alias from the environment. This has actually
+ # happened. Such a system could not be considered "sane".
+ AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
+ alias in your environment])
+ fi
+ if test "$[2]" = conftest.file || test $am_try -eq 2; then
+ break
+ fi
+ # Just in case.
+ sleep 1
+ am_has_slept=yes
+ done
test "$[2]" = conftest.file
)
then
@@ -522,46 +596,118 @@ else
AC_MSG_ERROR([newly created file is older than distributed files!
Check your system clock])
fi
-AC_MSG_RESULT(yes)])
+AC_MSG_RESULT([yes])
+# If we didn't sleep, we still need to ensure time stamps of config.status and
+# generated files are strictly newer.
+am_sleep_pid=
+if grep 'slept: no' conftest.file >/dev/null 2>&1; then
+ ( sleep 1 ) &
+ am_sleep_pid=$!
+fi
+AC_CONFIG_COMMANDS_PRE(
+ [AC_MSG_CHECKING([that generated files are newer than configure])
+ if test -n "$am_sleep_pid"; then
+ # Hide warnings about reused PIDs.
+ wait $am_sleep_pid 2>/dev/null
+ fi
+ AC_MSG_RESULT([done])])
+rm -f conftest.file
+])
-# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
+# Copyright (C) 2009-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 1
+# AM_SILENT_RULES([DEFAULT])
+# --------------------------
+# Enable less verbose build rules; with the default set to DEFAULT
+# ("yes" being less verbose, "no" or empty being verbose).
+AC_DEFUN([AM_SILENT_RULES],
+[AC_ARG_ENABLE([silent-rules], [dnl
+AS_HELP_STRING(
+ [--enable-silent-rules],
+ [less verbose build output (undo: "make V=1")])
+AS_HELP_STRING(
+ [--disable-silent-rules],
+ [verbose build output (undo: "make V=0")])dnl
+])
+case $enable_silent_rules in @%:@ (((
+ yes) AM_DEFAULT_VERBOSITY=0;;
+ no) AM_DEFAULT_VERBOSITY=1;;
+ *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
+esac
+dnl
+dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
+dnl do not support nested variable expansions.
+dnl See automake bug#9928 and bug#10237.
+am_make=${MAKE-make}
+AC_CACHE_CHECK([whether $am_make supports nested variables],
+ [am_cv_make_support_nested_variables],
+ [if AS_ECHO([['TRUE=$(BAR$(V))
+BAR0=false
+BAR1=true
+V=1
+am__doit:
+ @$(TRUE)
+.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
+ am_cv_make_support_nested_variables=yes
+else
+ am_cv_make_support_nested_variables=no
+fi])
+if test $am_cv_make_support_nested_variables = yes; then
+ dnl Using '$V' instead of '$(V)' breaks IRIX make.
+ AM_V='$(V)'
+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
+else
+ AM_V=$AM_DEFAULT_VERBOSITY
+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
+fi
+AC_SUBST([AM_V])dnl
+AM_SUBST_NOTMAKE([AM_V])dnl
+AC_SUBST([AM_DEFAULT_V])dnl
+AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
+AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
+AM_BACKSLASH='\'
+AC_SUBST([AM_BACKSLASH])dnl
+_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
+])
+
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
# AM_PROG_INSTALL_STRIP
# ---------------------
-# One issue with vendor `install' (even GNU) is that you can't
+# One issue with vendor 'install' (even GNU) is that you can't
# specify the program used to strip binaries. This is especially
# annoying in cross-compiling environments, where the build's strip
# is unlikely to handle the host's binaries.
# Fortunately install-sh will honor a STRIPPROG variable, so we
-# always use install-sh in `make install-strip', and initialize
+# always use install-sh in "make install-strip", and initialize
# STRIPPROG with the value of the STRIP variable (set by the user).
AC_DEFUN([AM_PROG_INSTALL_STRIP],
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
-# Installed binaries are usually stripped using `strip' when the user
-# run `make install-strip'. However `strip' might not be the right
+# Installed binaries are usually stripped using 'strip' when the user
+# run "make install-strip". However 'strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
-# will honor the `STRIP' environment variable to overrule this program.
-dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
+# will honor the 'STRIP' environment variable to overrule this program.
+dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
if test "$cross_compiling" != no; then
AC_CHECK_TOOL([STRIP], [strip], :)
fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
AC_SUBST([INSTALL_STRIP_PROGRAM])])
-# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
+# Copyright (C) 2006-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 3
-
# _AM_SUBST_NOTMAKE(VARIABLE)
# ---------------------------
# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
@@ -575,18 +721,16 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
# Check how to create a tarball. -*- Autoconf -*-
-# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
+# Copyright (C) 2004-2017 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-# serial 2
-
# _AM_PROG_TAR(FORMAT)
# --------------------
# Check how to create a tarball in format FORMAT.
-# FORMAT should be one of `v7', `ustar', or `pax'.
+# FORMAT should be one of 'v7', 'ustar', or 'pax'.
#
# Substitute a variable $(am__tar) that is a command
# writing to stdout a FORMAT-tarball containing the directory
@@ -596,76 +740,114 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
# Substitute a variable $(am__untar) that extract such
# a tarball read from stdin.
# $(am__untar) < result.tar
+#
AC_DEFUN([_AM_PROG_TAR],
[# Always define AMTAR for backward compatibility. Yes, it's still used
# in the wild :-( We should find a proper way to deprecate it ...
AC_SUBST([AMTAR], ['$${TAR-tar}'])
-m4_if([$1], [v7],
- [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
- [m4_case([$1], [ustar],, [pax],,
- [m4_fatal([Unknown tar format])])
-AC_MSG_CHECKING([how to create a $1 tar archive])
-# Loop over all known methods to create a tar archive until one works.
-_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
-_am_tools=${am_cv_prog_tar_$1-$_am_tools}
-# Do not fold the above two line into one, because Tru64 sh and
-# Solaris sh will not grok spaces in the rhs of `-'.
-for _am_tool in $_am_tools
-do
- case $_am_tool in
- gnutar)
- for _am_tar in tar gnutar gtar;
- do
- AM_RUN_LOG([$_am_tar --version]) && break
- done
- am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
- am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
- am__untar="$_am_tar -xf -"
- ;;
- plaintar)
- # Must skip GNU tar: if it does not support --format= it doesn't create
- # ustar tarball either.
- (tar --version) >/dev/null 2>&1 && continue
- am__tar='tar chf - "$$tardir"'
- am__tar_='tar chf - "$tardir"'
- am__untar='tar xf -'
- ;;
- pax)
- am__tar='pax -L -x $1 -w "$$tardir"'
- am__tar_='pax -L -x $1 -w "$tardir"'
- am__untar='pax -r'
- ;;
- cpio)
- am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
- am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
- am__untar='cpio -i -H $1 -d'
- ;;
- none)
- am__tar=false
- am__tar_=false
- am__untar=false
- ;;
- esac
- # If the value was cached, stop now. We just wanted to have am__tar
- # and am__untar set.
- test -n "${am_cv_prog_tar_$1}" && break
+# We'll loop over all known methods to create a tar archive until one works.
+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
- # tar/untar a dummy directory, and stop if the command works
- rm -rf conftest.dir
- mkdir conftest.dir
- echo GrepMe > conftest.dir/file
- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
+m4_if([$1], [v7],
+ [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
+
+ [m4_case([$1],
+ [ustar],
+ [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
+ # There is notably a 21 bits limit for the UID and the GID. In fact,
+ # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
+ # and bug#13588).
+ am_max_uid=2097151 # 2^21 - 1
+ am_max_gid=$am_max_uid
+ # The $UID and $GID variables are not portable, so we need to resort
+ # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
+ # below are definitely unexpected, so allow the users to see them
+ # (that is, avoid stderr redirection).
+ am_uid=`id -u || echo unknown`
+ am_gid=`id -g || echo unknown`
+ AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
+ if test $am_uid -le $am_max_uid; then
+ AC_MSG_RESULT([yes])
+ else
+ AC_MSG_RESULT([no])
+ _am_tools=none
+ fi
+ AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
+ if test $am_gid -le $am_max_gid; then
+ AC_MSG_RESULT([yes])
+ else
+ AC_MSG_RESULT([no])
+ _am_tools=none
+ fi],
+
+ [pax],
+ [],
+
+ [m4_fatal([Unknown tar format])])
+
+ AC_MSG_CHECKING([how to create a $1 tar archive])
+
+ # Go ahead even if we have the value already cached. We do so because we
+ # need to set the values for the 'am__tar' and 'am__untar' variables.
+ _am_tools=${am_cv_prog_tar_$1-$_am_tools}
+
+ for _am_tool in $_am_tools; do
+ case $_am_tool in
+ gnutar)
+ for _am_tar in tar gnutar gtar; do
+ AM_RUN_LOG([$_am_tar --version]) && break
+ done
+ am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
+ am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
+ am__untar="$_am_tar -xf -"
+ ;;
+ plaintar)
+ # Must skip GNU tar: if it does not support --format= it doesn't create
+ # ustar tarball either.
+ (tar --version) >/dev/null 2>&1 && continue
+ am__tar='tar chf - "$$tardir"'
+ am__tar_='tar chf - "$tardir"'
+ am__untar='tar xf -'
+ ;;
+ pax)
+ am__tar='pax -L -x $1 -w "$$tardir"'
+ am__tar_='pax -L -x $1 -w "$tardir"'
+ am__untar='pax -r'
+ ;;
+ cpio)
+ am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
+ am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
+ am__untar='cpio -i -H $1 -d'
+ ;;
+ none)
+ am__tar=false
+ am__tar_=false
+ am__untar=false
+ ;;
+ esac
+
+ # If the value was cached, stop now. We just wanted to have am__tar
+ # and am__untar set.
+ test -n "${am_cv_prog_tar_$1}" && break
+
+ # tar/untar a dummy directory, and stop if the command works.
+ rm -rf conftest.dir
+ mkdir conftest.dir
+ echo GrepMe > conftest.dir/file
+ AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
+ rm -rf conftest.dir
+ if test -s conftest.tar; then
+ AM_RUN_LOG([$am__untar <conftest.tar])
+ AM_RUN_LOG([cat conftest.dir/file])
+ grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
+ fi
+ done
rm -rf conftest.dir
- if test -s conftest.tar; then
- AM_RUN_LOG([$am__untar <conftest.tar])
- grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
- fi
-done
-rm -rf conftest.dir
-AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
-AC_MSG_RESULT([$am_cv_prog_tar_$1])])
+ AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
+ AC_MSG_RESULT([$am_cv_prog_tar_$1])])
+
AC_SUBST([am__tar])
AC_SUBST([am__untar])
]) # _AM_PROG_TAR
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
index 12a6d4c..3462059 100755
--- a/libstdc++-v3/configure
+++ b/libstdc++-v3/configure
@@ -1,10 +1,10 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.64 for package-unused version-unused.
+# Generated by GNU Autoconf 2.69 for package-unused version-unused.
+#
+#
+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
#
-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
-# Foundation, Inc.
#
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
@@ -87,6 +87,7 @@ fi
IFS=" "" $as_nl"
# Find who we are. Look in the path if we contain no directory separator.
+as_myself=
case $0 in #((
*[\\/]* ) as_myself=$0 ;;
*) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -131,6 +132,31 @@ export LANGUAGE
# CDPATH.
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+# Use a proper internal environment variable to ensure we don't fall
+ # into an infinite loop, continuously re-executing ourselves.
+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
+ _as_can_reexec=no; export _as_can_reexec;
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
+as_fn_exit 255
+ fi
+ # We don't want this to propagate to other subprocesses.
+ { _as_can_reexec=; unset _as_can_reexec;}
if test "x$CONFIG_SHELL" = x; then
as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
emulate sh
@@ -164,7 +190,8 @@ if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
else
exitcode=1; echo positional parameters were not saved.
fi
-test x\$exitcode = x0 || exit 1"
+test x\$exitcode = x0 || exit 1
+test -x / || exit 1"
as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
@@ -217,14 +244,25 @@ IFS=$as_save_IFS
if test "x$CONFIG_SHELL" != x; then :
- # We cannot yet assume a decent shell, so we have to provide a
- # neutralization value for shells without unset; and this also
- # works around shells that cannot unset nonexistent variables.
- BASH_ENV=/dev/null
- ENV=/dev/null
- (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
- export CONFIG_SHELL
- exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
+ export CONFIG_SHELL
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
+exit 255
fi
if test x$as_have_required = xno; then :
@@ -322,10 +360,18 @@ $as_echo X"$as_dir" |
test -d "$as_dir" && break
done
test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
} # as_fn_mkdir_p
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "$1" && test -x "$1"
+} # as_fn_executable_p
# as_fn_append VAR VALUE
# ----------------------
# Append the text in VALUE to the end of the definition contained in VAR. Take
@@ -362,19 +408,19 @@ else
fi # as_fn_arith
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
+# script with STATUS, using 1 if that was 0.
as_fn_error ()
{
- as_status=$?; test $as_status -eq 0 && as_status=1
- if test "$3"; then
- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
+ as_status=$1; test $as_status -eq 0 && as_status=1
+ if test "$4"; then
+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
fi
- $as_echo "$as_me: error: $1" >&2
+ $as_echo "$as_me: error: $2" >&2
as_fn_exit $as_status
} # as_fn_error
@@ -447,6 +493,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
chmod +x "$as_me.lineno" ||
{ $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
+ # already done that, so ensure we don't try to do so again and fall
+ # in an infinite loop. This has already happened in practice.
+ _as_can_reexec=no; export _as_can_reexec
# Don't try to exec as it changes $[0], causing all sort of problems
# (the dirname of $[0] is not the place where we might find the
# original and so on. Autoconf is especially sensitive to this).
@@ -481,16 +531,16 @@ if (echo >conf$$.file) 2>/dev/null; then
# ... but there are two gotchas:
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -p'.
+ # In both cases, we have to default to `cp -pR'.
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
elif ln conf$$.file conf$$ 2>/dev/null; then
as_ln_s=ln
else
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
fi
else
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
fi
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
rmdir conf$$.dir 2>/dev/null
@@ -502,28 +552,8 @@ else
as_mkdir_p=false
fi
-if test -x / >/dev/null 2>&1; then
- as_test_x='test -x'
-else
- if ls -dL / >/dev/null 2>&1; then
- as_ls_L_option=L
- else
- as_ls_L_option=
- fi
- as_test_x='
- eval sh -c '\''
- if test -d "$1"; then
- test -d "$1/.";
- else
- case $1 in #(
- -*)set "./$1";;
- esac;
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
- ???[sx]*):;;*)false;;esac;fi
- '\'' sh
- '
-fi
-as_executable_p=$as_test_x
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
# Sed expression to map a string onto a valid CPP name.
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
@@ -534,10 +564,11 @@ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
SHELL=${CONFIG_SHELL-/bin/sh}
-exec 7<&0 </dev/null 6>&1
+test -n "$DJDIR" || exec 7<&0 </dev/null
+exec 6>&1
# Name of the host.
-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
# so uname gets run too.
ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
@@ -780,6 +811,10 @@ CPPFLAGS
LDFLAGS
CFLAGS
CC
+AM_BACKSLASH
+AM_DEFAULT_VERBOSITY
+AM_DEFAULT_V
+AM_V
am__untar
am__tar
AMTAR
@@ -858,6 +893,7 @@ ac_subst_files=''
ac_user_opts='
enable_option_checking
enable_multilib
+enable_silent_rules
with_target_subdir
with_cross_host
with_newlib
@@ -981,8 +1017,9 @@ do
fi
case $ac_option in
- *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
- *) ac_optarg=yes ;;
+ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
+ *=) ac_optarg= ;;
+ *) ac_optarg=yes ;;
esac
# Accept the important Cygnus configure options, so we can diagnose typos.
@@ -1027,7 +1064,7 @@ do
ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
# Reject names that are not valid shell variable names.
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
- as_fn_error "invalid feature name: $ac_useropt"
+ as_fn_error $? "invalid feature name: $ac_useropt"
ac_useropt_orig=$ac_useropt
ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
case $ac_user_opts in
@@ -1053,7 +1090,7 @@ do
ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
# Reject names that are not valid shell variable names.
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
- as_fn_error "invalid feature name: $ac_useropt"
+ as_fn_error $? "invalid feature name: $ac_useropt"
ac_useropt_orig=$ac_useropt
ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
case $ac_user_opts in
@@ -1257,7 +1294,7 @@ do
ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
# Reject names that are not valid shell variable names.
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
- as_fn_error "invalid package name: $ac_useropt"
+ as_fn_error $? "invalid package name: $ac_useropt"
ac_useropt_orig=$ac_useropt
ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
case $ac_user_opts in
@@ -1273,7 +1310,7 @@ do
ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
# Reject names that are not valid shell variable names.
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
- as_fn_error "invalid package name: $ac_useropt"
+ as_fn_error $? "invalid package name: $ac_useropt"
ac_useropt_orig=$ac_useropt
ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
case $ac_user_opts in
@@ -1303,8 +1340,8 @@ do
| --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
x_libraries=$ac_optarg ;;
- -*) as_fn_error "unrecognized option: \`$ac_option'
-Try \`$0 --help' for more information."
+ -*) as_fn_error $? "unrecognized option: \`$ac_option'
+Try \`$0 --help' for more information"
;;
*=*)
@@ -1312,7 +1349,7 @@ Try \`$0 --help' for more information."
# Reject names that are not valid shell variable names.
case $ac_envvar in #(
'' | [0-9]* | *[!_$as_cr_alnum]* )
- as_fn_error "invalid variable name: \`$ac_envvar'" ;;
+ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
esac
eval $ac_envvar=\$ac_optarg
export $ac_envvar ;;
@@ -1322,7 +1359,7 @@ Try \`$0 --help' for more information."
$as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
$as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
- : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
+ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
;;
esac
@@ -1330,13 +1367,13 @@ done
if test -n "$ac_prev"; then
ac_option=--`echo $ac_prev | sed 's/_/-/g'`
- as_fn_error "missing argument to $ac_option"
+ as_fn_error $? "missing argument to $ac_option"
fi
if test -n "$ac_unrecognized_opts"; then
case $enable_option_checking in
no) ;;
- fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
+ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
*) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
esac
fi
@@ -1359,7 +1396,7 @@ do
[\\/$]* | ?:[\\/]* ) continue;;
NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
esac
- as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
+ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
done
# There might be people who depend on the old broken behavior: `$host'
@@ -1373,8 +1410,6 @@ target=$target_alias
if test "x$host_alias" != x; then
if test "x$build_alias" = x; then
cross_compiling=maybe
- $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
- If a cross compiler is detected then cross compile mode will be used." >&2
elif test "x$build_alias" != "x$host_alias"; then
cross_compiling=yes
fi
@@ -1389,9 +1424,9 @@ test "$silent" = yes && exec 6>/dev/null
ac_pwd=`pwd` && test -n "$ac_pwd" &&
ac_ls_di=`ls -di .` &&
ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
- as_fn_error "working directory cannot be determined"
+ as_fn_error $? "working directory cannot be determined"
test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
- as_fn_error "pwd does not report name of working directory"
+ as_fn_error $? "pwd does not report name of working directory"
# Find the source files, if location was not specified.
@@ -1430,11 +1465,11 @@ else
fi
if test ! -r "$srcdir/$ac_unique_file"; then
test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
- as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
+ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
fi
ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
ac_abs_confdir=`(
- cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
+ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
pwd)`
# When building in place, set srcdir=.
if test "$ac_abs_confdir" = "$ac_pwd"; then
@@ -1474,7 +1509,7 @@ Configuration:
--help=short display options specific to this package
--help=recursive display the short help of all the included packages
-V, --version display version information and exit
- -q, --quiet, --silent do not print \`checking...' messages
+ -q, --quiet, --silent do not print \`checking ...' messages
--cache-file=FILE cache test results in FILE [disabled]
-C, --config-cache alias for \`--cache-file=config.cache'
-n, --no-create do not create output files
@@ -1540,8 +1575,11 @@ Optional Features:
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-multilib build many library versions (default)
- --enable-maintainer-mode enable make rules and dependencies not useful
- (and sometimes confusing) to the casual installer
+ --enable-silent-rules less verbose build output (undo: "make V=1")
+ --disable-silent-rules verbose build output (undo: "make V=0")
+ --enable-maintainer-mode
+ enable make rules and dependencies not useful (and
+ sometimes confusing) to the casual installer
--enable-shared[=PKGS] build shared libraries [default=yes]
--enable-static[=PKGS] build static libraries [default=yes]
--enable-fast-install[=PKGS]
@@ -1633,7 +1671,7 @@ Some influential environment variables:
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
nonstandard directory <lib dir>
LIBS libraries to pass to the linker, e.g. -l<library>
- CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
+ CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
you have headers in a nonstandard directory <include dir>
CXX C++ compiler command
CXXFLAGS C++ compiler flags
@@ -1709,9 +1747,9 @@ test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
package-unused configure version-unused
-generated by GNU Autoconf 2.64
+generated by GNU Autoconf 2.69
-Copyright (C) 2009 Free Software Foundation, Inc.
+Copyright (C) 2012 Free Software Foundation, Inc.
This configure script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it.
_ACEOF
@@ -1755,8 +1793,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1
fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- return $ac_retval
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ as_fn_set_status $ac_retval
} # ac_fn_c_try_compile
@@ -1793,8 +1831,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1
fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- return $ac_retval
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ as_fn_set_status $ac_retval
} # ac_fn_cxx_try_compile
@@ -1819,7 +1857,7 @@ $as_echo "$ac_try_echo"; } >&5
mv -f conftest.er1 conftest.err
fi
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } >/dev/null && {
+ test $ac_status = 0; } > conftest.i && {
test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
test ! -s conftest.err
}; then :
@@ -1830,8 +1868,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1
fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- return $ac_retval
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ as_fn_set_status $ac_retval
} # ac_fn_c_try_cpp
@@ -1862,7 +1900,7 @@ $as_echo "$ac_try_echo"; } >&5
test ! -s conftest.err
} && test -s conftest$ac_exeext && {
test "$cross_compiling" = yes ||
- $as_test_x conftest$ac_exeext
+ test -x conftest$ac_exeext
}; then :
ac_retval=0
else
@@ -1876,8 +1914,8 @@ fi
# interfere with the next link command; also delete a directory that is
# left behind by Apple's compiler. We do this before executing the actions.
rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- return $ac_retval
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ as_fn_set_status $ac_retval
} # ac_fn_c_try_link
@@ -1890,7 +1928,7 @@ ac_fn_c_check_header_compile ()
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval \${$3+:} false; then :
$as_echo_n "(cached) " >&6
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1908,7 +1946,7 @@ fi
eval ac_res=\$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_header_compile
@@ -1949,8 +1987,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=$ac_status
fi
rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- return $ac_retval
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ as_fn_set_status $ac_retval
} # ac_fn_c_try_run
@@ -1962,11 +2000,11 @@ ac_fn_c_check_func ()
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval \${$3+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -2020,7 +2058,7 @@ fi
eval ac_res=\$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_func
@@ -2045,7 +2083,7 @@ $as_echo "$ac_try_echo"; } >&5
mv -f conftest.er1 conftest.err
fi
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } >/dev/null && {
+ test $ac_status = 0; } > conftest.i && {
test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
test ! -s conftest.err
}; then :
@@ -2056,8 +2094,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1
fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- return $ac_retval
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ as_fn_set_status $ac_retval
} # ac_fn_cxx_try_cpp
@@ -2088,7 +2126,7 @@ $as_echo "$ac_try_echo"; } >&5
test ! -s conftest.err
} && test -s conftest$ac_exeext && {
test "$cross_compiling" = yes ||
- $as_test_x conftest$ac_exeext
+ test -x conftest$ac_exeext
}; then :
ac_retval=0
else
@@ -2102,8 +2140,8 @@ fi
# interfere with the next link command; also delete a directory that is
# left behind by Apple's compiler. We do this before executing the actions.
rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- return $ac_retval
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ as_fn_set_status $ac_retval
} # ac_fn_cxx_try_link
@@ -2115,10 +2153,10 @@ fi
ac_fn_c_check_header_mongrel ()
{
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+ if eval \${$3+:} false; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval \${$3+:} false; then :
$as_echo_n "(cached) " >&6
fi
eval ac_res=\$$3
@@ -2154,7 +2192,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
else
ac_header_preproc=no
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
$as_echo "$ac_header_preproc" >&6; }
@@ -2181,7 +2219,7 @@ $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval \${$3+:} false; then :
$as_echo_n "(cached) " >&6
else
eval "$3=\$ac_header_compiler"
@@ -2190,7 +2228,7 @@ eval ac_res=\$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_header_mongrel
@@ -2202,10 +2240,10 @@ fi
ac_fn_cxx_check_header_mongrel ()
{
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+ if eval \${$3+:} false; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval \${$3+:} false; then :
$as_echo_n "(cached) " >&6
fi
eval ac_res=\$$3
@@ -2241,7 +2279,7 @@ if ac_fn_cxx_try_cpp "$LINENO"; then :
else
ac_header_preproc=no
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
$as_echo "$ac_header_preproc" >&6; }
@@ -2268,7 +2306,7 @@ $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval \${$3+:} false; then :
$as_echo_n "(cached) " >&6
else
eval "$3=\$ac_header_compiler"
@@ -2277,7 +2315,7 @@ eval ac_res=\$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_cxx_check_header_mongrel
@@ -2298,7 +2336,8 @@ int
main ()
{
static int test_array [1 - 2 * !(($2) >= 0)];
-test_array [0] = 0
+test_array [0] = 0;
+return test_array [0];
;
return 0;
@@ -2314,7 +2353,8 @@ int
main ()
{
static int test_array [1 - 2 * !(($2) <= $ac_mid)];
-test_array [0] = 0
+test_array [0] = 0;
+return test_array [0];
;
return 0;
@@ -2340,7 +2380,8 @@ int
main ()
{
static int test_array [1 - 2 * !(($2) < 0)];
-test_array [0] = 0
+test_array [0] = 0;
+return test_array [0];
;
return 0;
@@ -2356,7 +2397,8 @@ int
main ()
{
static int test_array [1 - 2 * !(($2) >= $ac_mid)];
-test_array [0] = 0
+test_array [0] = 0;
+return test_array [0];
;
return 0;
@@ -2390,7 +2432,8 @@ int
main ()
{
static int test_array [1 - 2 * !(($2) <= $ac_mid)];
-test_array [0] = 0
+test_array [0] = 0;
+return test_array [0];
;
return 0;
@@ -2454,8 +2497,8 @@ rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
rm -f conftest.val
fi
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
- return $ac_retval
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ as_fn_set_status $ac_retval
} # ac_fn_c_compute_int
@@ -2468,7 +2511,7 @@ ac_fn_c_check_type ()
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval \${$3+:} false; then :
$as_echo_n "(cached) " >&6
else
eval "$3=no"
@@ -2509,7 +2552,7 @@ fi
eval ac_res=\$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_type
@@ -2522,7 +2565,7 @@ ac_fn_cxx_check_type ()
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
-if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval \${$3+:} false; then :
$as_echo_n "(cached) " >&6
else
eval "$3=no"
@@ -2563,7 +2606,7 @@ fi
eval ac_res=\$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_cxx_check_type
cat >config.log <<_ACEOF
@@ -2571,7 +2614,7 @@ This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by package-unused $as_me version-unused, which was
-generated by GNU Autoconf 2.64. Invocation command line was
+generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -2681,11 +2724,9 @@ trap 'exit_status=$?
{
echo
- cat <<\_ASBOX
-## ---------------- ##
+ $as_echo "## ---------------- ##
## Cache variables. ##
-## ---------------- ##
-_ASBOX
+## ---------------- ##"
echo
# The following way of writing the cache mishandles newlines in values,
(
@@ -2719,11 +2760,9 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
)
echo
- cat <<\_ASBOX
-## ----------------- ##
+ $as_echo "## ----------------- ##
## Output variables. ##
-## ----------------- ##
-_ASBOX
+## ----------------- ##"
echo
for ac_var in $ac_subst_vars
do
@@ -2736,11 +2775,9 @@ _ASBOX
echo
if test -n "$ac_subst_files"; then
- cat <<\_ASBOX
-## ------------------- ##
+ $as_echo "## ------------------- ##
## File substitutions. ##
-## ------------------- ##
-_ASBOX
+## ------------------- ##"
echo
for ac_var in $ac_subst_files
do
@@ -2754,11 +2791,9 @@ _ASBOX
fi
if test -s confdefs.h; then
- cat <<\_ASBOX
-## ----------- ##
+ $as_echo "## ----------- ##
## confdefs.h. ##
-## ----------- ##
-_ASBOX
+## ----------- ##"
echo
cat confdefs.h
echo
@@ -2813,7 +2848,12 @@ _ACEOF
ac_site_file1=NONE
ac_site_file2=NONE
if test -n "$CONFIG_SITE"; then
- ac_site_file1=$CONFIG_SITE
+ # We do not want a PATH search for config.site.
+ case $CONFIG_SITE in #((
+ -*) ac_site_file1=./$CONFIG_SITE;;
+ */*) ac_site_file1=$CONFIG_SITE;;
+ *) ac_site_file1=./$CONFIG_SITE;;
+ esac
elif test "x$prefix" != xNONE; then
ac_site_file1=$prefix/share/config.site
ac_site_file2=$prefix/etc/config.site
@@ -2824,18 +2864,22 @@ fi
for ac_site_file in "$ac_site_file1" "$ac_site_file2"
do
test "x$ac_site_file" = xNONE && continue
- if test -r "$ac_site_file"; then
+ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
$as_echo "$as_me: loading site script $ac_site_file" >&6;}
sed 's/^/| /' "$ac_site_file" >&5
- . "$ac_site_file"
+ . "$ac_site_file" \
+ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "failed to load site script $ac_site_file
+See \`config.log' for more details" "$LINENO" 5; }
fi
done
if test -r "$cache_file"; then
- # Some versions of bash will fail to source /dev/null (special
- # files actually), so we avoid doing that.
- if test -f "$cache_file"; then
+ # Some versions of bash will fail to source /dev/null (special files
+ # actually), so we avoid doing that. DJGPP emulates it as a regular file.
+ if test /dev/null != "$cache_file" && test -f "$cache_file"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
$as_echo "$as_me: loading cache $cache_file" >&6;}
case $cache_file in
@@ -2904,7 +2948,7 @@ if $ac_cache_corrupted; then
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
{ $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
- as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
+ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
fi
## -------------------- ##
## Main body of script. ##
@@ -2937,7 +2981,7 @@ if test "${enable_multilib+set}" = set; then :
enableval=$enable_multilib; case "$enableval" in
yes) multilib=yes ;;
no) multilib=no ;;
- *) as_fn_error "bad value $enableval for multilib option" "$LINENO" 5 ;;
+ *) as_fn_error $? "bad value $enableval for multilib option" "$LINENO" 5 ;;
esac
else
multilib=yes
@@ -2985,16 +3029,22 @@ ac_config_commands="$ac_config_commands default-1"
# http://gcc.gnu.org/ml/libstdc++/2003-07/msg00451.html
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
- for ac_t in install-sh install.sh shtool; do
- if test -f "$ac_dir/$ac_t"; then
- ac_aux_dir=$ac_dir
- ac_install_sh="$ac_aux_dir/$ac_t -c"
- break 2
- fi
- done
+ if test -f "$ac_dir/install-sh"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install-sh -c"
+ break
+ elif test -f "$ac_dir/install.sh"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install.sh -c"
+ break
+ elif test -f "$ac_dir/shtool"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/shtool install -c"
+ break
+ fi
done
if test -z "$ac_aux_dir"; then
- as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
+ as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
fi
# These three variables are undocumented and unsupported,
@@ -3008,27 +3058,27 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
# Make sure we can run config.sub.
$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
- as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
+ as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
$as_echo_n "checking build system type... " >&6; }
-if test "${ac_cv_build+set}" = set; then :
+if ${ac_cv_build+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_build_alias=$build_alias
test "x$ac_build_alias" = x &&
ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
test "x$ac_build_alias" = x &&
- as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5
+ as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
- as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
$as_echo "$ac_cv_build" >&6; }
case $ac_cv_build in
*-*-*) ;;
-*) as_fn_error "invalid value of canonical build" "$LINENO" 5;;
+*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
esac
build=$ac_cv_build
ac_save_IFS=$IFS; IFS='-'
@@ -3046,14 +3096,14 @@ case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
$as_echo_n "checking host system type... " >&6; }
-if test "${ac_cv_host+set}" = set; then :
+if ${ac_cv_host+:} false; then :
$as_echo_n "(cached) " >&6
else
if test "x$host_alias" = x; then
ac_cv_host=$ac_cv_build
else
ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
- as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
fi
fi
@@ -3061,7 +3111,7 @@ fi
$as_echo "$ac_cv_host" >&6; }
case $ac_cv_host in
*-*-*) ;;
-*) as_fn_error "invalid value of canonical host" "$LINENO" 5;;
+*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
esac
host=$ac_cv_host
ac_save_IFS=$IFS; IFS='-'
@@ -3079,14 +3129,14 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5
$as_echo_n "checking target system type... " >&6; }
-if test "${ac_cv_target+set}" = set; then :
+if ${ac_cv_target+:} false; then :
$as_echo_n "(cached) " >&6
else
if test "x$target_alias" = x; then
ac_cv_target=$ac_cv_host
else
ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
- as_fn_error "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
fi
fi
@@ -3094,7 +3144,7 @@ fi
$as_echo "$ac_cv_target" >&6; }
case $ac_cv_target in
*-*-*) ;;
-*) as_fn_error "invalid value of canonical target" "$LINENO" 5;;
+*) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;;
esac
target=$ac_cv_target
ac_save_IFS=$IFS; IFS='-'
@@ -3159,7 +3209,7 @@ fi
# no-dist: we don't want 'dist' and related rules.
# -Wall: turns on all automake warnings...
# -Wno-portability: ...except this one, since GNU make is now required.
-am__api_version='1.11'
+am__api_version='1.15'
# Find a good install program. We prefer a C program (faster),
# so one script is as good as another. But avoid the broken or
@@ -3178,7 +3228,7 @@ am__api_version='1.11'
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
$as_echo_n "checking for a BSD-compatible install... " >&6; }
if test -z "$INSTALL"; then
-if test "${ac_cv_path_install+set}" = set; then :
+if ${ac_cv_path_install+:} false; then :
$as_echo_n "(cached) " >&6
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -3198,7 +3248,7 @@ case $as_dir/ in #((
# by default.
for ac_prog in ginstall scoinst install; do
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
if test $ac_prog = install &&
grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
# AIX install. It has an incompatible calling convention.
@@ -3256,56 +3306,71 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
$as_echo_n "checking whether build environment is sane... " >&6; }
-# Just in case
-sleep 1
-echo timestamp > conftest.file
# Reject unsafe characters in $srcdir or the absolute working directory
# name. Accept space and tab only in the latter.
am_lf='
'
case `pwd` in
*[\\\"\#\$\&\'\`$am_lf]*)
- as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
+ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
esac
case $srcdir in
*[\\\"\#\$\&\'\`$am_lf\ \ ]*)
- as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
+ as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
esac
-# Do `set' in a subshell so we don't clobber the current shell's
+# Do 'set' in a subshell so we don't clobber the current shell's
# arguments. Must try -L first in case configure is actually a
# symlink; some systems play weird games with the mod time of symlinks
# (eg FreeBSD returns the mod time of the symlink's containing
# directory).
if (
- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
- if test "$*" = "X"; then
- # -L didn't work.
- set X `ls -t "$srcdir/configure" conftest.file`
- fi
- rm -f conftest.file
- if test "$*" != "X $srcdir/configure conftest.file" \
- && test "$*" != "X conftest.file $srcdir/configure"; then
-
- # If neither matched, then we have a broken ls. This can happen
- # if, for instance, CONFIG_SHELL is bash and it inherits a
- # broken ls alias from the environment. This has actually
- # happened. Such a system could not be considered "sane".
- as_fn_error "ls -t appears to fail. Make sure there is not a broken
-alias in your environment" "$LINENO" 5
- fi
-
+ am_has_slept=no
+ for am_try in 1 2; do
+ echo "timestamp, slept: $am_has_slept" > conftest.file
+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
+ if test "$*" = "X"; then
+ # -L didn't work.
+ set X `ls -t "$srcdir/configure" conftest.file`
+ fi
+ if test "$*" != "X $srcdir/configure conftest.file" \
+ && test "$*" != "X conftest.file $srcdir/configure"; then
+
+ # If neither matched, then we have a broken ls. This can happen
+ # if, for instance, CONFIG_SHELL is bash and it inherits a
+ # broken ls alias from the environment. This has actually
+ # happened. Such a system could not be considered "sane".
+ as_fn_error $? "ls -t appears to fail. Make sure there is not a broken
+ alias in your environment" "$LINENO" 5
+ fi
+ if test "$2" = conftest.file || test $am_try -eq 2; then
+ break
+ fi
+ # Just in case.
+ sleep 1
+ am_has_slept=yes
+ done
test "$2" = conftest.file
)
then
# Ok.
:
else
- as_fn_error "newly created file is older than distributed files!
+ as_fn_error $? "newly created file is older than distributed files!
Check your system clock" "$LINENO" 5
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
+# If we didn't sleep, we still need to ensure time stamps of config.status and
+# generated files are strictly newer.
+am_sleep_pid=
+if grep 'slept: no' conftest.file >/dev/null 2>&1; then
+ ( sleep 1 ) &
+ am_sleep_pid=$!
+fi
+
+rm -f conftest.file
+
test "$program_prefix" != NONE &&
program_transform_name="s&^&$program_prefix&;$program_transform_name"
# Use a double $ so make ignores it.
@@ -3316,8 +3381,8 @@ test "$program_suffix" != NONE &&
ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
-# expand $ac_aux_dir to an absolute path
-am_aux_dir=`cd $ac_aux_dir && pwd`
+# Expand $ac_aux_dir to an absolute path.
+am_aux_dir=`cd "$ac_aux_dir" && pwd`
if test x"${MISSING+set}" != xset; then
case $am_aux_dir in
@@ -3328,15 +3393,15 @@ if test x"${MISSING+set}" != xset; then
esac
fi
# Use eval to expand $SHELL
-if eval "$MISSING --run true"; then
- am_missing_run="$MISSING --run "
+if eval "$MISSING --is-lightweight"; then
+ am_missing_run="$MISSING "
else
am_missing_run=
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5
-$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
+$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
fi
-if test x"${install_sh}" != xset; then
+if test x"${install_sh+set}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
@@ -3345,17 +3410,17 @@ if test x"${install_sh}" != xset; then
esac
fi
-# Installed binaries are usually stripped using `strip' when the user
-# run `make install-strip'. However `strip' might not be the right
+# Installed binaries are usually stripped using 'strip' when the user
+# run "make install-strip". However 'strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
-# will honor the `STRIP' environment variable to overrule this program.
+# will honor the 'STRIP' environment variable to overrule this program.
if test "$cross_compiling" != no; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
set dummy ${ac_tool_prefix}strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_STRIP+set}" = set; then :
+if ${ac_cv_prog_STRIP+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$STRIP"; then
@@ -3367,7 +3432,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -3395,7 +3460,7 @@ if test -z "$ac_cv_prog_STRIP"; then
set dummy strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_STRIP"; then
@@ -3407,7 +3472,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_STRIP="strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -3448,7 +3513,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
if test -z "$MKDIR_P"; then
- if test "${ac_cv_path_mkdir+set}" = set; then :
+ if ${ac_cv_path_mkdir+:} false; then :
$as_echo_n "(cached) " >&6
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -3458,7 +3523,7 @@ do
test -z "$as_dir" && as_dir=.
for ac_prog in mkdir gmkdir; do
for ac_exec_ext in '' $ac_executable_extensions; do
- { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
+ as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
'mkdir (GNU coreutils) '* | \
'mkdir (coreutils) '* | \
@@ -3473,6 +3538,7 @@ IFS=$as_save_IFS
fi
+ test -d ./--version && rmdir ./--version
if test "${ac_cv_path_mkdir+set}" = set; then
MKDIR_P="$ac_cv_path_mkdir -p"
else
@@ -3480,26 +3546,19 @@ fi
# value for MKDIR_P within a source directory, because that will
# break other packages using the cache if that directory is
# removed, or if the value is a relative name.
- test -d ./--version && rmdir ./--version
MKDIR_P="$ac_install_sh -d"
fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
$as_echo "$MKDIR_P" >&6; }
-mkdir_p="$MKDIR_P"
-case $mkdir_p in
- [\\/$]* | ?:[\\/]*) ;;
- */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
-esac
-
for ac_prog in gawk mawk nawk awk
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_AWK+set}" = set; then :
+if ${ac_cv_prog_AWK+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$AWK"; then
@@ -3511,7 +3570,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_AWK="$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -3539,7 +3598,7 @@ done
$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
set x ${MAKE-make}
ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
$as_echo_n "(cached) " >&6
else
cat >conftest.make <<\_ACEOF
@@ -3547,7 +3606,7 @@ SHELL = /bin/sh
all:
@echo '@@@%%%=$(MAKE)=@@@%%%'
_ACEOF
-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
case `${MAKE-make} -f conftest.make 2>/dev/null` in
*@@@%%%=?*=@@@%%%*)
eval ac_cv_prog_make_${ac_make}_set=yes;;
@@ -3575,13 +3634,52 @@ else
fi
rmdir .tst 2>/dev/null
+# Check whether --enable-silent-rules was given.
+if test "${enable_silent_rules+set}" = set; then :
+ enableval=$enable_silent_rules;
+fi
+
+case $enable_silent_rules in # (((
+ yes) AM_DEFAULT_VERBOSITY=0;;
+ no) AM_DEFAULT_VERBOSITY=1;;
+ *) AM_DEFAULT_VERBOSITY=1;;
+esac
+am_make=${MAKE-make}
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
+$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
+if ${am_cv_make_support_nested_variables+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ if $as_echo 'TRUE=$(BAR$(V))
+BAR0=false
+BAR1=true
+V=1
+am__doit:
+ @$(TRUE)
+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
+ am_cv_make_support_nested_variables=yes
+else
+ am_cv_make_support_nested_variables=no
+fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
+$as_echo "$am_cv_make_support_nested_variables" >&6; }
+if test $am_cv_make_support_nested_variables = yes; then
+ AM_V='$(V)'
+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
+else
+ AM_V=$AM_DEFAULT_VERBOSITY
+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
+fi
+AM_BACKSLASH='\'
+
if test "`cd $srcdir && pwd`" != "`pwd`"; then
# Use -I$(srcdir) only when $(srcdir) != ., so that make's output
# is not polluted with repeated "-I."
am__isrc=' -I$(srcdir)'
# test to see if srcdir already configured
if test -f $srcdir/config.status; then
- as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
+ as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
fi
fi
@@ -3616,12 +3714,22 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
-# We need awk for the "check" target. The system "awk" is bad on
-# some platforms.
+# For better backward compatibility. To be removed once Automake 1.9.x
+# dies out for good. For more background, see:
+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
+mkdir_p='$(MKDIR_P)'
+
+# We need awk for the "check" target (and possibly the TAP driver). The
+# system "awk" is bad on some platforms.
# Always define AMTAR for backward compatibility. Yes, it's still used
# in the wild :-( We should find a proper way to deprecate it ...
AMTAR='$${TAR-tar}'
+
+# We'll loop over all known methods to create a tar archive until one works.
+_am_tools='gnutar pax cpio none'
+
am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
@@ -3629,6 +3737,49 @@ am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
+# POSIX will say in a future version that running "rm -f" with no argument
+# is OK; and we want to be able to make that assumption in our Makefile
+# recipes. So use an aggressive probe to check that the usage we want is
+# actually supported "in the wild" to an acceptable degree.
+# See automake bug#10828.
+# To make any issue more visible, cause the running configure to be aborted
+# by default if the 'rm' program in use doesn't match our expectations; the
+# user can still override this though.
+if rm -f && rm -fr && rm -rf; then : OK; else
+ cat >&2 <<'END'
+Oops!
+
+Your 'rm' program seems unable to run without file operands specified
+on the command line, even when the '-f' option is present. This is contrary
+to the behaviour of most rm programs out there, and not conforming with
+the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
+
+Please tell bug-automake@gnu.org about your system, including the value
+of your $PATH and any error possibly output before this message. This
+can help us improve future automake versions.
+
+END
+ if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
+ echo 'Configuration will proceed anyway, since you have set the' >&2
+ echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
+ echo >&2
+ else
+ cat >&2 <<'END'
+Aborting the configuration process, to ensure you take notice of the issue.
+
+You can download and install GNU coreutils to get an 'rm' implementation
+that behaves properly: <http://www.gnu.org/software/coreutils/>.
+
+If you want to complete the configuration process using your problematic
+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
+to "yes", and re-run configure.
+
+END
+ as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
+ fi
+fi
+
+
# -fno-builtin must be present here so that a non-conflicting form of
@@ -3646,7 +3797,7 @@ if test -n "$ac_tool_prefix"; then
set dummy ${ac_tool_prefix}gcc; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CC+set}" = set; then :
+if ${ac_cv_prog_CC+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$CC"; then
@@ -3658,7 +3809,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_CC="${ac_tool_prefix}gcc"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -3686,7 +3837,7 @@ if test -z "$ac_cv_prog_CC"; then
set dummy gcc; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_CC"; then
@@ -3698,7 +3849,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_CC="gcc"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -3739,7 +3890,7 @@ if test -z "$CC"; then
set dummy ${ac_tool_prefix}cc; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CC+set}" = set; then :
+if ${ac_cv_prog_CC+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$CC"; then
@@ -3751,7 +3902,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_CC="${ac_tool_prefix}cc"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -3779,7 +3930,7 @@ if test -z "$CC"; then
set dummy cc; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CC+set}" = set; then :
+if ${ac_cv_prog_CC+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$CC"; then
@@ -3792,7 +3943,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
ac_prog_rejected=yes
continue
@@ -3838,7 +3989,7 @@ if test -z "$CC"; then
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CC+set}" = set; then :
+if ${ac_cv_prog_CC+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$CC"; then
@@ -3850,7 +4001,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -3882,7 +4033,7 @@ do
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_CC"; then
@@ -3894,7 +4045,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_CC="$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -3936,8 +4087,8 @@ fi
test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "no acceptable C compiler found in \$PATH
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "no acceptable C compiler found in \$PATH
+See \`config.log' for more details" "$LINENO" 5; }
# Provide some information about the compiler.
$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
@@ -3958,8 +4109,8 @@ $as_echo "$ac_try_echo"; } >&5
... rest of stderr output deleted ...
10q' conftest.err >conftest.er1
cat conftest.er1 >&5
- rm -f conftest.er1 conftest.err
fi
+ rm -f conftest.er1 conftest.err
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }
done
@@ -4004,12 +4155,12 @@ main ()
}
_ACEOF
ac_clean_files_save=$ac_clean_files
-ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out conftest.out"
+ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
# Try to create an executable without -o first, disregard a.out.
# It will help us diagnose broken compilers, and finding out an intuition
# of exeext.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
-$as_echo_n "checking for C compiler default output file name... " >&6; }
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
+$as_echo_n "checking whether the C compiler works... " >&6; }
ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
# The possible output files:
@@ -4071,62 +4222,28 @@ test "$ac_cv_exeext" = no && ac_cv_exeext=
else
ac_file=''
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
-$as_echo "$ac_file" >&6; }
if test -z "$ac_file"; then :
- $as_echo "$as_me: failed program was:" >&5
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+$as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-{ as_fn_set_status 77
-as_fn_error "C compiler cannot create executables
-See \`config.log' for more details." "$LINENO" 5; }; }
+as_fn_error 77 "C compiler cannot create executables
+See \`config.log' for more details" "$LINENO" 5; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
+$as_echo_n "checking for C compiler default output file name... " >&6; }
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
+$as_echo "$ac_file" >&6; }
ac_exeext=$ac_cv_exeext
-# Check that the compiler produces executables we can run. If not, either
-# the compiler is broken, or we cross compile.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
-$as_echo_n "checking whether the C compiler works... " >&6; }
-# If not cross compiling, check that we can run a simple program.
-if test "$cross_compiling" != yes; then
- if { ac_try='./$ac_file'
- { { case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_try") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }; }; then
- cross_compiling=no
- else
- if test "$cross_compiling" = maybe; then
- cross_compiling=yes
- else
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run C compiled programs.
-If you meant to cross compile, use \`--host'.
-See \`config.log' for more details." "$LINENO" 5; }
- fi
- fi
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
-
-rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out conftest.out
+rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
ac_clean_files=$ac_clean_files_save
-# Check that the compiler produces executables we can run. If not, either
-# the compiler is broken, or we cross compile.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
-$as_echo_n "checking whether we are cross compiling... " >&6; }
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
-$as_echo "$cross_compiling" >&6; }
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
$as_echo_n "checking for suffix of executables... " >&6; }
if { { ac_try="$ac_link"
@@ -4156,20 +4273,79 @@ done
else
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot compute suffix of executables: cannot compile and link
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
+See \`config.log' for more details" "$LINENO" 5; }
fi
-rm -f conftest$ac_cv_exeext
+rm -f conftest conftest$ac_cv_exeext
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
$as_echo "$ac_cv_exeext" >&6; }
rm -f conftest.$ac_ext
EXEEXT=$ac_cv_exeext
ac_exeext=$EXEEXT
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <stdio.h>
+int
+main ()
+{
+FILE *f = fopen ("conftest.out", "w");
+ return ferror (f) || fclose (f) != 0;
+
+ ;
+ return 0;
+}
+_ACEOF
+ac_clean_files="$ac_clean_files conftest.out"
+# Check that the compiler produces executables we can run. If not, either
+# the compiler is broken, or we cross compile.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
+$as_echo_n "checking whether we are cross compiling... " >&6; }
+if test "$cross_compiling" != yes; then
+ { { ac_try="$ac_link"
+case "(($ac_try" in
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+ *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+ (eval "$ac_link") 2>&5
+ ac_status=$?
+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ test $ac_status = 0; }
+ if { ac_try='./conftest$ac_cv_exeext'
+ { { case "(($ac_try" in
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+ *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+ (eval "$ac_try") 2>&5
+ ac_status=$?
+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ test $ac_status = 0; }; }; then
+ cross_compiling=no
+ else
+ if test "$cross_compiling" = maybe; then
+ cross_compiling=yes
+ else
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "cannot run C compiled programs.
+If you meant to cross compile, use \`--host'.
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
+$as_echo "$cross_compiling" >&6; }
+
+rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
+ac_clean_files=$ac_clean_files_save
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
$as_echo_n "checking for suffix of object files... " >&6; }
-if test "${ac_cv_objext+set}" = set; then :
+if ${ac_cv_objext+:} false; then :
$as_echo_n "(cached) " >&6
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4209,8 +4385,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot compute suffix of object files: cannot compile
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot compute suffix of object files: cannot compile
+See \`config.log' for more details" "$LINENO" 5; }
fi
rm -f conftest.$ac_cv_objext conftest.$ac_ext
fi
@@ -4220,7 +4396,7 @@ OBJEXT=$ac_cv_objext
ac_objext=$OBJEXT
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
-if test "${ac_cv_c_compiler_gnu+set}" = set; then :
+if ${ac_cv_c_compiler_gnu+:} false; then :
$as_echo_n "(cached) " >&6
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4257,7 +4433,7 @@ ac_test_CFLAGS=${CFLAGS+set}
ac_save_CFLAGS=$CFLAGS
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
$as_echo_n "checking whether $CC accepts -g... " >&6; }
-if test "${ac_cv_prog_cc_g+set}" = set; then :
+if ${ac_cv_prog_cc_g+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_save_c_werror_flag=$ac_c_werror_flag
@@ -4335,7 +4511,7 @@ else
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
-if test "${ac_cv_prog_cc_c89+set}" = set; then :
+if ${ac_cv_prog_cc_c89+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_cv_prog_cc_c89=no
@@ -4344,8 +4520,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <stdarg.h>
#include <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
+struct stat;
/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
struct buf { int x; };
FILE * (*rcsopen) (struct buf *, struct stat *, int);
@@ -4430,6 +4605,65 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
+$as_echo_n "checking whether $CC understands -c and -o together... " >&6; }
+if ${am_cv_prog_cc_c_o+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+int
+main ()
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+ # Make sure it works both with $CC and with simple cc.
+ # Following AC_PROG_CC_C_O, we do the test twice because some
+ # compilers refuse to overwrite an existing .o file with -o,
+ # though they will create one.
+ am_cv_prog_cc_c_o=yes
+ for am_i in 1 2; do
+ if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5
+ ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } \
+ && test -f conftest2.$ac_objext; then
+ : OK
+ else
+ am_cv_prog_cc_c_o=no
+ break
+ fi
+ done
+ rm -f core conftest*
+ unset am_i
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
+$as_echo "$am_cv_prog_cc_c_o" >&6; }
+if test "$am_cv_prog_cc_c_o" != yes; then
+ # Losing compiler, so override with the script.
+ # FIXME: It is wrong to rewrite CC.
+ # But if we don't then we get into trouble of one sort or another.
+ # A longer-term fix would be to have automake use am__CC in this case,
+ # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
+ CC="$am_aux_dir/compile $CC"
+fi
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
@@ -4446,7 +4680,7 @@ if test -z "$CXX"; then
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_CXX+set}" = set; then :
+if ${ac_cv_prog_CXX+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$CXX"; then
@@ -4458,7 +4692,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -4490,7 +4724,7 @@ do
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then :
+if ${ac_cv_prog_ac_ct_CXX+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_CXX"; then
@@ -4502,7 +4736,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_CXX="$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -4560,15 +4794,15 @@ $as_echo "$ac_try_echo"; } >&5
... rest of stderr output deleted ...
10q' conftest.err >conftest.er1
cat conftest.er1 >&5
- rm -f conftest.er1 conftest.err
fi
+ rm -f conftest.er1 conftest.err
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }
done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
-if test "${ac_cv_cxx_compiler_gnu+set}" = set; then :
+if ${ac_cv_cxx_compiler_gnu+:} false; then :
$as_echo_n "(cached) " >&6
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4605,7 +4839,7 @@ ac_test_CXXFLAGS=${CXXFLAGS+set}
ac_save_CXXFLAGS=$CXXFLAGS
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
$as_echo_n "checking whether $CXX accepts -g... " >&6; }
-if test "${ac_cv_prog_cxx_g+set}" = set; then :
+if ${ac_cv_prog_cxx_g+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_save_cxx_werror_flag=$ac_cxx_werror_flag
@@ -4704,7 +4938,7 @@ if test -n "$CPP" && test -d "$CPP"; then
CPP=
fi
if test -z "$CPP"; then
- if test "${ac_cv_prog_CPP+set}" = set; then :
+ if ${ac_cv_prog_CPP+:} false; then :
$as_echo_n "(cached) " >&6
else
# Double quotes because CPP needs to be expanded
@@ -4734,7 +4968,7 @@ else
# Broken: fails on valid input.
continue
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
# OK, works on sane cases. Now check whether nonexistent headers
# can be detected and how.
@@ -4750,11 +4984,11 @@ else
ac_preproc_ok=:
break
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
done
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.i conftest.err conftest.$ac_ext
if $ac_preproc_ok; then :
break
fi
@@ -4793,7 +5027,7 @@ else
# Broken: fails on valid input.
continue
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
# OK, works on sane cases. Now check whether nonexistent headers
# can be detected and how.
@@ -4809,18 +5043,18 @@ else
ac_preproc_ok=:
break
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
done
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.i conftest.err conftest.$ac_ext
if $ac_preproc_ok; then :
else
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "C preprocessor \"$CPP\" fails sanity check
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
+See \`config.log' for more details" "$LINENO" 5; }
fi
ac_ext=c
@@ -4832,7 +5066,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
-if test "${ac_cv_path_GREP+set}" = set; then :
+if ${ac_cv_path_GREP+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -z "$GREP"; then
@@ -4846,7 +5080,7 @@ do
for ac_prog in grep ggrep; do
for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
- { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
+ as_fn_executable_p "$ac_path_GREP" || continue
# Check for GNU ac_path_GREP and select it if it is found.
# Check for GNU $ac_path_GREP
case `"$ac_path_GREP" --version 2>&1` in
@@ -4881,7 +5115,7 @@ esac
done
IFS=$as_save_IFS
if test -z "$ac_cv_path_GREP"; then
- as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+ as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
fi
else
ac_cv_path_GREP=$GREP
@@ -4895,7 +5129,7 @@ $as_echo "$ac_cv_path_GREP" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
$as_echo_n "checking for egrep... " >&6; }
-if test "${ac_cv_path_EGREP+set}" = set; then :
+if ${ac_cv_path_EGREP+:} false; then :
$as_echo_n "(cached) " >&6
else
if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
@@ -4912,7 +5146,7 @@ do
for ac_prog in egrep; do
for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
- { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
+ as_fn_executable_p "$ac_path_EGREP" || continue
# Check for GNU ac_path_EGREP and select it if it is found.
# Check for GNU $ac_path_EGREP
case `"$ac_path_EGREP" --version 2>&1` in
@@ -4947,7 +5181,7 @@ esac
done
IFS=$as_save_IFS
if test -z "$ac_cv_path_EGREP"; then
- as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+ as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
fi
else
ac_cv_path_EGREP=$EGREP
@@ -5025,7 +5259,7 @@ fi
set dummy ${ac_tool_prefix}as; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_AS+set}" = set; then :
+if ${ac_cv_prog_AS+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$AS"; then
@@ -5037,7 +5271,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_AS="${ac_tool_prefix}as"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -5065,7 +5299,7 @@ if test -z "$ac_cv_prog_AS"; then
set dummy as; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_AS+set}" = set; then :
+if ${ac_cv_prog_ac_ct_AS+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_AS"; then
@@ -5077,7 +5311,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_AS="as"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -5117,7 +5351,7 @@ fi
set dummy ${ac_tool_prefix}ar; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_AR+set}" = set; then :
+if ${ac_cv_prog_AR+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$AR"; then
@@ -5129,7 +5363,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_AR="${ac_tool_prefix}ar"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -5157,7 +5391,7 @@ if test -z "$ac_cv_prog_AR"; then
set dummy ar; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_AR+set}" = set; then :
+if ${ac_cv_prog_ac_ct_AR+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_AR"; then
@@ -5169,7 +5403,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_AR="ar"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -5209,7 +5443,7 @@ fi
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_RANLIB+set}" = set; then :
+if ${ac_cv_prog_RANLIB+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$RANLIB"; then
@@ -5221,7 +5455,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -5249,7 +5483,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
set dummy ranlib; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_RANLIB"; then
@@ -5261,7 +5495,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_RANLIB="ranlib"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -5478,7 +5712,7 @@ esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
$as_echo_n "checking for a sed that does not truncate output... " >&6; }
-if test "${ac_cv_path_SED+set}" = set; then :
+if ${ac_cv_path_SED+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
@@ -5498,7 +5732,7 @@ do
for ac_prog in sed gsed; do
for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
- { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue
+ as_fn_executable_p "$ac_path_SED" || continue
# Check for GNU ac_path_SED and select it if it is found.
# Check for GNU $ac_path_SED
case `"$ac_path_SED" --version 2>&1` in
@@ -5533,7 +5767,7 @@ esac
done
IFS=$as_save_IFS
if test -z "$ac_cv_path_SED"; then
- as_fn_error "no acceptable sed could be found in \$PATH" "$LINENO" 5
+ as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5
fi
else
ac_cv_path_SED=$SED
@@ -5560,7 +5794,7 @@ Xsed="$SED -e 1s/^X//"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5
$as_echo_n "checking for fgrep... " >&6; }
-if test "${ac_cv_path_FGREP+set}" = set; then :
+if ${ac_cv_path_FGREP+:} false; then :
$as_echo_n "(cached) " >&6
else
if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1
@@ -5577,7 +5811,7 @@ do
for ac_prog in fgrep; do
for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext"
- { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue
+ as_fn_executable_p "$ac_path_FGREP" || continue
# Check for GNU ac_path_FGREP and select it if it is found.
# Check for GNU $ac_path_FGREP
case `"$ac_path_FGREP" --version 2>&1` in
@@ -5612,7 +5846,7 @@ esac
done
IFS=$as_save_IFS
if test -z "$ac_cv_path_FGREP"; then
- as_fn_error "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+ as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
fi
else
ac_cv_path_FGREP=$FGREP
@@ -5691,7 +5925,7 @@ else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
$as_echo_n "checking for non-GNU ld... " >&6; }
fi
-if test "${lt_cv_path_LD+set}" = set; then :
+if ${lt_cv_path_LD+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -z "$LD"; then
@@ -5728,10 +5962,10 @@ else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
-test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5
+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
-if test "${lt_cv_prog_gnu_ld+set}" = set; then :
+if ${lt_cv_prog_gnu_ld+:} false; then :
$as_echo_n "(cached) " >&6
else
# I'd rather use --version here, but apparently some GNU lds only accept -v.
@@ -5758,7 +5992,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5
$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; }
-if test "${lt_cv_path_NM+set}" = set; then :
+if ${lt_cv_path_NM+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$NM"; then
@@ -5821,7 +6055,7 @@ else
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_DUMPBIN+set}" = set; then :
+if ${ac_cv_prog_DUMPBIN+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$DUMPBIN"; then
@@ -5833,7 +6067,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -5865,7 +6099,7 @@ do
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then :
+if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_DUMPBIN"; then
@@ -5877,7 +6111,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_DUMPBIN="$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -5937,7 +6171,7 @@ test -z "$NM" && NM=nm
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5
$as_echo_n "checking the name lister ($NM) interface... " >&6; }
-if test "${lt_cv_nm_interface+set}" = set; then :
+if ${lt_cv_nm_interface+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_nm_interface="BSD nm"
@@ -5961,7 +6195,7 @@ $as_echo "$lt_cv_nm_interface" >&6; }
# find the maximum length of command line arguments
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5
$as_echo_n "checking the maximum length of command line arguments... " >&6; }
-if test "${lt_cv_sys_max_cmd_len+set}" = set; then :
+if ${lt_cv_sys_max_cmd_len+:} false; then :
$as_echo_n "(cached) " >&6
else
i=0
@@ -6158,7 +6392,7 @@ esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5
$as_echo_n "checking for $LD option to reload object files... " >&6; }
-if test "${lt_cv_ld_reload_flag+set}" = set; then :
+if ${lt_cv_ld_reload_flag+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_ld_reload_flag='-r'
@@ -6194,7 +6428,7 @@ if test -n "$ac_tool_prefix"; then
set dummy ${ac_tool_prefix}objdump; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_OBJDUMP+set}" = set; then :
+if ${ac_cv_prog_OBJDUMP+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$OBJDUMP"; then
@@ -6206,7 +6440,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -6234,7 +6468,7 @@ if test -z "$ac_cv_prog_OBJDUMP"; then
set dummy objdump; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then :
+if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_OBJDUMP"; then
@@ -6246,7 +6480,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_OBJDUMP="objdump"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -6293,7 +6527,7 @@ test -z "$OBJDUMP" && OBJDUMP=objdump
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5
$as_echo_n "checking how to recognize dependent libraries... " >&6; }
-if test "${lt_cv_deplibs_check_method+set}" = set; then :
+if ${lt_cv_deplibs_check_method+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_file_magic_cmd='$MAGIC_CMD'
@@ -6514,7 +6748,7 @@ if test -n "$ac_tool_prefix"; then
set dummy ${ac_tool_prefix}ar; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_AR+set}" = set; then :
+if ${ac_cv_prog_AR+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$AR"; then
@@ -6526,7 +6760,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_AR="${ac_tool_prefix}ar"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -6554,7 +6788,7 @@ if test -z "$ac_cv_prog_AR"; then
set dummy ar; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_AR+set}" = set; then :
+if ${ac_cv_prog_ac_ct_AR+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_AR"; then
@@ -6566,7 +6800,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_AR="ar"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -6619,7 +6853,7 @@ if test -n "$ac_tool_prefix"; then
set dummy ${ac_tool_prefix}strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_STRIP+set}" = set; then :
+if ${ac_cv_prog_STRIP+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$STRIP"; then
@@ -6631,7 +6865,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -6659,7 +6893,7 @@ if test -z "$ac_cv_prog_STRIP"; then
set dummy strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_STRIP"; then
@@ -6671,7 +6905,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_STRIP="strip"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -6718,7 +6952,7 @@ if test -n "$ac_tool_prefix"; then
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_RANLIB+set}" = set; then :
+if ${ac_cv_prog_RANLIB+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$RANLIB"; then
@@ -6730,7 +6964,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -6758,7 +6992,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
set dummy ranlib; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_RANLIB"; then
@@ -6770,7 +7004,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_RANLIB="ranlib"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -6887,7 +7121,7 @@ compiler=$CC
# Check for command to grab the raw symbol name followed by C symbol from nm.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5
$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }
-if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then :
+if ${lt_cv_sys_global_symbol_pipe+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -7271,7 +7505,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
CFLAGS="$CFLAGS -belf"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5
$as_echo_n "checking whether the C compiler needs -belf... " >&6; }
-if test "${lt_cv_cc_needs_belf+set}" = set; then :
+if ${lt_cv_cc_needs_belf+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_ext=c
@@ -7281,7 +7515,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
ac_compiler_gnu=$ac_cv_c_compiler_gnu
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -7350,7 +7584,7 @@ need_locks="$enable_libtool_lock"
set dummy ${ac_tool_prefix}dsymutil; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_DSYMUTIL+set}" = set; then :
+if ${ac_cv_prog_DSYMUTIL+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$DSYMUTIL"; then
@@ -7362,7 +7596,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7390,7 +7624,7 @@ if test -z "$ac_cv_prog_DSYMUTIL"; then
set dummy dsymutil; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then :
+if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_DSYMUTIL"; then
@@ -7402,7 +7636,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_DSYMUTIL="dsymutil"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7442,7 +7676,7 @@ fi
set dummy ${ac_tool_prefix}nmedit; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_NMEDIT+set}" = set; then :
+if ${ac_cv_prog_NMEDIT+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$NMEDIT"; then
@@ -7454,7 +7688,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7482,7 +7716,7 @@ if test -z "$ac_cv_prog_NMEDIT"; then
set dummy nmedit; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then :
+if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_NMEDIT"; then
@@ -7494,7 +7728,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_NMEDIT="nmedit"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7534,7 +7768,7 @@ fi
set dummy ${ac_tool_prefix}lipo; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_LIPO+set}" = set; then :
+if ${ac_cv_prog_LIPO+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$LIPO"; then
@@ -7546,7 +7780,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_LIPO="${ac_tool_prefix}lipo"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7574,7 +7808,7 @@ if test -z "$ac_cv_prog_LIPO"; then
set dummy lipo; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then :
+if ${ac_cv_prog_ac_ct_LIPO+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_LIPO"; then
@@ -7586,7 +7820,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_LIPO="lipo"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7626,7 +7860,7 @@ fi
set dummy ${ac_tool_prefix}otool; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_OTOOL+set}" = set; then :
+if ${ac_cv_prog_OTOOL+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$OTOOL"; then
@@ -7638,7 +7872,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_OTOOL="${ac_tool_prefix}otool"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7666,7 +7900,7 @@ if test -z "$ac_cv_prog_OTOOL"; then
set dummy otool; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then :
+if ${ac_cv_prog_ac_ct_OTOOL+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_OTOOL"; then
@@ -7678,7 +7912,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_OTOOL="otool"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7718,7 +7952,7 @@ fi
set dummy ${ac_tool_prefix}otool64; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_OTOOL64+set}" = set; then :
+if ${ac_cv_prog_OTOOL64+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$OTOOL64"; then
@@ -7730,7 +7964,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7758,7 +7992,7 @@ if test -z "$ac_cv_prog_OTOOL64"; then
set dummy otool64; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then :
+if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$ac_ct_OTOOL64"; then
@@ -7770,7 +8004,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_OTOOL64="otool64"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -7833,7 +8067,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5
$as_echo_n "checking for -single_module linker flag... " >&6; }
-if test "${lt_cv_apple_cc_single_mod+set}" = set; then :
+if ${lt_cv_apple_cc_single_mod+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_apple_cc_single_mod=no
@@ -7862,7 +8096,7 @@ fi
$as_echo "$lt_cv_apple_cc_single_mod" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5
$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
-if test "${lt_cv_ld_exported_symbols_list+set}" = set; then :
+if ${lt_cv_ld_exported_symbols_list+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_ld_exported_symbols_list=no
@@ -7870,7 +8104,7 @@ else
echo "_main" > conftest.sym
LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -7897,7 +8131,7 @@ fi
$as_echo "$lt_cv_ld_exported_symbols_list" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5
$as_echo_n "checking for -force_load linker flag... " >&6; }
-if test "${lt_cv_ld_force_load+set}" = set; then :
+if ${lt_cv_ld_force_load+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_ld_force_load=no
@@ -7962,7 +8196,7 @@ $as_echo "$lt_cv_ld_force_load" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
$as_echo_n "checking for ANSI C header files... " >&6; }
-if test "${ac_cv_header_stdc+set}" = set; then :
+if ${ac_cv_header_stdc+:} false; then :
$as_echo_n "(cached) " >&6
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8079,8 +8313,7 @@ do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
"
-eval as_val=\$$as_ac_Header
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
@@ -8094,7 +8327,7 @@ for ac_header in dlfcn.h
do :
ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default
"
-if test "x$ac_cv_header_dlfcn_h" = x""yes; then :
+if test "x$ac_cv_header_dlfcn_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_DLFCN_H 1
_ACEOF
@@ -8280,7 +8513,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5
$as_echo_n "checking for objdir... " >&6; }
-if test "${lt_cv_objdir+set}" = set; then :
+if ${lt_cv_objdir+:} false; then :
$as_echo_n "(cached) " >&6
else
rm -f .libs 2>/dev/null
@@ -8358,7 +8591,7 @@ file_magic*)
if test "$file_magic_cmd" = '$MAGIC_CMD'; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5
$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }
-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :
+if ${lt_cv_path_MAGIC_CMD+:} false; then :
$as_echo_n "(cached) " >&6
else
case $MAGIC_CMD in
@@ -8424,7 +8657,7 @@ if test -z "$lt_cv_path_MAGIC_CMD"; then
if test -n "$ac_tool_prefix"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5
$as_echo_n "checking for file... " >&6; }
-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :
+if ${lt_cv_path_MAGIC_CMD+:} false; then :
$as_echo_n "(cached) " >&6
else
case $MAGIC_CMD in
@@ -8566,7 +8799,7 @@ if test "$GCC" = yes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
-if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then :
+if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler_rtti_exceptions=no
@@ -8919,7 +9152,7 @@ $as_echo "$lt_prog_compiler_pic" >&6; }
if test -n "$lt_prog_compiler_pic"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }
-if test "${lt_cv_prog_compiler_pic_works+set}" = set; then :
+if ${lt_cv_prog_compiler_pic_works+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler_pic_works=no
@@ -8978,7 +9211,7 @@ fi
wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
-if test "${lt_cv_prog_compiler_static_works+set}" = set; then :
+if ${lt_cv_prog_compiler_static_works+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler_static_works=no
@@ -9021,7 +9254,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
-if test "${lt_cv_prog_compiler_c_o+set}" = set; then :
+if ${lt_cv_prog_compiler_c_o+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler_c_o=no
@@ -9076,7 +9309,7 @@ $as_echo "$lt_cv_prog_compiler_c_o" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
-if test "${lt_cv_prog_compiler_c_o+set}" = set; then :
+if ${lt_cv_prog_compiler_c_o+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler_c_o=no
@@ -9638,7 +9871,7 @@ _LT_EOF
# Determine the default libpath from the value encoded in an
# empty executable.
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -9681,7 +9914,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
# Determine the default libpath from the value encoded in an
# empty executable.
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -9898,7 +10131,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
# (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5
$as_echo_n "checking if $CC understands -b... " >&6; }
-if test "${lt_cv_prog_compiler__b+set}" = set; then :
+if ${lt_cv_prog_compiler__b+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler__b=no
@@ -9967,7 +10200,7 @@ fi
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -10273,7 +10506,7 @@ x|xyes)
# to ld, don't add -lc before -lgcc.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
-if test "${lt_cv_archive_cmds_need_lc+set}" = set; then :
+if ${lt_cv_archive_cmds_need_lc+:} false; then :
$as_echo_n "(cached) " >&6
else
$RM conftest*
@@ -10911,7 +11144,7 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu)
shlibpath_overrides_runpath=no
# Some binutils ld are patched to set DT_RUNPATH
- if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :
+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_shlibpath_overrides_runpath=no
@@ -10920,7 +11153,7 @@ else
eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \
LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\""
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -11334,13 +11567,13 @@ else
# if libdl is installed we need to link against it
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
$as_echo_n "checking for dlopen in -ldl... " >&6; }
-if test "${ac_cv_lib_dl_dlopen+set}" = set; then :
+if ${ac_cv_lib_dl_dlopen+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldl $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -11371,7 +11604,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
-if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :
+if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
else
@@ -11385,18 +11618,18 @@ fi
*)
ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load"
-if test "x$ac_cv_func_shl_load" = x""yes; then :
+if test "x$ac_cv_func_shl_load" = xyes; then :
lt_cv_dlopen="shl_load"
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
$as_echo_n "checking for shl_load in -ldld... " >&6; }
-if test "${ac_cv_lib_dld_shl_load+set}" = set; then :
+if ${ac_cv_lib_dld_shl_load+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldld $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -11427,22 +11660,22 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
$as_echo "$ac_cv_lib_dld_shl_load" >&6; }
-if test "x$ac_cv_lib_dld_shl_load" = x""yes; then :
+if test "x$ac_cv_lib_dld_shl_load" = xyes; then :
lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
else
ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
-if test "x$ac_cv_func_dlopen" = x""yes; then :
+if test "x$ac_cv_func_dlopen" = xyes; then :
lt_cv_dlopen="dlopen"
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
$as_echo_n "checking for dlopen in -ldl... " >&6; }
-if test "${ac_cv_lib_dl_dlopen+set}" = set; then :
+if ${ac_cv_lib_dl_dlopen+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldl $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -11473,18 +11706,18 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
-if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :
+if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5
$as_echo_n "checking for dlopen in -lsvld... " >&6; }
-if test "${ac_cv_lib_svld_dlopen+set}" = set; then :
+if ${ac_cv_lib_svld_dlopen+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lsvld $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -11515,18 +11748,18 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5
$as_echo "$ac_cv_lib_svld_dlopen" >&6; }
-if test "x$ac_cv_lib_svld_dlopen" = x""yes; then :
+if test "x$ac_cv_lib_svld_dlopen" = xyes; then :
lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5
$as_echo_n "checking for dld_link in -ldld... " >&6; }
-if test "${ac_cv_lib_dld_dld_link+set}" = set; then :
+if ${ac_cv_lib_dld_dld_link+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldld $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -11557,7 +11790,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5
$as_echo "$ac_cv_lib_dld_dld_link" >&6; }
-if test "x$ac_cv_lib_dld_dld_link" = x""yes; then :
+if test "x$ac_cv_lib_dld_dld_link" = xyes; then :
lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
fi
@@ -11598,7 +11831,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5
$as_echo_n "checking whether a program can dlopen itself... " >&6; }
-if test "${lt_cv_dlopen_self+set}" = set; then :
+if ${lt_cv_dlopen_self+:} false; then :
$as_echo_n "(cached) " >&6
else
if test "$cross_compiling" = yes; then :
@@ -11607,7 +11840,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11610 "configure"
+#line 11843 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11704,7 +11937,7 @@ $as_echo "$lt_cv_dlopen_self" >&6; }
wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5
$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
-if test "${lt_cv_dlopen_self_static+set}" = set; then :
+if ${lt_cv_dlopen_self_static+:} false; then :
$as_echo_n "(cached) " >&6
else
if test "$cross_compiling" = yes; then :
@@ -11713,7 +11946,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11716 "configure"
+#line 11949 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11941,7 +12174,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5
$as_echo_n "checking how to run the C++ preprocessor... " >&6; }
if test -z "$CXXCPP"; then
- if test "${ac_cv_prog_CXXCPP+set}" = set; then :
+ if ${ac_cv_prog_CXXCPP+:} false; then :
$as_echo_n "(cached) " >&6
else
# Double quotes because CXXCPP needs to be expanded
@@ -11971,7 +12204,7 @@ else
# Broken: fails on valid input.
continue
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
# OK, works on sane cases. Now check whether nonexistent headers
# can be detected and how.
@@ -11987,11 +12220,11 @@ else
ac_preproc_ok=:
break
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
done
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.i conftest.err conftest.$ac_ext
if $ac_preproc_ok; then :
break
fi
@@ -12030,7 +12263,7 @@ else
# Broken: fails on valid input.
continue
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
# OK, works on sane cases. Now check whether nonexistent headers
# can be detected and how.
@@ -12046,18 +12279,18 @@ else
ac_preproc_ok=:
break
fi
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.i conftest.$ac_ext
done
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.err conftest.$ac_ext
+rm -f conftest.i conftest.err conftest.$ac_ext
if $ac_preproc_ok; then :
else
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "C++ preprocessor \"$CXXCPP\" fails sanity check
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check
+See \`config.log' for more details" "$LINENO" 5; }
fi
ac_ext=c
@@ -12242,7 +12475,7 @@ else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
$as_echo_n "checking for non-GNU ld... " >&6; }
fi
-if test "${lt_cv_path_LD+set}" = set; then :
+if ${lt_cv_path_LD+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -z "$LD"; then
@@ -12279,10 +12512,10 @@ else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
-test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5
+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
-if test "${lt_cv_prog_gnu_ld+set}" = set; then :
+if ${lt_cv_prog_gnu_ld+:} false; then :
$as_echo_n "(cached) " >&6
else
# I'd rather use --version here, but apparently some GNU lds only accept -v.
@@ -12452,7 +12685,7 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
# Determine the default libpath from the value encoded in an empty
# executable.
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -12496,7 +12729,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
# Determine the default libpath from the value encoded in an
# empty executable.
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -13835,7 +14068,7 @@ $as_echo "$lt_prog_compiler_pic_CXX" >&6; }
if test -n "$lt_prog_compiler_pic_CXX"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5
$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; }
-if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then :
+if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler_pic_works_CXX=no
@@ -13891,7 +14124,7 @@ fi
wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
-if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then :
+if ${lt_cv_prog_compiler_static_works_CXX+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler_static_works_CXX=no
@@ -13931,7 +14164,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
-if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then :
+if ${lt_cv_prog_compiler_c_o_CXX+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler_c_o_CXX=no
@@ -13983,7 +14216,7 @@ $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
-if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then :
+if ${lt_cv_prog_compiler_c_o_CXX+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_prog_compiler_c_o_CXX=no
@@ -14116,7 +14349,7 @@ x|xyes)
# to ld, don't add -lc before -lgcc.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
-if test "${lt_cv_archive_cmds_need_lc_CXX+set}" = set; then :
+if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then :
$as_echo_n "(cached) " >&6
else
$RM conftest*
@@ -14595,7 +14828,7 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu)
shlibpath_overrides_runpath=no
# Some binutils ld are patched to set DT_RUNPATH
- if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :
+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
$as_echo_n "(cached) " >&6
else
lt_cv_shlibpath_overrides_runpath=no
@@ -14604,7 +14837,7 @@ else
eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \
LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\""
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -15108,7 +15341,7 @@ if test "${enable_libstdcxx_pch+set}" = set; then :
enableval=$enable_libstdcxx_pch;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable libstdcxx-pch must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable libstdcxx-pch must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -15119,7 +15352,7 @@ fi
if test $enable_libstdcxx_pch = yes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for compiler with PCH support" >&5
$as_echo_n "checking for compiler with PCH support... " >&6; }
-if test "${glibcxx_cv_prog_CXX_pch+set}" = set; then :
+if ${glibcxx_cv_prog_CXX_pch+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_save_CXXFLAGS="$CXXFLAGS"
@@ -15223,12 +15456,12 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for bool" >&5
$as_echo_n "checking for atomic builtins for bool... " >&6; }
- if test "${glibcxx_cv_atomic_bool+set}" = set; then :
+ if ${glibcxx_cv_atomic_bool+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -15265,12 +15498,12 @@ $as_echo "$glibcxx_cv_atomic_bool" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for short" >&5
$as_echo_n "checking for atomic builtins for short... " >&6; }
- if test "${glibcxx_cv_atomic_short+set}" = set; then :
+ if ${glibcxx_cv_atomic_short+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -15307,12 +15540,12 @@ $as_echo "$glibcxx_cv_atomic_short" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for int" >&5
$as_echo_n "checking for atomic builtins for int... " >&6; }
- if test "${glibcxx_cv_atomic_int+set}" = set; then :
+ if ${glibcxx_cv_atomic_int+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -15349,12 +15582,12 @@ $as_echo "$glibcxx_cv_atomic_int" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for long long" >&5
$as_echo_n "checking for atomic builtins for long long... " >&6; }
- if test "${glibcxx_cv_atomic_long_long+set}" = set; then :
+ if ${glibcxx_cv_atomic_long_long+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -15399,7 +15632,7 @@ $as_echo "$glibcxx_cv_atomic_long_long" >&6; }
# Fake what AC_TRY_COMPILE does.
cat > conftest.$ac_ext << EOF
-#line 15402 "configure"
+#line 15635 "configure"
int main()
{
typedef bool atomic_type;
@@ -15434,7 +15667,7 @@ $as_echo "$glibcxx_cv_atomic_bool" >&6; }
rm -f conftest*
cat > conftest.$ac_ext << EOF
-#line 15437 "configure"
+#line 15670 "configure"
int main()
{
typedef short atomic_type;
@@ -15469,7 +15702,7 @@ $as_echo "$glibcxx_cv_atomic_short" >&6; }
rm -f conftest*
cat > conftest.$ac_ext << EOF
-#line 15472 "configure"
+#line 15705 "configure"
int main()
{
// NB: _Atomic_word not necessarily int.
@@ -15505,7 +15738,7 @@ $as_echo "$glibcxx_cv_atomic_int" >&6; }
rm -f conftest*
cat > conftest.$ac_ext << EOF
-#line 15508 "configure"
+#line 15741 "configure"
int main()
{
typedef long long atomic_type;
@@ -15586,7 +15819,7 @@ $as_echo "$as_me: WARNING: Performance of certain classes will degrade as a resu
# unnecessary for this test.
cat > conftest.$ac_ext << EOF
-#line 15589 "configure"
+#line 15822 "configure"
int main()
{
_Decimal32 d1;
@@ -15628,7 +15861,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
# unnecessary for this test.
cat > conftest.$ac_ext << EOF
-#line 15631 "configure"
+#line 15864 "configure"
template<typename T1, typename T2>
struct same
{ typedef T2 type; };
@@ -15662,7 +15895,7 @@ $as_echo "$enable_int128" >&6; }
rm -f conftest*
cat > conftest.$ac_ext << EOF
-#line 15665 "configure"
+#line 15898 "configure"
template<typename T1, typename T2>
struct same
{ typedef T2 type; };
@@ -15770,7 +16003,7 @@ if test "${enable_cstdio+set}" = set; then :
enableval=$enable_cstdio;
case "$enableval" in
stdio) ;;
- *) as_fn_error "Unknown argument to enable/disable cstdio" "$LINENO" 5 ;;
+ *) as_fn_error $? "Unknown argument to enable/disable cstdio" "$LINENO" 5 ;;
esac
else
@@ -15802,7 +16035,7 @@ if test "${enable_clocale+set}" = set; then :
enableval=$enable_clocale;
case "$enableval" in
generic|gnu|ieee_1003.1-2001|newlib|yes|no|auto) ;;
- *) as_fn_error "Unknown argument to enable/disable clocale" "$LINENO" 5 ;;
+ *) as_fn_error $? "Unknown argument to enable/disable clocale" "$LINENO" 5 ;;
esac
else
@@ -16019,7 +16252,7 @@ $as_echo "gnu" >&6; }
set dummy msgfmt; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_check_msgfmt+set}" = set; then :
+if ${ac_cv_prog_check_msgfmt+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$check_msgfmt"; then
@@ -16031,7 +16264,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_check_msgfmt="yes"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -16123,7 +16356,7 @@ $as_echo "newlib" >&6; }
for ac_header in libintl.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default"
-if test "x$ac_cv_header_libintl_h" = x""yes; then :
+if test "x$ac_cv_header_libintl_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LIBINTL_H 1
_ACEOF
@@ -16136,7 +16369,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gettext" >&5
$as_echo_n "checking for library containing gettext... " >&6; }
-if test "${ac_cv_search_gettext+set}" = set; then :
+if ${ac_cv_search_gettext+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_func_search_save_LIBS=$LIBS
@@ -16166,18 +16399,18 @@ for ac_lib in '' intl; do
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
fi
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
if ac_fn_c_try_link "$LINENO"; then :
ac_cv_search_gettext=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext
- if test "${ac_cv_search_gettext+set}" = set; then :
+ if ${ac_cv_search_gettext+:} false; then :
break
fi
done
-if test "${ac_cv_search_gettext+set}" = set; then :
+if ${ac_cv_search_gettext+:} false; then :
else
ac_cv_search_gettext=no
@@ -16224,7 +16457,7 @@ if test "${enable_libstdcxx_allocator+set}" = set; then :
enableval=$enable_libstdcxx_allocator;
case "$enableval" in
new|malloc|mt|bitmap|pool|yes|no|auto) ;;
- *) as_fn_error "Unknown argument to enable/disable libstdcxx-allocator" "$LINENO" 5 ;;
+ *) as_fn_error $? "Unknown argument to enable/disable libstdcxx-allocator" "$LINENO" 5 ;;
esac
else
@@ -16296,7 +16529,7 @@ if test "${enable_cheaders+set}" = set; then :
enableval=$enable_cheaders;
case "$enableval" in
c|c_std|c_global) ;;
- *) as_fn_error "Unknown argument to enable/disable cheaders" "$LINENO" 5 ;;
+ *) as_fn_error $? "Unknown argument to enable/disable cheaders" "$LINENO" 5 ;;
esac
else
@@ -16325,7 +16558,7 @@ if test "${enable_long_long+set}" = set; then :
enableval=$enable_long_long;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable long-long must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable long-long must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -16349,7 +16582,7 @@ if test "${enable_wchar_t+set}" = set; then :
enableval=$enable_wchar_t;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable wchar_t must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable wchar_t must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -16362,7 +16595,7 @@ fi
for ac_header in wchar.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "wchar.h" "ac_cv_header_wchar_h" "$ac_includes_default"
-if test "x$ac_cv_header_wchar_h" = x""yes; then :
+if test "x$ac_cv_header_wchar_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_WCHAR_H 1
_ACEOF
@@ -16405,7 +16638,7 @@ $as_echo "#define HAVE_MBSTATE_T 1" >>confdefs.h
for ac_header in wctype.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "wctype.h" "ac_cv_header_wctype_h" "$ac_includes_default"
-if test "x$ac_cv_header_wctype_h" = x""yes; then :
+if test "x$ac_cv_header_wctype_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_WCTYPE_H 1
_ACEOF
@@ -16537,7 +16770,7 @@ if test "${enable_c99+set}" = set; then :
enableval=$enable_c99;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable c99 must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable c99 must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -16569,13 +16802,13 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
CXXFLAGS="$CXXFLAGS -fno-exceptions"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -16606,7 +16839,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
LIBS="$LIBS -lm"
else
@@ -16620,7 +16853,7 @@ fi
# Check for the existence of <math.h> functions used if C99 is enabled.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <math.h> for C++98" >&5
$as_echo_n "checking for ISO C99 support in <math.h> for C++98... " >&6; }
- if test "${glibcxx_cv_c99_math_cxx98+set}" = set; then :
+ if ${glibcxx_cv_c99_math_cxx98+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -16659,7 +16892,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -16713,7 +16946,7 @@ $as_echo "#define _GLIBCXX98_USE_C99_MATH 1" >>confdefs.h
for ac_header in tgmath.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "tgmath.h" "ac_cv_header_tgmath_h" "$ac_includes_default"
-if test "x$ac_cv_header_tgmath_h" = x""yes; then :
+if test "x$ac_cv_header_tgmath_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_TGMATH_H 1
_ACEOF
@@ -16727,7 +16960,7 @@ done
for ac_header in complex.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "complex.h" "ac_cv_header_complex_h" "$ac_includes_default"
-if test "x$ac_cv_header_complex_h" = x""yes; then :
+if test "x$ac_cv_header_complex_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_COMPLEX_H 1
_ACEOF
@@ -16741,7 +16974,7 @@ done
if test x"$ac_has_complex_h" = x"yes"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <complex.h> for C++98" >&5
$as_echo_n "checking for ISO C99 support in <complex.h> for C++98... " >&6; }
- if test "${glibcxx_cv_c99_complex_cxx98+set}" = set; then :
+ if ${glibcxx_cv_c99_complex_cxx98+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -16813,7 +17046,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -16897,7 +17130,7 @@ $as_echo "#define _GLIBCXX98_USE_C99_COMPLEX 1" >>confdefs.h
# Check for the existence in <stdio.h> of vscanf, et. al.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <stdio.h> for C++98" >&5
$as_echo_n "checking for ISO C99 support in <stdio.h> for C++98... " >&6; }
- if test "${glibcxx_cv_c99_stdio_cxx98+set}" = set; then :
+ if ${glibcxx_cv_c99_stdio_cxx98+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -16931,7 +17164,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -16976,7 +17209,7 @@ $as_echo "#define _GLIBCXX98_USE_C99_STDIO 1" >>confdefs.h
# Check for the existence in <stdlib.h> of lldiv_t, et. al.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <stdlib.h> for C++98" >&5
$as_echo_n "checking for ISO C99 support in <stdlib.h> for C++98... " >&6; }
- if test "${glibcxx_cv_c99_stdlib_cxx98+set}" = set; then :
+ if ${glibcxx_cv_c99_stdlib_cxx98+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -17015,7 +17248,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -17067,7 +17300,7 @@ $as_echo "#define _GLIBCXX98_USE_C99_STDLIB 1" >>confdefs.h
test x"$ac_has_wctype_h" = xyes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <wchar.h> for C++98" >&5
$as_echo_n "checking for ISO C99 support in <wchar.h> for C++98... " >&6; }
- if test "${glibcxx_cv_c99_wchar_cxx98+set}" = set; then :
+ if ${glibcxx_cv_c99_wchar_cxx98+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -17250,13 +17483,13 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
CXXFLAGS="$CXXFLAGS -fno-exceptions"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -17287,7 +17520,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
LIBS="$LIBS -lm"
else
@@ -17301,7 +17534,7 @@ fi
# Check for the existence of <math.h> functions used if C99 is enabled.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <math.h> for C++11" >&5
$as_echo_n "checking for ISO C99 support in <math.h> for C++11... " >&6; }
- if test "${glibcxx_cv_c99_math_cxx11+set}" = set; then :
+ if ${glibcxx_cv_c99_math_cxx11+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -17340,7 +17573,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -17394,7 +17627,7 @@ $as_echo "#define _GLIBCXX11_USE_C99_MATH 1" >>confdefs.h
for ac_header in tgmath.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "tgmath.h" "ac_cv_header_tgmath_h" "$ac_includes_default"
-if test "x$ac_cv_header_tgmath_h" = x""yes; then :
+if test "x$ac_cv_header_tgmath_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_TGMATH_H 1
_ACEOF
@@ -17408,7 +17641,7 @@ done
for ac_header in complex.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "complex.h" "ac_cv_header_complex_h" "$ac_includes_default"
-if test "x$ac_cv_header_complex_h" = x""yes; then :
+if test "x$ac_cv_header_complex_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_COMPLEX_H 1
_ACEOF
@@ -17422,7 +17655,7 @@ done
if test x"$ac_has_complex_h" = x"yes"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <complex.h> for C++11" >&5
$as_echo_n "checking for ISO C99 support in <complex.h> for C++11... " >&6; }
- if test "${glibcxx_cv_c99_complex_cxx11+set}" = set; then :
+ if ${glibcxx_cv_c99_complex_cxx11+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -17494,7 +17727,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -17578,7 +17811,7 @@ $as_echo "#define _GLIBCXX11_USE_C99_COMPLEX 1" >>confdefs.h
# Check for the existence in <stdio.h> of vscanf, et. al.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <stdio.h> for C++11" >&5
$as_echo_n "checking for ISO C99 support in <stdio.h> for C++11... " >&6; }
- if test "${glibcxx_cv_c99_stdio_cxx11+set}" = set; then :
+ if ${glibcxx_cv_c99_stdio_cxx11+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -17612,7 +17845,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -17657,7 +17890,7 @@ $as_echo "#define _GLIBCXX11_USE_C99_STDIO 1" >>confdefs.h
# Check for the existence in <stdlib.h> of lldiv_t, et. al.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <stdlib.h> for C++11" >&5
$as_echo_n "checking for ISO C99 support in <stdlib.h> for C++11... " >&6; }
- if test "${glibcxx_cv_c99_stdlib_cxx11+set}" = set; then :
+ if ${glibcxx_cv_c99_stdlib_cxx11+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -17696,7 +17929,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -17748,7 +17981,7 @@ $as_echo "#define _GLIBCXX11_USE_C99_STDLIB 1" >>confdefs.h
test x"$ac_has_wctype_h" = xyes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in <wchar.h> for C++11" >&5
$as_echo_n "checking for ISO C99 support in <wchar.h> for C++11... " >&6; }
- if test "${glibcxx_cv_c99_wchar_cxx11+set}" = set; then :
+ if ${glibcxx_cv_c99_wchar_cxx11+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -17909,7 +18142,7 @@ if test "${enable_concept_checks+set}" = set; then :
enableval=$enable_concept_checks;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable concept-checks must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable concept-checks must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -17929,7 +18162,7 @@ if test "${enable_libstdcxx_debug_flags+set}" = set; then :
enableval=$enable_libstdcxx_debug_flags; case "x$enable_libstdcxx_debug_flags" in
xno | x) enable_libstdcxx_debug_flags= ;;
x-*) ;;
- *) as_fn_error "--enable-libstdcxx-debug-flags needs compiler flags as arguments" "$LINENO" 5 ;;
+ *) as_fn_error $? "--enable-libstdcxx-debug-flags needs compiler flags as arguments" "$LINENO" 5 ;;
esac
else
enable_libstdcxx_debug_flags="-gdwarf-4 -g3 -O0 -D_GLIBCXX_ASSERTIONS"
@@ -17952,7 +18185,7 @@ if test "${enable_libstdcxx_debug+set}" = set; then :
enableval=$enable_libstdcxx_debug;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable libstdcxx-debug must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable libstdcxx-debug must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -17989,7 +18222,7 @@ if test "${enable_cxx_flags+set}" = set; then :
enableval=$enable_cxx_flags; case "x$enable_cxx_flags" in
xno | x) enable_cxx_flags= ;;
x-*) ;;
- *) as_fn_error "--enable-cxx-flags needs compiler flags as arguments" "$LINENO" 5 ;;
+ *) as_fn_error $? "--enable-cxx-flags needs compiler flags as arguments" "$LINENO" 5 ;;
esac
else
enable_cxx_flags=
@@ -18005,7 +18238,7 @@ fi
-fhonor-std) ;;
-*) ;;
*) # and we're trying to pass /what/ exactly?
- as_fn_error "compiler flags start with a -" "$LINENO" 5 ;;
+ as_fn_error $? "compiler flags start with a -" "$LINENO" 5 ;;
esac
done
fi
@@ -18021,7 +18254,7 @@ if test "${enable_fully_dynamic_string+set}" = set; then :
enableval=$enable_fully_dynamic_string;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable fully-dynamic-string must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable fully-dynamic-string must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -18047,7 +18280,7 @@ if test "${enable_extern_template+set}" = set; then :
enableval=$enable_extern_template;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable extern-template must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable extern-template must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -18091,7 +18324,7 @@ if test "${enable_werror+set}" = set; then :
enableval=$enable_werror;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable werror must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable werror must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -18110,7 +18343,7 @@ if test "${enable_vtable_verify+set}" = set; then :
enableval=$enable_vtable_verify;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable vtable-verify must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable vtable-verify must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -18183,7 +18416,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gets declaration" >&5
$as_echo_n "checking for gets declaration... " >&6; }
- if test "${glibcxx_cv_gets+set}" = set; then :
+ if ${glibcxx_cv_gets+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18240,7 +18473,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
# 11996[67]-02 introduced the C++11 <math.h> floating point overloads.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++11 <math.h> floating point overloads" >&5
$as_echo_n "checking for C++11 <math.h> floating point overloads... " >&6; }
- if test "${glibcxx_cv_math11_fp_overload+set}" = set; then :
+ if ${glibcxx_cv_math11_fp_overload+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18278,7 +18511,7 @@ $as_echo "$glibcxx_cv_math11_fp_overload" >&6; }
# 11996[67]-02 introduced the C++11 <math.h> integral type overloads.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++11 <math.h> integral type overloads" >&5
$as_echo_n "checking for C++11 <math.h> integral type overloads... " >&6; }
- if test "${glibcxx_cv_math11_int_overload+set}" = set; then :
+ if ${glibcxx_cv_math11_int_overload+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18343,7 +18576,7 @@ $as_echo "$glibcxx_cv_math11_int_overload" >&6; }
# and must use the ones from <math.h> instead.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for obsolete isinf function in <math.h>" >&5
$as_echo_n "checking for obsolete isinf function in <math.h>... " >&6; }
- if test "${glibcxx_cv_obsolete_isinf+set}" = set; then :
+ if ${glibcxx_cv_obsolete_isinf+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18380,7 +18613,7 @@ $as_echo "#define HAVE_OBSOLETE_ISINF 1" >>confdefs.h
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for obsolete isnan function in <math.h>" >&5
$as_echo_n "checking for obsolete isnan function in <math.h>... " >&6; }
- if test "${glibcxx_cv_obsolete_isnan+set}" = set; then :
+ if ${glibcxx_cv_obsolete_isnan+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18429,7 +18662,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EOWNERDEAD" >&5
$as_echo_n "checking for EOWNERDEAD... " >&6; }
-if test "${glibcxx_cv_system_error1+set}" = set; then :
+if ${glibcxx_cv_system_error1+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18462,7 +18695,7 @@ $as_echo "#define HAVE_EOWNERDEAD 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENOTRECOVERABLE" >&5
$as_echo_n "checking for ENOTRECOVERABLE... " >&6; }
-if test "${glibcxx_cv_system_error2+set}" = set; then :
+if ${glibcxx_cv_system_error2+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18495,7 +18728,7 @@ $as_echo "#define HAVE_ENOTRECOVERABLE 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENOLINK" >&5
$as_echo_n "checking for ENOLINK... " >&6; }
-if test "${glibcxx_cv_system_error3+set}" = set; then :
+if ${glibcxx_cv_system_error3+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18528,7 +18761,7 @@ $as_echo "#define HAVE_ENOLINK 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EPROTO" >&5
$as_echo_n "checking for EPROTO... " >&6; }
-if test "${glibcxx_cv_system_error4+set}" = set; then :
+if ${glibcxx_cv_system_error4+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18561,7 +18794,7 @@ $as_echo "#define HAVE_EPROTO 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENODATA" >&5
$as_echo_n "checking for ENODATA... " >&6; }
-if test "${glibcxx_cv_system_error5+set}" = set; then :
+if ${glibcxx_cv_system_error5+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18594,7 +18827,7 @@ $as_echo "#define HAVE_ENODATA 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENOSR" >&5
$as_echo_n "checking for ENOSR... " >&6; }
-if test "${glibcxx_cv_system_error6+set}" = set; then :
+if ${glibcxx_cv_system_error6+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18627,7 +18860,7 @@ $as_echo "#define HAVE_ENOSR 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENOSTR" >&5
$as_echo_n "checking for ENOSTR... " >&6; }
-if test "${glibcxx_cv_system_error7+set}" = set; then :
+if ${glibcxx_cv_system_error7+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18660,7 +18893,7 @@ $as_echo "#define HAVE_ENOSTR 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ETIME" >&5
$as_echo_n "checking for ETIME... " >&6; }
-if test "${glibcxx_cv_system_error8+set}" = set; then :
+if ${glibcxx_cv_system_error8+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18693,7 +18926,7 @@ $as_echo "#define HAVE_ETIME 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EBADMSG" >&5
$as_echo_n "checking for EBADMSG... " >&6; }
-if test "${glibcxx_cv_system_error9+set}" = set; then :
+if ${glibcxx_cv_system_error9+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18726,7 +18959,7 @@ $as_echo "#define HAVE_EBADMSG 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ECANCELED" >&5
$as_echo_n "checking for ECANCELED... " >&6; }
-if test "${glibcxx_cv_system_error10+set}" = set; then :
+if ${glibcxx_cv_system_error10+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18759,7 +18992,7 @@ $as_echo "#define HAVE_ECANCELED 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EOVERFLOW" >&5
$as_echo_n "checking for EOVERFLOW... " >&6; }
-if test "${glibcxx_cv_system_error11+set}" = set; then :
+if ${glibcxx_cv_system_error11+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18792,7 +19025,7 @@ $as_echo "#define HAVE_EOVERFLOW 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENOTSUP" >&5
$as_echo_n "checking for ENOTSUP... " >&6; }
-if test "${glibcxx_cv_system_error12+set}" = set; then :
+if ${glibcxx_cv_system_error12+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18825,7 +19058,7 @@ $as_echo "#define HAVE_ENOTSUP 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EIDRM" >&5
$as_echo_n "checking for EIDRM... " >&6; }
-if test "${glibcxx_cv_system_error13+set}" = set; then :
+if ${glibcxx_cv_system_error13+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18858,7 +19091,7 @@ $as_echo "#define HAVE_EIDRM 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ETXTBSY" >&5
$as_echo_n "checking for ETXTBSY... " >&6; }
-if test "${glibcxx_cv_system_error14+set}" = set; then :
+if ${glibcxx_cv_system_error14+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18891,7 +19124,7 @@ $as_echo "#define HAVE_ETXTBSY 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ECHILD" >&5
$as_echo_n "checking for ECHILD... " >&6; }
-if test "${glibcxx_cv_system_error15+set}" = set; then :
+if ${glibcxx_cv_system_error15+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18924,7 +19157,7 @@ $as_echo "#define HAVE_ECHILD 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENOSPC" >&5
$as_echo_n "checking for ENOSPC... " >&6; }
-if test "${glibcxx_cv_system_error16+set}" = set; then :
+if ${glibcxx_cv_system_error16+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18957,7 +19190,7 @@ $as_echo "#define HAVE_ENOSPC 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EPERM" >&5
$as_echo_n "checking for EPERM... " >&6; }
-if test "${glibcxx_cv_system_error17+set}" = set; then :
+if ${glibcxx_cv_system_error17+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -18990,7 +19223,7 @@ $as_echo "#define HAVE_EPERM 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ETIMEDOUT" >&5
$as_echo_n "checking for ETIMEDOUT... " >&6; }
-if test "${glibcxx_cv_system_error18+set}" = set; then :
+if ${glibcxx_cv_system_error18+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19023,7 +19256,7 @@ $as_echo "#define HAVE_ETIMEDOUT 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EWOULDBLOCK" >&5
$as_echo_n "checking for EWOULDBLOCK... " >&6; }
-if test "${glibcxx_cv_system_error19+set}" = set; then :
+if ${glibcxx_cv_system_error19+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19062,7 +19295,7 @@ fi
for ac_header in uchar.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "uchar.h" "ac_cv_header_uchar_h" "$ac_includes_default"
-if test "x$ac_cv_header_uchar_h" = x""yes; then :
+if test "x$ac_cv_header_uchar_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_UCHAR_H 1
_ACEOF
@@ -19151,7 +19384,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for int64_t" >&5
$as_echo_n "checking for int64_t... " >&6; }
- if test "${glibcxx_cv_INT64_T+set}" = set; then :
+ if ${glibcxx_cv_INT64_T+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19185,7 +19418,7 @@ $as_echo "$glibcxx_cv_INT64_T" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for int64_t as long" >&5
$as_echo_n "checking for int64_t as long... " >&6; }
- if test "${glibcxx_cv_int64_t_long+set}" = set; then :
+ if ${glibcxx_cv_int64_t_long+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19223,7 +19456,7 @@ $as_echo "$glibcxx_cv_int64_t_long" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for int64_t as long long" >&5
$as_echo_n "checking for int64_t as long long... " >&6; }
- if test "${glibcxx_cv_int64_t_long_long+set}" = set; then :
+ if ${glibcxx_cv_int64_t_long_long+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19281,7 +19514,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
CXXFLAGS="$CXXFLAGS -fno-exceptions"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LFS support" >&5
$as_echo_n "checking for LFS support... " >&6; }
- if test "${glibcxx_cv_LFS+set}" = set; then :
+ if ${glibcxx_cv_LFS+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19314,7 +19547,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -19368,8 +19601,7 @@ for ac_header in sys/ioctl.h sys/filio.h
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
-eval as_val=\$$as_ac_Header
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
@@ -19392,7 +19624,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for poll" >&5
$as_echo_n "checking for poll... " >&6; }
- if test "${glibcxx_cv_POLL+set}" = set; then :
+ if ${glibcxx_cv_POLL+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19418,7 +19650,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -19474,7 +19706,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for S_ISREG or S_IFREG" >&5
$as_echo_n "checking for S_ISREG or S_IFREG... " >&6; }
- if test "${glibcxx_cv_S_ISREG+set}" = set; then :
+ if ${glibcxx_cv_S_ISREG+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19500,7 +19732,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -19526,7 +19758,7 @@ fi
fi
- if test "${glibcxx_cv_S_IFREG+set}" = set; then :
+ if ${glibcxx_cv_S_IFREG+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19552,7 +19784,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -19606,7 +19838,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
for ac_header in sys/uio.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "sys/uio.h" "ac_cv_header_sys_uio_h" "$ac_includes_default"
-if test "x$ac_cv_header_sys_uio_h" = x""yes; then :
+if test "x$ac_cv_header_sys_uio_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SYS_UIO_H 1
_ACEOF
@@ -19629,7 +19861,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for writev" >&5
$as_echo_n "checking for writev... " >&6; }
- if test "${glibcxx_cv_WRITEV+set}" = set; then :
+ if ${glibcxx_cv_WRITEV+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19654,7 +19886,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -19704,8 +19936,7 @@ for ac_header in fenv.h complex.h
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
-eval as_val=\$$as_ac_Header
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
@@ -19736,7 +19967,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
for ac_header in complex.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "complex.h" "ac_cv_header_complex_h" "$ac_includes_default"
-if test "x$ac_cv_header_complex_h" = x""yes; then :
+if test "x$ac_cv_header_complex_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_COMPLEX_H 1
_ACEOF
@@ -19801,7 +20032,7 @@ $as_echo "#define _GLIBCXX_USE_C99_COMPLEX_TR1 1" >>confdefs.h
# Check for the existence of <ctype.h> functions.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support to TR1 in <ctype.h>" >&5
$as_echo_n "checking for ISO C99 support to TR1 in <ctype.h>... " >&6; }
- if test "${glibcxx_cv_c99_ctype_tr1+set}" = set; then :
+ if ${glibcxx_cv_c99_ctype_tr1+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -19840,7 +20071,7 @@ $as_echo "#define _GLIBCXX_USE_C99_CTYPE_TR1 1" >>confdefs.h
for ac_header in fenv.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "fenv.h" "ac_cv_header_fenv_h" "$ac_includes_default"
-if test "x$ac_cv_header_fenv_h" = x""yes; then :
+if test "x$ac_cv_header_fenv_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FENV_H 1
_ACEOF
@@ -19899,7 +20130,7 @@ $as_echo "#define _GLIBCXX_USE_C99_FENV_TR1 1" >>confdefs.h
# Check for the existence of <stdint.h> types.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support to TR1 in <stdint.h>" >&5
$as_echo_n "checking for ISO C99 support to TR1 in <stdint.h>... " >&6; }
- if test "${glibcxx_cv_c99_stdint_tr1+set}" = set; then :
+ if ${glibcxx_cv_c99_stdint_tr1+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -20020,7 +20251,7 @@ $as_echo "#define _GLIBCXX_USE_C99_STDINT_TR1 1" >>confdefs.h
# Check for the existence of <math.h> functions.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support to TR1 in <math.h>" >&5
$as_echo_n "checking for ISO C99 support to TR1 in <math.h>... " >&6; }
- if test "${glibcxx_cv_c99_math_tr1+set}" = set; then :
+ if ${glibcxx_cv_c99_math_tr1+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -20164,7 +20395,7 @@ $as_echo "#define _GLIBCXX_USE_C99_MATH_TR1 1" >>confdefs.h
darwin*)
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 rounding functions in <math.h>" >&5
$as_echo_n "checking for ISO C99 rounding functions in <math.h>... " >&6; }
- if test "${glibcxx_cv_c99_math_llround+set}" = set; then :
+ if ${glibcxx_cv_c99_math_llround+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -20285,7 +20516,7 @@ $as_echo "#define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1" >>confdefs.h
for ac_header in stdbool.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "stdbool.h" "ac_cv_header_stdbool_h" "$ac_includes_default"
-if test "x$ac_cv_header_stdbool_h" = x""yes; then :
+if test "x$ac_cv_header_stdbool_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STDBOOL_H 1
_ACEOF
@@ -20299,7 +20530,7 @@ done
for ac_header in stdalign.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "stdalign.h" "ac_cv_header_stdalign_h" "$ac_includes_default"
-if test "x$ac_cv_header_stdalign_h" = x""yes; then :
+if test "x$ac_cv_header_stdalign_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STDALIGN_H 1
_ACEOF
@@ -20323,14 +20554,14 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the value of EOF" >&5
$as_echo_n "checking for the value of EOF... " >&6; }
-if test "${glibcxx_cv_stdio_eof+set}" = set; then :
+if ${glibcxx_cv_stdio_eof+:} false; then :
$as_echo_n "(cached) " >&6
else
if ac_fn_c_compute_int "$LINENO" "EOF" "glibcxx_cv_stdio_eof" "#include <stdio.h>"; then :
else
- as_fn_error "computing EOF failed" "$LINENO" 5
+ as_fn_error $? "computing EOF failed" "$LINENO" 5
fi
@@ -20345,14 +20576,14 @@ _ACEOF
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the value of SEEK_CUR" >&5
$as_echo_n "checking for the value of SEEK_CUR... " >&6; }
-if test "${glibcxx_cv_stdio_seek_cur+set}" = set; then :
+if ${glibcxx_cv_stdio_seek_cur+:} false; then :
$as_echo_n "(cached) " >&6
else
if ac_fn_c_compute_int "$LINENO" "SEEK_CUR" "glibcxx_cv_stdio_seek_cur" "#include <stdio.h>"; then :
else
- as_fn_error "computing SEEK_CUR failed" "$LINENO" 5
+ as_fn_error $? "computing SEEK_CUR failed" "$LINENO" 5
fi
@@ -20367,14 +20598,14 @@ _ACEOF
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the value of SEEK_END" >&5
$as_echo_n "checking for the value of SEEK_END... " >&6; }
-if test "${glibcxx_cv_stdio_seek_end+set}" = set; then :
+if ${glibcxx_cv_stdio_seek_end+:} false; then :
$as_echo_n "(cached) " >&6
else
if ac_fn_c_compute_int "$LINENO" "SEEK_END" "glibcxx_cv_stdio_seek_end" "#include <stdio.h>"; then :
else
- as_fn_error "computing SEEK_END failed" "$LINENO" 5
+ as_fn_error $? "computing SEEK_END failed" "$LINENO" 5
fi
@@ -20408,7 +20639,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
for ac_header in sys/time.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "sys/time.h" "ac_cv_header_sys_time_h" "$ac_includes_default"
-if test "x$ac_cv_header_sys_time_h" = x""yes; then :
+if test "x$ac_cv_header_sys_time_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SYS_TIME_H 1
_ACEOF
@@ -20442,7 +20673,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -20491,7 +20722,7 @@ if test "${enable_libstdcxx_time+set}" = set; then :
enableval=$enable_libstdcxx_time;
case "$enableval" in
yes|no|rt) ;;
- *) as_fn_error "Unknown argument to enable/disable libstdcxx-time" "$LINENO" 5 ;;
+ *) as_fn_error $? "Unknown argument to enable/disable libstdcxx-time" "$LINENO" 5 ;;
esac
else
@@ -20585,7 +20816,7 @@ $as_echo "$glibcxx_glibc217" >&6; }
if test x"$enable_libstdcxx_time" = x"rt"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5
$as_echo_n "checking for library containing clock_gettime... " >&6; }
-if test "${ac_cv_search_clock_gettime+set}" = set; then :
+if ${ac_cv_search_clock_gettime+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_func_search_save_LIBS=$LIBS
@@ -20615,18 +20846,18 @@ for ac_lib in '' rt posix4; do
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
fi
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
if ac_fn_cxx_try_link "$LINENO"; then :
ac_cv_search_clock_gettime=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext
- if test "${ac_cv_search_clock_gettime+set}" = set; then :
+ if ${ac_cv_search_clock_gettime+:} false; then :
break
fi
done
-if test "${ac_cv_search_clock_gettime+set}" = set; then :
+if ${ac_cv_search_clock_gettime+:} false; then :
else
ac_cv_search_clock_gettime=no
@@ -20644,7 +20875,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing nanosleep" >&5
$as_echo_n "checking for library containing nanosleep... " >&6; }
-if test "${ac_cv_search_nanosleep+set}" = set; then :
+if ${ac_cv_search_nanosleep+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_func_search_save_LIBS=$LIBS
@@ -20674,18 +20905,18 @@ for ac_lib in '' rt posix4; do
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
fi
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
if ac_fn_cxx_try_link "$LINENO"; then :
ac_cv_search_nanosleep=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext
- if test "${ac_cv_search_nanosleep+set}" = set; then :
+ if ${ac_cv_search_nanosleep+:} false; then :
break
fi
done
-if test "${ac_cv_search_nanosleep+set}" = set; then :
+if ${ac_cv_search_nanosleep+:} false; then :
else
ac_cv_search_nanosleep=no
@@ -20704,7 +20935,7 @@ fi
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5
$as_echo_n "checking for library containing clock_gettime... " >&6; }
-if test "${ac_cv_search_clock_gettime+set}" = set; then :
+if ${ac_cv_search_clock_gettime+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_func_search_save_LIBS=$LIBS
@@ -20734,18 +20965,18 @@ for ac_lib in '' posix4; do
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
fi
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
if ac_fn_cxx_try_link "$LINENO"; then :
ac_cv_search_clock_gettime=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext
- if test "${ac_cv_search_clock_gettime+set}" = set; then :
+ if ${ac_cv_search_clock_gettime+:} false; then :
break
fi
done
-if test "${ac_cv_search_clock_gettime+set}" = set; then :
+if ${ac_cv_search_clock_gettime+:} false; then :
else
ac_cv_search_clock_gettime=no
@@ -20763,7 +20994,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing nanosleep" >&5
$as_echo_n "checking for library containing nanosleep... " >&6; }
-if test "${ac_cv_search_nanosleep+set}" = set; then :
+if ${ac_cv_search_nanosleep+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_func_search_save_LIBS=$LIBS
@@ -20793,18 +21024,18 @@ for ac_lib in '' posix4; do
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
fi
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
if ac_fn_cxx_try_link "$LINENO"; then :
ac_cv_search_nanosleep=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext
- if test "${ac_cv_search_nanosleep+set}" = set; then :
+ if ${ac_cv_search_nanosleep+:} false; then :
break
fi
done
-if test "${ac_cv_search_nanosleep+set}" = set; then :
+if ${ac_cv_search_nanosleep+:} false; then :
else
ac_cv_search_nanosleep=no
@@ -20833,7 +21064,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing sched_yield" >&5
$as_echo_n "checking for library containing sched_yield... " >&6; }
-if test "${ac_cv_search_sched_yield+set}" = set; then :
+if ${ac_cv_search_sched_yield+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_func_search_save_LIBS=$LIBS
@@ -20863,18 +21094,18 @@ for ac_lib in '' rt posix4; do
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
fi
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
if ac_fn_cxx_try_link "$LINENO"; then :
ac_cv_search_sched_yield=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext
- if test "${ac_cv_search_sched_yield+set}" = set; then :
+ if ${ac_cv_search_sched_yield+:} false; then :
break
fi
done
-if test "${ac_cv_search_sched_yield+set}" = set; then :
+if ${ac_cv_search_sched_yield+:} false; then :
else
ac_cv_search_sched_yield=no
@@ -20910,7 +21141,7 @@ fi
for ac_header in unistd.h
do :
ac_fn_cxx_check_header_mongrel "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default"
-if test "x$ac_cv_header_unistd_h" = x""yes; then :
+if test "x$ac_cv_header_unistd_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_UNISTD_H 1
_ACEOF
@@ -20926,7 +21157,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for monotonic clock" >&5
$as_echo_n "checking for monotonic clock... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -20959,7 +21190,7 @@ $as_echo "$ac_has_clock_monotonic" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for realtime clock" >&5
$as_echo_n "checking for realtime clock... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -20992,7 +21223,7 @@ $as_echo "$ac_has_clock_realtime" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for nanosleep" >&5
$as_echo_n "checking for nanosleep... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -21197,7 +21428,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
CXXFLAGS="$CXXFLAGS -fno-exceptions"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for tmpnam" >&5
$as_echo_n "checking for tmpnam... " >&6; }
- if test "${glibcxx_cv_TMPNAM+set}" = set; then :
+ if ${glibcxx_cv_TMPNAM+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -21220,7 +21451,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -21262,11 +21493,11 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default"
-if test "x$ac_cv_header_locale_h" = x""yes; then :
+if test "x$ac_cv_header_locale_h" = xyes; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
$as_echo_n "checking for LC_MESSAGES... " >&6; }
-if test "${ac_cv_val_LC_MESSAGES+set}" = set; then :
+if ${ac_cv_val_LC_MESSAGES+:} false; then :
$as_echo_n "(cached) " >&6
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -21304,7 +21535,7 @@ fi
for ac_header in sys/sysinfo.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "sys/sysinfo.h" "ac_cv_header_sys_sysinfo_h" "$ac_includes_default"
-if test "x$ac_cv_header_sys_sysinfo_h" = x""yes; then :
+if test "x$ac_cv_header_sys_sysinfo_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SYS_SYSINFO_H 1
_ACEOF
@@ -21327,7 +21558,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for get_nprocs" >&5
$as_echo_n "checking for get_nprocs... " >&6; }
- if test "${glibcxx_cv_GET_NPROCS+set}" = set; then :
+ if ${glibcxx_cv_GET_NPROCS+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -21351,7 +21582,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -21394,7 +21625,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
for ac_header in unistd.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default"
-if test "x$ac_cv_header_unistd_h" = x""yes; then :
+if test "x$ac_cv_header_unistd_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_UNISTD_H 1
_ACEOF
@@ -21417,7 +21648,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _SC_NPROCESSORS_ONLN" >&5
$as_echo_n "checking for _SC_NPROCESSORS_ONLN... " >&6; }
- if test "${glibcxx_cv_SC_NPROCESSORS_ONLN+set}" = set; then :
+ if ${glibcxx_cv_SC_NPROCESSORS_ONLN+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -21441,7 +21672,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -21495,7 +21726,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _SC_NPROC_ONLN" >&5
$as_echo_n "checking for _SC_NPROC_ONLN... " >&6; }
- if test "${glibcxx_cv_SC_NPROC_ONLN+set}" = set; then :
+ if ${glibcxx_cv_SC_NPROC_ONLN+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -21519,7 +21750,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -21573,7 +21804,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthreads_num_processors_np" >&5
$as_echo_n "checking for pthreads_num_processors_np... " >&6; }
- if test "${glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP+set}" = set; then :
+ if ${glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -21597,7 +21828,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -21651,7 +21882,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hw.ncpu sysctl" >&5
$as_echo_n "checking for hw.ncpu sysctl... " >&6; }
- if test "${glibcxx_cv_SYSCTL_HW_NCPU+set}" = set; then :
+ if ${glibcxx_cv_SYSCTL_HW_NCPU+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -21683,7 +21914,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -21744,7 +21975,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
- if test "${glibcxx_cv_sys_sdt_h+set}" = set; then :
+ if ${glibcxx_cv_sys_sdt_h+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -21795,8 +22026,7 @@ wchar.h wctype.h linux/types.h
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
-eval as_val=\$$as_ac_Header
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
@@ -21813,7 +22043,7 @@ do :
#endif
"
-if test "x$ac_cv_header_linux_random_h" = x""yes; then :
+if test "x$ac_cv_header_linux_random_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LINUX_RANDOM_H 1
_ACEOF
@@ -21877,7 +22107,7 @@ else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
$as_echo_n "checking for non-GNU ld... " >&6; }
fi
-if test "${lt_cv_path_LD+set}" = set; then :
+if ${lt_cv_path_LD+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -z "$LD"; then
@@ -21914,10 +22144,10 @@ else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
-test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5
+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
-if test "${lt_cv_prog_gnu_ld+set}" = set; then :
+if ${lt_cv_prog_gnu_ld+:} false; then :
$as_echo_n "(cached) " >&6
else
# I'd rather use --version here, but apparently some GNU lds only accept -v.
@@ -22008,7 +22238,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -22085,13 +22315,13 @@ $as_echo "$ac_ld_relro" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -22122,7 +22352,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
libm="-lm"
fi
@@ -22134,7 +22364,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5
$as_echo_n "checking for isinf declaration... " >&6; }
if test x${glibcxx_cv_func_isinf_use+set} != xset; then
- if test "${glibcxx_cv_func_isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22183,7 +22413,7 @@ $as_echo "$glibcxx_cv_func_isinf_use" >&6; }
for ac_func in isinf
do :
ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf"
-if test "x$ac_cv_func_isinf" = x""yes; then :
+if test "x$ac_cv_func_isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINF 1
_ACEOF
@@ -22196,7 +22426,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5
$as_echo_n "checking for _isinf declaration... " >&6; }
if test x${glibcxx_cv_func__isinf_use+set} != xset; then
- if test "${glibcxx_cv_func__isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22245,7 +22475,7 @@ $as_echo "$glibcxx_cv_func__isinf_use" >&6; }
for ac_func in _isinf
do :
ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf"
-if test "x$ac_cv_func__isinf" = x""yes; then :
+if test "x$ac_cv_func__isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINF 1
_ACEOF
@@ -22263,7 +22493,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5
$as_echo_n "checking for isnan declaration... " >&6; }
if test x${glibcxx_cv_func_isnan_use+set} != xset; then
- if test "${glibcxx_cv_func_isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22312,7 +22542,7 @@ $as_echo "$glibcxx_cv_func_isnan_use" >&6; }
for ac_func in isnan
do :
ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan"
-if test "x$ac_cv_func_isnan" = x""yes; then :
+if test "x$ac_cv_func_isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNAN 1
_ACEOF
@@ -22325,7 +22555,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5
$as_echo_n "checking for _isnan declaration... " >&6; }
if test x${glibcxx_cv_func__isnan_use+set} != xset; then
- if test "${glibcxx_cv_func__isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22374,7 +22604,7 @@ $as_echo "$glibcxx_cv_func__isnan_use" >&6; }
for ac_func in _isnan
do :
ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan"
-if test "x$ac_cv_func__isnan" = x""yes; then :
+if test "x$ac_cv_func__isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNAN 1
_ACEOF
@@ -22392,7 +22622,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5
$as_echo_n "checking for finite declaration... " >&6; }
if test x${glibcxx_cv_func_finite_use+set} != xset; then
- if test "${glibcxx_cv_func_finite_use+set}" = set; then :
+ if ${glibcxx_cv_func_finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22441,7 +22671,7 @@ $as_echo "$glibcxx_cv_func_finite_use" >&6; }
for ac_func in finite
do :
ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite"
-if test "x$ac_cv_func_finite" = x""yes; then :
+if test "x$ac_cv_func_finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITE 1
_ACEOF
@@ -22454,7 +22684,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5
$as_echo_n "checking for _finite declaration... " >&6; }
if test x${glibcxx_cv_func__finite_use+set} != xset; then
- if test "${glibcxx_cv_func__finite_use+set}" = set; then :
+ if ${glibcxx_cv_func__finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22503,7 +22733,7 @@ $as_echo "$glibcxx_cv_func__finite_use" >&6; }
for ac_func in _finite
do :
ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite"
-if test "x$ac_cv_func__finite" = x""yes; then :
+if test "x$ac_cv_func__finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITE 1
_ACEOF
@@ -22521,7 +22751,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5
$as_echo_n "checking for sincos declaration... " >&6; }
if test x${glibcxx_cv_func_sincos_use+set} != xset; then
- if test "${glibcxx_cv_func_sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22566,7 +22796,7 @@ $as_echo "$glibcxx_cv_func_sincos_use" >&6; }
for ac_func in sincos
do :
ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos"
-if test "x$ac_cv_func_sincos" = x""yes; then :
+if test "x$ac_cv_func_sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOS 1
_ACEOF
@@ -22579,7 +22809,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5
$as_echo_n "checking for _sincos declaration... " >&6; }
if test x${glibcxx_cv_func__sincos_use+set} != xset; then
- if test "${glibcxx_cv_func__sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22624,7 +22854,7 @@ $as_echo "$glibcxx_cv_func__sincos_use" >&6; }
for ac_func in _sincos
do :
ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos"
-if test "x$ac_cv_func__sincos" = x""yes; then :
+if test "x$ac_cv_func__sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOS 1
_ACEOF
@@ -22642,7 +22872,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5
$as_echo_n "checking for fpclass declaration... " >&6; }
if test x${glibcxx_cv_func_fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22691,7 +22921,7 @@ $as_echo "$glibcxx_cv_func_fpclass_use" >&6; }
for ac_func in fpclass
do :
ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass"
-if test "x$ac_cv_func_fpclass" = x""yes; then :
+if test "x$ac_cv_func_fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FPCLASS 1
_ACEOF
@@ -22704,7 +22934,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5
$as_echo_n "checking for _fpclass declaration... " >&6; }
if test x${glibcxx_cv_func__fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22753,7 +22983,7 @@ $as_echo "$glibcxx_cv_func__fpclass_use" >&6; }
for ac_func in _fpclass
do :
ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass"
-if test "x$ac_cv_func__fpclass" = x""yes; then :
+if test "x$ac_cv_func__fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FPCLASS 1
_ACEOF
@@ -22771,7 +23001,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5
$as_echo_n "checking for qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22820,7 +23050,7 @@ $as_echo "$glibcxx_cv_func_qfpclass_use" >&6; }
for ac_func in qfpclass
do :
ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass"
-if test "x$ac_cv_func_qfpclass" = x""yes; then :
+if test "x$ac_cv_func_qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QFPCLASS 1
_ACEOF
@@ -22833,7 +23063,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5
$as_echo_n "checking for _qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22882,7 +23112,7 @@ $as_echo "$glibcxx_cv_func__qfpclass_use" >&6; }
for ac_func in _qfpclass
do :
ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass"
-if test "x$ac_cv_func__qfpclass" = x""yes; then :
+if test "x$ac_cv_func__qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__QFPCLASS 1
_ACEOF
@@ -22900,7 +23130,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5
$as_echo_n "checking for hypot declaration... " >&6; }
if test x${glibcxx_cv_func_hypot_use+set} != xset; then
- if test "${glibcxx_cv_func_hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -22945,7 +23175,7 @@ $as_echo "$glibcxx_cv_func_hypot_use" >&6; }
for ac_func in hypot
do :
ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot"
-if test "x$ac_cv_func_hypot" = x""yes; then :
+if test "x$ac_cv_func_hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOT 1
_ACEOF
@@ -22958,7 +23188,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5
$as_echo_n "checking for _hypot declaration... " >&6; }
if test x${glibcxx_cv_func__hypot_use+set} != xset; then
- if test "${glibcxx_cv_func__hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23003,7 +23233,7 @@ $as_echo "$glibcxx_cv_func__hypot_use" >&6; }
for ac_func in _hypot
do :
ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot"
-if test "x$ac_cv_func__hypot" = x""yes; then :
+if test "x$ac_cv_func__hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOT 1
_ACEOF
@@ -23020,7 +23250,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5
$as_echo_n "checking for float trig functions... " >&6; }
- if test "${glibcxx_cv_func_float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23063,8 +23293,7 @@ $as_echo "$glibcxx_cv_func_float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -23075,7 +23304,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5
$as_echo_n "checking for _float trig functions... " >&6; }
- if test "${glibcxx_cv_func__float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23118,8 +23347,7 @@ $as_echo "$glibcxx_cv_func__float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -23136,7 +23364,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5
$as_echo_n "checking for float round functions... " >&6; }
- if test "${glibcxx_cv_func_float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23179,8 +23407,7 @@ $as_echo "$glibcxx_cv_func_float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -23191,7 +23418,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5
$as_echo_n "checking for _float round functions... " >&6; }
- if test "${glibcxx_cv_func__float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23234,8 +23461,7 @@ $as_echo "$glibcxx_cv_func__float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -23254,7 +23480,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5
$as_echo_n "checking for expf declaration... " >&6; }
if test x${glibcxx_cv_func_expf_use+set} != xset; then
- if test "${glibcxx_cv_func_expf_use+set}" = set; then :
+ if ${glibcxx_cv_func_expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23303,7 +23529,7 @@ $as_echo "$glibcxx_cv_func_expf_use" >&6; }
for ac_func in expf
do :
ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf"
-if test "x$ac_cv_func_expf" = x""yes; then :
+if test "x$ac_cv_func_expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPF 1
_ACEOF
@@ -23316,7 +23542,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5
$as_echo_n "checking for _expf declaration... " >&6; }
if test x${glibcxx_cv_func__expf_use+set} != xset; then
- if test "${glibcxx_cv_func__expf_use+set}" = set; then :
+ if ${glibcxx_cv_func__expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23365,7 +23591,7 @@ $as_echo "$glibcxx_cv_func__expf_use" >&6; }
for ac_func in _expf
do :
ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf"
-if test "x$ac_cv_func__expf" = x""yes; then :
+if test "x$ac_cv_func__expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPF 1
_ACEOF
@@ -23383,7 +23609,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5
$as_echo_n "checking for isnanf declaration... " >&6; }
if test x${glibcxx_cv_func_isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23432,7 +23658,7 @@ $as_echo "$glibcxx_cv_func_isnanf_use" >&6; }
for ac_func in isnanf
do :
ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf"
-if test "x$ac_cv_func_isnanf" = x""yes; then :
+if test "x$ac_cv_func_isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANF 1
_ACEOF
@@ -23445,7 +23671,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5
$as_echo_n "checking for _isnanf declaration... " >&6; }
if test x${glibcxx_cv_func__isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23494,7 +23720,7 @@ $as_echo "$glibcxx_cv_func__isnanf_use" >&6; }
for ac_func in _isnanf
do :
ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf"
-if test "x$ac_cv_func__isnanf" = x""yes; then :
+if test "x$ac_cv_func__isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANF 1
_ACEOF
@@ -23512,7 +23738,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5
$as_echo_n "checking for isinff declaration... " >&6; }
if test x${glibcxx_cv_func_isinff_use+set} != xset; then
- if test "${glibcxx_cv_func_isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23561,7 +23787,7 @@ $as_echo "$glibcxx_cv_func_isinff_use" >&6; }
for ac_func in isinff
do :
ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff"
-if test "x$ac_cv_func_isinff" = x""yes; then :
+if test "x$ac_cv_func_isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFF 1
_ACEOF
@@ -23574,7 +23800,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5
$as_echo_n "checking for _isinff declaration... " >&6; }
if test x${glibcxx_cv_func__isinff_use+set} != xset; then
- if test "${glibcxx_cv_func__isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23623,7 +23849,7 @@ $as_echo "$glibcxx_cv_func__isinff_use" >&6; }
for ac_func in _isinff
do :
ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff"
-if test "x$ac_cv_func__isinff" = x""yes; then :
+if test "x$ac_cv_func__isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFF 1
_ACEOF
@@ -23641,7 +23867,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5
$as_echo_n "checking for atan2f declaration... " >&6; }
if test x${glibcxx_cv_func_atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23686,7 +23912,7 @@ $as_echo "$glibcxx_cv_func_atan2f_use" >&6; }
for ac_func in atan2f
do :
ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f"
-if test "x$ac_cv_func_atan2f" = x""yes; then :
+if test "x$ac_cv_func_atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2F 1
_ACEOF
@@ -23699,7 +23925,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5
$as_echo_n "checking for _atan2f declaration... " >&6; }
if test x${glibcxx_cv_func__atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23744,7 +23970,7 @@ $as_echo "$glibcxx_cv_func__atan2f_use" >&6; }
for ac_func in _atan2f
do :
ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f"
-if test "x$ac_cv_func__atan2f" = x""yes; then :
+if test "x$ac_cv_func__atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2F 1
_ACEOF
@@ -23762,7 +23988,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5
$as_echo_n "checking for fabsf declaration... " >&6; }
if test x${glibcxx_cv_func_fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23811,7 +24037,7 @@ $as_echo "$glibcxx_cv_func_fabsf_use" >&6; }
for ac_func in fabsf
do :
ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf"
-if test "x$ac_cv_func_fabsf" = x""yes; then :
+if test "x$ac_cv_func_fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSF 1
_ACEOF
@@ -23824,7 +24050,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5
$as_echo_n "checking for _fabsf declaration... " >&6; }
if test x${glibcxx_cv_func__fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23873,7 +24099,7 @@ $as_echo "$glibcxx_cv_func__fabsf_use" >&6; }
for ac_func in _fabsf
do :
ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf"
-if test "x$ac_cv_func__fabsf" = x""yes; then :
+if test "x$ac_cv_func__fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSF 1
_ACEOF
@@ -23891,7 +24117,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5
$as_echo_n "checking for fmodf declaration... " >&6; }
if test x${glibcxx_cv_func_fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23936,7 +24162,7 @@ $as_echo "$glibcxx_cv_func_fmodf_use" >&6; }
for ac_func in fmodf
do :
ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf"
-if test "x$ac_cv_func_fmodf" = x""yes; then :
+if test "x$ac_cv_func_fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODF 1
_ACEOF
@@ -23949,7 +24175,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5
$as_echo_n "checking for _fmodf declaration... " >&6; }
if test x${glibcxx_cv_func__fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -23994,7 +24220,7 @@ $as_echo "$glibcxx_cv_func__fmodf_use" >&6; }
for ac_func in _fmodf
do :
ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf"
-if test "x$ac_cv_func__fmodf" = x""yes; then :
+if test "x$ac_cv_func__fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODF 1
_ACEOF
@@ -24012,7 +24238,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5
$as_echo_n "checking for frexpf declaration... " >&6; }
if test x${glibcxx_cv_func_frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24057,7 +24283,7 @@ $as_echo "$glibcxx_cv_func_frexpf_use" >&6; }
for ac_func in frexpf
do :
ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf"
-if test "x$ac_cv_func_frexpf" = x""yes; then :
+if test "x$ac_cv_func_frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPF 1
_ACEOF
@@ -24070,7 +24296,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5
$as_echo_n "checking for _frexpf declaration... " >&6; }
if test x${glibcxx_cv_func__frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24115,7 +24341,7 @@ $as_echo "$glibcxx_cv_func__frexpf_use" >&6; }
for ac_func in _frexpf
do :
ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf"
-if test "x$ac_cv_func__frexpf" = x""yes; then :
+if test "x$ac_cv_func__frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPF 1
_ACEOF
@@ -24133,7 +24359,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5
$as_echo_n "checking for hypotf declaration... " >&6; }
if test x${glibcxx_cv_func_hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24178,7 +24404,7 @@ $as_echo "$glibcxx_cv_func_hypotf_use" >&6; }
for ac_func in hypotf
do :
ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf"
-if test "x$ac_cv_func_hypotf" = x""yes; then :
+if test "x$ac_cv_func_hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTF 1
_ACEOF
@@ -24191,7 +24417,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5
$as_echo_n "checking for _hypotf declaration... " >&6; }
if test x${glibcxx_cv_func__hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24236,7 +24462,7 @@ $as_echo "$glibcxx_cv_func__hypotf_use" >&6; }
for ac_func in _hypotf
do :
ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf"
-if test "x$ac_cv_func__hypotf" = x""yes; then :
+if test "x$ac_cv_func__hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTF 1
_ACEOF
@@ -24254,7 +24480,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5
$as_echo_n "checking for ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24299,7 +24525,7 @@ $as_echo "$glibcxx_cv_func_ldexpf_use" >&6; }
for ac_func in ldexpf
do :
ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf"
-if test "x$ac_cv_func_ldexpf" = x""yes; then :
+if test "x$ac_cv_func_ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPF 1
_ACEOF
@@ -24312,7 +24538,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5
$as_echo_n "checking for _ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24357,7 +24583,7 @@ $as_echo "$glibcxx_cv_func__ldexpf_use" >&6; }
for ac_func in _ldexpf
do :
ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf"
-if test "x$ac_cv_func__ldexpf" = x""yes; then :
+if test "x$ac_cv_func__ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPF 1
_ACEOF
@@ -24375,7 +24601,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5
$as_echo_n "checking for logf declaration... " >&6; }
if test x${glibcxx_cv_func_logf_use+set} != xset; then
- if test "${glibcxx_cv_func_logf_use+set}" = set; then :
+ if ${glibcxx_cv_func_logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24424,7 +24650,7 @@ $as_echo "$glibcxx_cv_func_logf_use" >&6; }
for ac_func in logf
do :
ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf"
-if test "x$ac_cv_func_logf" = x""yes; then :
+if test "x$ac_cv_func_logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGF 1
_ACEOF
@@ -24437,7 +24663,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5
$as_echo_n "checking for _logf declaration... " >&6; }
if test x${glibcxx_cv_func__logf_use+set} != xset; then
- if test "${glibcxx_cv_func__logf_use+set}" = set; then :
+ if ${glibcxx_cv_func__logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24486,7 +24712,7 @@ $as_echo "$glibcxx_cv_func__logf_use" >&6; }
for ac_func in _logf
do :
ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf"
-if test "x$ac_cv_func__logf" = x""yes; then :
+if test "x$ac_cv_func__logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGF 1
_ACEOF
@@ -24504,7 +24730,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5
$as_echo_n "checking for log10f declaration... " >&6; }
if test x${glibcxx_cv_func_log10f_use+set} != xset; then
- if test "${glibcxx_cv_func_log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24553,7 +24779,7 @@ $as_echo "$glibcxx_cv_func_log10f_use" >&6; }
for ac_func in log10f
do :
ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f"
-if test "x$ac_cv_func_log10f" = x""yes; then :
+if test "x$ac_cv_func_log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10F 1
_ACEOF
@@ -24566,7 +24792,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5
$as_echo_n "checking for _log10f declaration... " >&6; }
if test x${glibcxx_cv_func__log10f_use+set} != xset; then
- if test "${glibcxx_cv_func__log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24615,7 +24841,7 @@ $as_echo "$glibcxx_cv_func__log10f_use" >&6; }
for ac_func in _log10f
do :
ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f"
-if test "x$ac_cv_func__log10f" = x""yes; then :
+if test "x$ac_cv_func__log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10F 1
_ACEOF
@@ -24633,7 +24859,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5
$as_echo_n "checking for modff declaration... " >&6; }
if test x${glibcxx_cv_func_modff_use+set} != xset; then
- if test "${glibcxx_cv_func_modff_use+set}" = set; then :
+ if ${glibcxx_cv_func_modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24678,7 +24904,7 @@ $as_echo "$glibcxx_cv_func_modff_use" >&6; }
for ac_func in modff
do :
ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff"
-if test "x$ac_cv_func_modff" = x""yes; then :
+if test "x$ac_cv_func_modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFF 1
_ACEOF
@@ -24691,7 +24917,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5
$as_echo_n "checking for _modff declaration... " >&6; }
if test x${glibcxx_cv_func__modff_use+set} != xset; then
- if test "${glibcxx_cv_func__modff_use+set}" = set; then :
+ if ${glibcxx_cv_func__modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24736,7 +24962,7 @@ $as_echo "$glibcxx_cv_func__modff_use" >&6; }
for ac_func in _modff
do :
ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff"
-if test "x$ac_cv_func__modff" = x""yes; then :
+if test "x$ac_cv_func__modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFF 1
_ACEOF
@@ -24754,7 +24980,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5
$as_echo_n "checking for modf declaration... " >&6; }
if test x${glibcxx_cv_func_modf_use+set} != xset; then
- if test "${glibcxx_cv_func_modf_use+set}" = set; then :
+ if ${glibcxx_cv_func_modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24799,7 +25025,7 @@ $as_echo "$glibcxx_cv_func_modf_use" >&6; }
for ac_func in modf
do :
ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf"
-if test "x$ac_cv_func_modf" = x""yes; then :
+if test "x$ac_cv_func_modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODF 1
_ACEOF
@@ -24812,7 +25038,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5
$as_echo_n "checking for _modf declaration... " >&6; }
if test x${glibcxx_cv_func__modf_use+set} != xset; then
- if test "${glibcxx_cv_func__modf_use+set}" = set; then :
+ if ${glibcxx_cv_func__modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24857,7 +25083,7 @@ $as_echo "$glibcxx_cv_func__modf_use" >&6; }
for ac_func in _modf
do :
ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf"
-if test "x$ac_cv_func__modf" = x""yes; then :
+if test "x$ac_cv_func__modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODF 1
_ACEOF
@@ -24875,7 +25101,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5
$as_echo_n "checking for powf declaration... " >&6; }
if test x${glibcxx_cv_func_powf_use+set} != xset; then
- if test "${glibcxx_cv_func_powf_use+set}" = set; then :
+ if ${glibcxx_cv_func_powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24920,7 +25146,7 @@ $as_echo "$glibcxx_cv_func_powf_use" >&6; }
for ac_func in powf
do :
ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf"
-if test "x$ac_cv_func_powf" = x""yes; then :
+if test "x$ac_cv_func_powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWF 1
_ACEOF
@@ -24933,7 +25159,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5
$as_echo_n "checking for _powf declaration... " >&6; }
if test x${glibcxx_cv_func__powf_use+set} != xset; then
- if test "${glibcxx_cv_func__powf_use+set}" = set; then :
+ if ${glibcxx_cv_func__powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -24978,7 +25204,7 @@ $as_echo "$glibcxx_cv_func__powf_use" >&6; }
for ac_func in _powf
do :
ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf"
-if test "x$ac_cv_func__powf" = x""yes; then :
+if test "x$ac_cv_func__powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWF 1
_ACEOF
@@ -24996,7 +25222,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5
$as_echo_n "checking for sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25045,7 +25271,7 @@ $as_echo "$glibcxx_cv_func_sqrtf_use" >&6; }
for ac_func in sqrtf
do :
ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf"
-if test "x$ac_cv_func_sqrtf" = x""yes; then :
+if test "x$ac_cv_func_sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTF 1
_ACEOF
@@ -25058,7 +25284,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5
$as_echo_n "checking for _sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25107,7 +25333,7 @@ $as_echo "$glibcxx_cv_func__sqrtf_use" >&6; }
for ac_func in _sqrtf
do :
ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf"
-if test "x$ac_cv_func__sqrtf" = x""yes; then :
+if test "x$ac_cv_func__sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTF 1
_ACEOF
@@ -25125,7 +25351,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5
$as_echo_n "checking for sincosf declaration... " >&6; }
if test x${glibcxx_cv_func_sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25170,7 +25396,7 @@ $as_echo "$glibcxx_cv_func_sincosf_use" >&6; }
for ac_func in sincosf
do :
ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf"
-if test "x$ac_cv_func_sincosf" = x""yes; then :
+if test "x$ac_cv_func_sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSF 1
_ACEOF
@@ -25183,7 +25409,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5
$as_echo_n "checking for _sincosf declaration... " >&6; }
if test x${glibcxx_cv_func__sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25228,7 +25454,7 @@ $as_echo "$glibcxx_cv_func__sincosf_use" >&6; }
for ac_func in _sincosf
do :
ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf"
-if test "x$ac_cv_func__sincosf" = x""yes; then :
+if test "x$ac_cv_func__sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSF 1
_ACEOF
@@ -25246,7 +25472,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5
$as_echo_n "checking for finitef declaration... " >&6; }
if test x${glibcxx_cv_func_finitef_use+set} != xset; then
- if test "${glibcxx_cv_func_finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25295,7 +25521,7 @@ $as_echo "$glibcxx_cv_func_finitef_use" >&6; }
for ac_func in finitef
do :
ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef"
-if test "x$ac_cv_func_finitef" = x""yes; then :
+if test "x$ac_cv_func_finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEF 1
_ACEOF
@@ -25308,7 +25534,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5
$as_echo_n "checking for _finitef declaration... " >&6; }
if test x${glibcxx_cv_func__finitef_use+set} != xset; then
- if test "${glibcxx_cv_func__finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25357,7 +25583,7 @@ $as_echo "$glibcxx_cv_func__finitef_use" >&6; }
for ac_func in _finitef
do :
ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef"
-if test "x$ac_cv_func__finitef" = x""yes; then :
+if test "x$ac_cv_func__finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEF 1
_ACEOF
@@ -25374,7 +25600,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5
$as_echo_n "checking for long double trig functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25417,8 +25643,7 @@ $as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -25429,7 +25654,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5
$as_echo_n "checking for _long double trig functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25472,8 +25697,7 @@ $as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -25490,7 +25714,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5
$as_echo_n "checking for long double round functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25533,8 +25757,7 @@ $as_echo "$glibcxx_cv_func_long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -25545,7 +25768,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5
$as_echo_n "checking for _long double round functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25588,8 +25811,7 @@ $as_echo "$glibcxx_cv_func__long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -25608,7 +25830,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5
$as_echo_n "checking for isnanl declaration... " >&6; }
if test x${glibcxx_cv_func_isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25657,7 +25879,7 @@ $as_echo "$glibcxx_cv_func_isnanl_use" >&6; }
for ac_func in isnanl
do :
ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl"
-if test "x$ac_cv_func_isnanl" = x""yes; then :
+if test "x$ac_cv_func_isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANL 1
_ACEOF
@@ -25670,7 +25892,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5
$as_echo_n "checking for _isnanl declaration... " >&6; }
if test x${glibcxx_cv_func__isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25719,7 +25941,7 @@ $as_echo "$glibcxx_cv_func__isnanl_use" >&6; }
for ac_func in _isnanl
do :
ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl"
-if test "x$ac_cv_func__isnanl" = x""yes; then :
+if test "x$ac_cv_func__isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANL 1
_ACEOF
@@ -25737,7 +25959,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5
$as_echo_n "checking for isinfl declaration... " >&6; }
if test x${glibcxx_cv_func_isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func_isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25786,7 +26008,7 @@ $as_echo "$glibcxx_cv_func_isinfl_use" >&6; }
for ac_func in isinfl
do :
ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl"
-if test "x$ac_cv_func_isinfl" = x""yes; then :
+if test "x$ac_cv_func_isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFL 1
_ACEOF
@@ -25799,7 +26021,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5
$as_echo_n "checking for _isinfl declaration... " >&6; }
if test x${glibcxx_cv_func__isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func__isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25848,7 +26070,7 @@ $as_echo "$glibcxx_cv_func__isinfl_use" >&6; }
for ac_func in _isinfl
do :
ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl"
-if test "x$ac_cv_func__isinfl" = x""yes; then :
+if test "x$ac_cv_func__isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFL 1
_ACEOF
@@ -25866,7 +26088,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5
$as_echo_n "checking for atan2l declaration... " >&6; }
if test x${glibcxx_cv_func_atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25911,7 +26133,7 @@ $as_echo "$glibcxx_cv_func_atan2l_use" >&6; }
for ac_func in atan2l
do :
ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l"
-if test "x$ac_cv_func_atan2l" = x""yes; then :
+if test "x$ac_cv_func_atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
_ACEOF
@@ -25924,7 +26146,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5
$as_echo_n "checking for _atan2l declaration... " >&6; }
if test x${glibcxx_cv_func__atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -25969,7 +26191,7 @@ $as_echo "$glibcxx_cv_func__atan2l_use" >&6; }
for ac_func in _atan2l
do :
ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l"
-if test "x$ac_cv_func__atan2l" = x""yes; then :
+if test "x$ac_cv_func__atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2L 1
_ACEOF
@@ -25987,7 +26209,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5
$as_echo_n "checking for expl declaration... " >&6; }
if test x${glibcxx_cv_func_expl_use+set} != xset; then
- if test "${glibcxx_cv_func_expl_use+set}" = set; then :
+ if ${glibcxx_cv_func_expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26036,7 +26258,7 @@ $as_echo "$glibcxx_cv_func_expl_use" >&6; }
for ac_func in expl
do :
ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl"
-if test "x$ac_cv_func_expl" = x""yes; then :
+if test "x$ac_cv_func_expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
_ACEOF
@@ -26049,7 +26271,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5
$as_echo_n "checking for _expl declaration... " >&6; }
if test x${glibcxx_cv_func__expl_use+set} != xset; then
- if test "${glibcxx_cv_func__expl_use+set}" = set; then :
+ if ${glibcxx_cv_func__expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26098,7 +26320,7 @@ $as_echo "$glibcxx_cv_func__expl_use" >&6; }
for ac_func in _expl
do :
ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl"
-if test "x$ac_cv_func__expl" = x""yes; then :
+if test "x$ac_cv_func__expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPL 1
_ACEOF
@@ -26116,7 +26338,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5
$as_echo_n "checking for fabsl declaration... " >&6; }
if test x${glibcxx_cv_func_fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26165,7 +26387,7 @@ $as_echo "$glibcxx_cv_func_fabsl_use" >&6; }
for ac_func in fabsl
do :
ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl"
-if test "x$ac_cv_func_fabsl" = x""yes; then :
+if test "x$ac_cv_func_fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSL 1
_ACEOF
@@ -26178,7 +26400,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5
$as_echo_n "checking for _fabsl declaration... " >&6; }
if test x${glibcxx_cv_func__fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26227,7 +26449,7 @@ $as_echo "$glibcxx_cv_func__fabsl_use" >&6; }
for ac_func in _fabsl
do :
ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl"
-if test "x$ac_cv_func__fabsl" = x""yes; then :
+if test "x$ac_cv_func__fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSL 1
_ACEOF
@@ -26245,7 +26467,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5
$as_echo_n "checking for fmodl declaration... " >&6; }
if test x${glibcxx_cv_func_fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26290,7 +26512,7 @@ $as_echo "$glibcxx_cv_func_fmodl_use" >&6; }
for ac_func in fmodl
do :
ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl"
-if test "x$ac_cv_func_fmodl" = x""yes; then :
+if test "x$ac_cv_func_fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
_ACEOF
@@ -26303,7 +26525,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5
$as_echo_n "checking for _fmodl declaration... " >&6; }
if test x${glibcxx_cv_func__fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26348,7 +26570,7 @@ $as_echo "$glibcxx_cv_func__fmodl_use" >&6; }
for ac_func in _fmodl
do :
ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl"
-if test "x$ac_cv_func__fmodl" = x""yes; then :
+if test "x$ac_cv_func__fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODL 1
_ACEOF
@@ -26366,7 +26588,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5
$as_echo_n "checking for frexpl declaration... " >&6; }
if test x${glibcxx_cv_func_frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26411,7 +26633,7 @@ $as_echo "$glibcxx_cv_func_frexpl_use" >&6; }
for ac_func in frexpl
do :
ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl"
-if test "x$ac_cv_func_frexpl" = x""yes; then :
+if test "x$ac_cv_func_frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPL 1
_ACEOF
@@ -26424,7 +26646,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5
$as_echo_n "checking for _frexpl declaration... " >&6; }
if test x${glibcxx_cv_func__frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26469,7 +26691,7 @@ $as_echo "$glibcxx_cv_func__frexpl_use" >&6; }
for ac_func in _frexpl
do :
ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl"
-if test "x$ac_cv_func__frexpl" = x""yes; then :
+if test "x$ac_cv_func__frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPL 1
_ACEOF
@@ -26487,7 +26709,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5
$as_echo_n "checking for hypotl declaration... " >&6; }
if test x${glibcxx_cv_func_hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26532,7 +26754,7 @@ $as_echo "$glibcxx_cv_func_hypotl_use" >&6; }
for ac_func in hypotl
do :
ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl"
-if test "x$ac_cv_func_hypotl" = x""yes; then :
+if test "x$ac_cv_func_hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTL 1
_ACEOF
@@ -26545,7 +26767,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5
$as_echo_n "checking for _hypotl declaration... " >&6; }
if test x${glibcxx_cv_func__hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26590,7 +26812,7 @@ $as_echo "$glibcxx_cv_func__hypotl_use" >&6; }
for ac_func in _hypotl
do :
ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl"
-if test "x$ac_cv_func__hypotl" = x""yes; then :
+if test "x$ac_cv_func__hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTL 1
_ACEOF
@@ -26608,7 +26830,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5
$as_echo_n "checking for ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26653,7 +26875,7 @@ $as_echo "$glibcxx_cv_func_ldexpl_use" >&6; }
for ac_func in ldexpl
do :
ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl"
-if test "x$ac_cv_func_ldexpl" = x""yes; then :
+if test "x$ac_cv_func_ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPL 1
_ACEOF
@@ -26666,7 +26888,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5
$as_echo_n "checking for _ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26711,7 +26933,7 @@ $as_echo "$glibcxx_cv_func__ldexpl_use" >&6; }
for ac_func in _ldexpl
do :
ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl"
-if test "x$ac_cv_func__ldexpl" = x""yes; then :
+if test "x$ac_cv_func__ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPL 1
_ACEOF
@@ -26729,7 +26951,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5
$as_echo_n "checking for logl declaration... " >&6; }
if test x${glibcxx_cv_func_logl_use+set} != xset; then
- if test "${glibcxx_cv_func_logl_use+set}" = set; then :
+ if ${glibcxx_cv_func_logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26778,7 +27000,7 @@ $as_echo "$glibcxx_cv_func_logl_use" >&6; }
for ac_func in logl
do :
ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl"
-if test "x$ac_cv_func_logl" = x""yes; then :
+if test "x$ac_cv_func_logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
_ACEOF
@@ -26791,7 +27013,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5
$as_echo_n "checking for _logl declaration... " >&6; }
if test x${glibcxx_cv_func__logl_use+set} != xset; then
- if test "${glibcxx_cv_func__logl_use+set}" = set; then :
+ if ${glibcxx_cv_func__logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26840,7 +27062,7 @@ $as_echo "$glibcxx_cv_func__logl_use" >&6; }
for ac_func in _logl
do :
ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl"
-if test "x$ac_cv_func__logl" = x""yes; then :
+if test "x$ac_cv_func__logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGL 1
_ACEOF
@@ -26858,7 +27080,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5
$as_echo_n "checking for log10l declaration... " >&6; }
if test x${glibcxx_cv_func_log10l_use+set} != xset; then
- if test "${glibcxx_cv_func_log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26907,7 +27129,7 @@ $as_echo "$glibcxx_cv_func_log10l_use" >&6; }
for ac_func in log10l
do :
ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l"
-if test "x$ac_cv_func_log10l" = x""yes; then :
+if test "x$ac_cv_func_log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
_ACEOF
@@ -26920,7 +27142,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5
$as_echo_n "checking for _log10l declaration... " >&6; }
if test x${glibcxx_cv_func__log10l_use+set} != xset; then
- if test "${glibcxx_cv_func__log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -26969,7 +27191,7 @@ $as_echo "$glibcxx_cv_func__log10l_use" >&6; }
for ac_func in _log10l
do :
ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l"
-if test "x$ac_cv_func__log10l" = x""yes; then :
+if test "x$ac_cv_func__log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10L 1
_ACEOF
@@ -26987,7 +27209,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5
$as_echo_n "checking for modfl declaration... " >&6; }
if test x${glibcxx_cv_func_modfl_use+set} != xset; then
- if test "${glibcxx_cv_func_modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27032,7 +27254,7 @@ $as_echo "$glibcxx_cv_func_modfl_use" >&6; }
for ac_func in modfl
do :
ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl"
-if test "x$ac_cv_func_modfl" = x""yes; then :
+if test "x$ac_cv_func_modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFL 1
_ACEOF
@@ -27045,7 +27267,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5
$as_echo_n "checking for _modfl declaration... " >&6; }
if test x${glibcxx_cv_func__modfl_use+set} != xset; then
- if test "${glibcxx_cv_func__modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27090,7 +27312,7 @@ $as_echo "$glibcxx_cv_func__modfl_use" >&6; }
for ac_func in _modfl
do :
ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl"
-if test "x$ac_cv_func__modfl" = x""yes; then :
+if test "x$ac_cv_func__modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFL 1
_ACEOF
@@ -27108,7 +27330,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5
$as_echo_n "checking for powl declaration... " >&6; }
if test x${glibcxx_cv_func_powl_use+set} != xset; then
- if test "${glibcxx_cv_func_powl_use+set}" = set; then :
+ if ${glibcxx_cv_func_powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27153,7 +27375,7 @@ $as_echo "$glibcxx_cv_func_powl_use" >&6; }
for ac_func in powl
do :
ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl"
-if test "x$ac_cv_func_powl" = x""yes; then :
+if test "x$ac_cv_func_powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
_ACEOF
@@ -27166,7 +27388,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5
$as_echo_n "checking for _powl declaration... " >&6; }
if test x${glibcxx_cv_func__powl_use+set} != xset; then
- if test "${glibcxx_cv_func__powl_use+set}" = set; then :
+ if ${glibcxx_cv_func__powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27211,7 +27433,7 @@ $as_echo "$glibcxx_cv_func__powl_use" >&6; }
for ac_func in _powl
do :
ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl"
-if test "x$ac_cv_func__powl" = x""yes; then :
+if test "x$ac_cv_func__powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWL 1
_ACEOF
@@ -27229,7 +27451,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5
$as_echo_n "checking for sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27278,7 +27500,7 @@ $as_echo "$glibcxx_cv_func_sqrtl_use" >&6; }
for ac_func in sqrtl
do :
ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl"
-if test "x$ac_cv_func_sqrtl" = x""yes; then :
+if test "x$ac_cv_func_sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
_ACEOF
@@ -27291,7 +27513,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5
$as_echo_n "checking for _sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27340,7 +27562,7 @@ $as_echo "$glibcxx_cv_func__sqrtl_use" >&6; }
for ac_func in _sqrtl
do :
ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl"
-if test "x$ac_cv_func__sqrtl" = x""yes; then :
+if test "x$ac_cv_func__sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTL 1
_ACEOF
@@ -27358,7 +27580,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5
$as_echo_n "checking for sincosl declaration... " >&6; }
if test x${glibcxx_cv_func_sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27403,7 +27625,7 @@ $as_echo "$glibcxx_cv_func_sincosl_use" >&6; }
for ac_func in sincosl
do :
ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl"
-if test "x$ac_cv_func_sincosl" = x""yes; then :
+if test "x$ac_cv_func_sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSL 1
_ACEOF
@@ -27416,7 +27638,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5
$as_echo_n "checking for _sincosl declaration... " >&6; }
if test x${glibcxx_cv_func__sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27461,7 +27683,7 @@ $as_echo "$glibcxx_cv_func__sincosl_use" >&6; }
for ac_func in _sincosl
do :
ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl"
-if test "x$ac_cv_func__sincosl" = x""yes; then :
+if test "x$ac_cv_func__sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSL 1
_ACEOF
@@ -27479,7 +27701,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5
$as_echo_n "checking for finitel declaration... " >&6; }
if test x${glibcxx_cv_func_finitel_use+set} != xset; then
- if test "${glibcxx_cv_func_finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27528,7 +27750,7 @@ $as_echo "$glibcxx_cv_func_finitel_use" >&6; }
for ac_func in finitel
do :
ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel"
-if test "x$ac_cv_func_finitel" = x""yes; then :
+if test "x$ac_cv_func_finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEL 1
_ACEOF
@@ -27541,7 +27763,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5
$as_echo_n "checking for _finitel declaration... " >&6; }
if test x${glibcxx_cv_func__finitel_use+set} != xset; then
- if test "${glibcxx_cv_func__finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27590,7 +27812,7 @@ $as_echo "$glibcxx_cv_func__finitel_use" >&6; }
for ac_func in _finitel
do :
ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel"
-if test "x$ac_cv_func__finitel" = x""yes; then :
+if test "x$ac_cv_func__finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEL 1
_ACEOF
@@ -27616,7 +27838,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5
$as_echo_n "checking for at_quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_at_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27660,7 +27882,7 @@ $as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; }
for ac_func in at_quick_exit
do :
ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit"
-if test "x$ac_cv_func_at_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_at_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_AT_QUICK_EXIT 1
_ACEOF
@@ -27674,7 +27896,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5
$as_echo_n "checking for quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27718,7 +27940,7 @@ $as_echo "$glibcxx_cv_func_quick_exit_use" >&6; }
for ac_func in quick_exit
do :
ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit"
-if test "x$ac_cv_func_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QUICK_EXIT 1
_ACEOF
@@ -27732,7 +27954,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5
$as_echo_n "checking for strtold declaration... " >&6; }
if test x${glibcxx_cv_func_strtold_use+set} != xset; then
- if test "${glibcxx_cv_func_strtold_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtold_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27776,7 +27998,7 @@ $as_echo "$glibcxx_cv_func_strtold_use" >&6; }
for ac_func in strtold
do :
ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold"
-if test "x$ac_cv_func_strtold" = x""yes; then :
+if test "x$ac_cv_func_strtold" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
@@ -27792,7 +28014,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5
$as_echo_n "checking for strtof declaration... " >&6; }
if test x${glibcxx_cv_func_strtof_use+set} != xset; then
- if test "${glibcxx_cv_func_strtof_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtof_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27836,7 +28058,7 @@ $as_echo "$glibcxx_cv_func_strtof_use" >&6; }
for ac_func in strtof
do :
ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof"
-if test "x$ac_cv_func_strtof" = x""yes; then :
+if test "x$ac_cv_func_strtof" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOF 1
_ACEOF
@@ -27857,7 +28079,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for \"/dev/random\" and \"/dev/urandom\" for std::random_device" >&5
$as_echo_n "checking for \"/dev/random\" and \"/dev/urandom\" for std::random_device... " >&6; }
- if test "${glibcxx_cv_dev_random+set}" = set; then :
+ if ${glibcxx_cv_dev_random+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -27896,7 +28118,7 @@ if test "${enable_tls+set}" = set; then :
enableval=$enable_tls;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -27906,13 +28128,13 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports thread-local storage" >&5
$as_echo_n "checking whether the target supports thread-local storage... " >&6; }
-if test "${gcc_cv_have_tls+set}" = set; then :
+if ${gcc_cv_have_tls+:} false; then :
$as_echo_n "(cached) " >&6
else
if test "$cross_compiling" = yes; then :
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -27928,7 +28150,7 @@ if ac_fn_c_try_link "$LINENO"; then :
chktls_save_CFLAGS="$CFLAGS"
CFLAGS="-fPIC $CFLAGS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -27936,7 +28158,7 @@ int f() { return 0; }
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -27972,7 +28194,7 @@ if ac_fn_c_try_run "$LINENO"; then :
chktls_save_LDFLAGS="$LDFLAGS"
LDFLAGS="-static $LDFLAGS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -27982,8 +28204,8 @@ if ac_fn_c_try_link "$LINENO"; then :
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run test program while cross compiling
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot run test program while cross compiling
+See \`config.log' for more details" "$LINENO" 5; }
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -28010,7 +28232,7 @@ rm -f core conftest.err conftest.$ac_objext \
for flag in '' '-pthread' '-lpthread'; do
CFLAGS="$flag $chktls_save_CFLAGS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -28039,8 +28261,8 @@ rm -f core conftest.err conftest.$ac_objext \
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run test program while cross compiling
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot run test program while cross compiling
+See \`config.log' for more details" "$LINENO" 5; }
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -28102,8 +28324,7 @@ $as_echo "#define HAVE_TLS 1" >>confdefs.h
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -28115,8 +28336,7 @@ done
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -28127,7 +28347,7 @@ done
for ac_func in _wfopen
do :
ac_fn_c_check_func "$LINENO" "_wfopen" "ac_cv_func__wfopen"
-if test "x$ac_cv_func__wfopen" = x""yes; then :
+if test "x$ac_cv_func__wfopen" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__WFOPEN 1
_ACEOF
@@ -28213,7 +28433,7 @@ else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
$as_echo_n "checking for non-GNU ld... " >&6; }
fi
-if test "${acl_cv_path_LD+set}" = set; then :
+if ${acl_cv_path_LD+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -z "$LD"; then
@@ -28246,10 +28466,10 @@ else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
-test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5
+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
-if test "${acl_cv_prog_gnu_ld+set}" = set; then :
+if ${acl_cv_prog_gnu_ld+:} false; then :
$as_echo_n "(cached) " >&6
else
# I'd rather use --version here, but apparently some GNU ld's only accept -v.
@@ -28267,7 +28487,7 @@ with_gnu_ld=$acl_cv_prog_gnu_ld
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5
$as_echo_n "checking for shared library run path origin... " >&6; }
-if test "${acl_cv_rpath+set}" = set; then :
+if ${acl_cv_rpath+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -28685,7 +28905,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5
$as_echo_n "checking for iconv... " >&6; }
-if test "${am_cv_func_iconv+set}" = set; then :
+if ${am_cv_func_iconv+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -28694,7 +28914,7 @@ else
am_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $INCICONV"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -28724,7 +28944,7 @@ rm -f core conftest.err conftest.$ac_objext \
CPPFLAGS="$CPPFLAGS -I../libiconv/include"
LIBS="$LIBS ../libiconv/lib/$_libs/libiconv.a"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -28763,7 +28983,7 @@ rm -f core conftest.err conftest.$ac_objext \
CPPFLAGS="$LIBS $INCICONV"
LIBS="$LIBS $LIBICONV"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -28835,7 +29055,7 @@ $as_echo "$LIBICONV" >&6; }
if test "$am_cv_func_iconv" = yes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5
$as_echo_n "checking for iconv declaration... " >&6; }
- if test "${am_cv_proto_iconv+set}" = set; then :
+ if ${am_cv_proto_iconv+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29159,7 +29379,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -29236,13 +29456,13 @@ $as_echo "$ac_ld_relro" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -29273,7 +29493,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
libm="-lm"
fi
@@ -29285,7 +29505,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5
$as_echo_n "checking for isinf declaration... " >&6; }
if test x${glibcxx_cv_func_isinf_use+set} != xset; then
- if test "${glibcxx_cv_func_isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29334,7 +29554,7 @@ $as_echo "$glibcxx_cv_func_isinf_use" >&6; }
for ac_func in isinf
do :
ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf"
-if test "x$ac_cv_func_isinf" = x""yes; then :
+if test "x$ac_cv_func_isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINF 1
_ACEOF
@@ -29347,7 +29567,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5
$as_echo_n "checking for _isinf declaration... " >&6; }
if test x${glibcxx_cv_func__isinf_use+set} != xset; then
- if test "${glibcxx_cv_func__isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29396,7 +29616,7 @@ $as_echo "$glibcxx_cv_func__isinf_use" >&6; }
for ac_func in _isinf
do :
ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf"
-if test "x$ac_cv_func__isinf" = x""yes; then :
+if test "x$ac_cv_func__isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINF 1
_ACEOF
@@ -29414,7 +29634,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5
$as_echo_n "checking for isnan declaration... " >&6; }
if test x${glibcxx_cv_func_isnan_use+set} != xset; then
- if test "${glibcxx_cv_func_isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29463,7 +29683,7 @@ $as_echo "$glibcxx_cv_func_isnan_use" >&6; }
for ac_func in isnan
do :
ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan"
-if test "x$ac_cv_func_isnan" = x""yes; then :
+if test "x$ac_cv_func_isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNAN 1
_ACEOF
@@ -29476,7 +29696,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5
$as_echo_n "checking for _isnan declaration... " >&6; }
if test x${glibcxx_cv_func__isnan_use+set} != xset; then
- if test "${glibcxx_cv_func__isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29525,7 +29745,7 @@ $as_echo "$glibcxx_cv_func__isnan_use" >&6; }
for ac_func in _isnan
do :
ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan"
-if test "x$ac_cv_func__isnan" = x""yes; then :
+if test "x$ac_cv_func__isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNAN 1
_ACEOF
@@ -29543,7 +29763,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5
$as_echo_n "checking for finite declaration... " >&6; }
if test x${glibcxx_cv_func_finite_use+set} != xset; then
- if test "${glibcxx_cv_func_finite_use+set}" = set; then :
+ if ${glibcxx_cv_func_finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29592,7 +29812,7 @@ $as_echo "$glibcxx_cv_func_finite_use" >&6; }
for ac_func in finite
do :
ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite"
-if test "x$ac_cv_func_finite" = x""yes; then :
+if test "x$ac_cv_func_finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITE 1
_ACEOF
@@ -29605,7 +29825,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5
$as_echo_n "checking for _finite declaration... " >&6; }
if test x${glibcxx_cv_func__finite_use+set} != xset; then
- if test "${glibcxx_cv_func__finite_use+set}" = set; then :
+ if ${glibcxx_cv_func__finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29654,7 +29874,7 @@ $as_echo "$glibcxx_cv_func__finite_use" >&6; }
for ac_func in _finite
do :
ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite"
-if test "x$ac_cv_func__finite" = x""yes; then :
+if test "x$ac_cv_func__finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITE 1
_ACEOF
@@ -29672,7 +29892,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5
$as_echo_n "checking for sincos declaration... " >&6; }
if test x${glibcxx_cv_func_sincos_use+set} != xset; then
- if test "${glibcxx_cv_func_sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29717,7 +29937,7 @@ $as_echo "$glibcxx_cv_func_sincos_use" >&6; }
for ac_func in sincos
do :
ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos"
-if test "x$ac_cv_func_sincos" = x""yes; then :
+if test "x$ac_cv_func_sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOS 1
_ACEOF
@@ -29730,7 +29950,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5
$as_echo_n "checking for _sincos declaration... " >&6; }
if test x${glibcxx_cv_func__sincos_use+set} != xset; then
- if test "${glibcxx_cv_func__sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29775,7 +29995,7 @@ $as_echo "$glibcxx_cv_func__sincos_use" >&6; }
for ac_func in _sincos
do :
ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos"
-if test "x$ac_cv_func__sincos" = x""yes; then :
+if test "x$ac_cv_func__sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOS 1
_ACEOF
@@ -29793,7 +30013,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5
$as_echo_n "checking for fpclass declaration... " >&6; }
if test x${glibcxx_cv_func_fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29842,7 +30062,7 @@ $as_echo "$glibcxx_cv_func_fpclass_use" >&6; }
for ac_func in fpclass
do :
ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass"
-if test "x$ac_cv_func_fpclass" = x""yes; then :
+if test "x$ac_cv_func_fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FPCLASS 1
_ACEOF
@@ -29855,7 +30075,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5
$as_echo_n "checking for _fpclass declaration... " >&6; }
if test x${glibcxx_cv_func__fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29904,7 +30124,7 @@ $as_echo "$glibcxx_cv_func__fpclass_use" >&6; }
for ac_func in _fpclass
do :
ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass"
-if test "x$ac_cv_func__fpclass" = x""yes; then :
+if test "x$ac_cv_func__fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FPCLASS 1
_ACEOF
@@ -29922,7 +30142,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5
$as_echo_n "checking for qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -29971,7 +30191,7 @@ $as_echo "$glibcxx_cv_func_qfpclass_use" >&6; }
for ac_func in qfpclass
do :
ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass"
-if test "x$ac_cv_func_qfpclass" = x""yes; then :
+if test "x$ac_cv_func_qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QFPCLASS 1
_ACEOF
@@ -29984,7 +30204,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5
$as_echo_n "checking for _qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30033,7 +30253,7 @@ $as_echo "$glibcxx_cv_func__qfpclass_use" >&6; }
for ac_func in _qfpclass
do :
ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass"
-if test "x$ac_cv_func__qfpclass" = x""yes; then :
+if test "x$ac_cv_func__qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__QFPCLASS 1
_ACEOF
@@ -30051,7 +30271,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5
$as_echo_n "checking for hypot declaration... " >&6; }
if test x${glibcxx_cv_func_hypot_use+set} != xset; then
- if test "${glibcxx_cv_func_hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30096,7 +30316,7 @@ $as_echo "$glibcxx_cv_func_hypot_use" >&6; }
for ac_func in hypot
do :
ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot"
-if test "x$ac_cv_func_hypot" = x""yes; then :
+if test "x$ac_cv_func_hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOT 1
_ACEOF
@@ -30109,7 +30329,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5
$as_echo_n "checking for _hypot declaration... " >&6; }
if test x${glibcxx_cv_func__hypot_use+set} != xset; then
- if test "${glibcxx_cv_func__hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30154,7 +30374,7 @@ $as_echo "$glibcxx_cv_func__hypot_use" >&6; }
for ac_func in _hypot
do :
ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot"
-if test "x$ac_cv_func__hypot" = x""yes; then :
+if test "x$ac_cv_func__hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOT 1
_ACEOF
@@ -30171,7 +30391,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5
$as_echo_n "checking for float trig functions... " >&6; }
- if test "${glibcxx_cv_func_float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30214,8 +30434,7 @@ $as_echo "$glibcxx_cv_func_float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -30226,7 +30445,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5
$as_echo_n "checking for _float trig functions... " >&6; }
- if test "${glibcxx_cv_func__float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30269,8 +30488,7 @@ $as_echo "$glibcxx_cv_func__float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -30287,7 +30505,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5
$as_echo_n "checking for float round functions... " >&6; }
- if test "${glibcxx_cv_func_float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30330,8 +30548,7 @@ $as_echo "$glibcxx_cv_func_float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -30342,7 +30559,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5
$as_echo_n "checking for _float round functions... " >&6; }
- if test "${glibcxx_cv_func__float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30385,8 +30602,7 @@ $as_echo "$glibcxx_cv_func__float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -30405,7 +30621,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5
$as_echo_n "checking for expf declaration... " >&6; }
if test x${glibcxx_cv_func_expf_use+set} != xset; then
- if test "${glibcxx_cv_func_expf_use+set}" = set; then :
+ if ${glibcxx_cv_func_expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30454,7 +30670,7 @@ $as_echo "$glibcxx_cv_func_expf_use" >&6; }
for ac_func in expf
do :
ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf"
-if test "x$ac_cv_func_expf" = x""yes; then :
+if test "x$ac_cv_func_expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPF 1
_ACEOF
@@ -30467,7 +30683,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5
$as_echo_n "checking for _expf declaration... " >&6; }
if test x${glibcxx_cv_func__expf_use+set} != xset; then
- if test "${glibcxx_cv_func__expf_use+set}" = set; then :
+ if ${glibcxx_cv_func__expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30516,7 +30732,7 @@ $as_echo "$glibcxx_cv_func__expf_use" >&6; }
for ac_func in _expf
do :
ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf"
-if test "x$ac_cv_func__expf" = x""yes; then :
+if test "x$ac_cv_func__expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPF 1
_ACEOF
@@ -30534,7 +30750,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5
$as_echo_n "checking for isnanf declaration... " >&6; }
if test x${glibcxx_cv_func_isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30583,7 +30799,7 @@ $as_echo "$glibcxx_cv_func_isnanf_use" >&6; }
for ac_func in isnanf
do :
ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf"
-if test "x$ac_cv_func_isnanf" = x""yes; then :
+if test "x$ac_cv_func_isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANF 1
_ACEOF
@@ -30596,7 +30812,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5
$as_echo_n "checking for _isnanf declaration... " >&6; }
if test x${glibcxx_cv_func__isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30645,7 +30861,7 @@ $as_echo "$glibcxx_cv_func__isnanf_use" >&6; }
for ac_func in _isnanf
do :
ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf"
-if test "x$ac_cv_func__isnanf" = x""yes; then :
+if test "x$ac_cv_func__isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANF 1
_ACEOF
@@ -30663,7 +30879,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5
$as_echo_n "checking for isinff declaration... " >&6; }
if test x${glibcxx_cv_func_isinff_use+set} != xset; then
- if test "${glibcxx_cv_func_isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30712,7 +30928,7 @@ $as_echo "$glibcxx_cv_func_isinff_use" >&6; }
for ac_func in isinff
do :
ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff"
-if test "x$ac_cv_func_isinff" = x""yes; then :
+if test "x$ac_cv_func_isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFF 1
_ACEOF
@@ -30725,7 +30941,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5
$as_echo_n "checking for _isinff declaration... " >&6; }
if test x${glibcxx_cv_func__isinff_use+set} != xset; then
- if test "${glibcxx_cv_func__isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30774,7 +30990,7 @@ $as_echo "$glibcxx_cv_func__isinff_use" >&6; }
for ac_func in _isinff
do :
ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff"
-if test "x$ac_cv_func__isinff" = x""yes; then :
+if test "x$ac_cv_func__isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFF 1
_ACEOF
@@ -30792,7 +31008,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5
$as_echo_n "checking for atan2f declaration... " >&6; }
if test x${glibcxx_cv_func_atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30837,7 +31053,7 @@ $as_echo "$glibcxx_cv_func_atan2f_use" >&6; }
for ac_func in atan2f
do :
ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f"
-if test "x$ac_cv_func_atan2f" = x""yes; then :
+if test "x$ac_cv_func_atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2F 1
_ACEOF
@@ -30850,7 +31066,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5
$as_echo_n "checking for _atan2f declaration... " >&6; }
if test x${glibcxx_cv_func__atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30895,7 +31111,7 @@ $as_echo "$glibcxx_cv_func__atan2f_use" >&6; }
for ac_func in _atan2f
do :
ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f"
-if test "x$ac_cv_func__atan2f" = x""yes; then :
+if test "x$ac_cv_func__atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2F 1
_ACEOF
@@ -30913,7 +31129,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5
$as_echo_n "checking for fabsf declaration... " >&6; }
if test x${glibcxx_cv_func_fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -30962,7 +31178,7 @@ $as_echo "$glibcxx_cv_func_fabsf_use" >&6; }
for ac_func in fabsf
do :
ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf"
-if test "x$ac_cv_func_fabsf" = x""yes; then :
+if test "x$ac_cv_func_fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSF 1
_ACEOF
@@ -30975,7 +31191,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5
$as_echo_n "checking for _fabsf declaration... " >&6; }
if test x${glibcxx_cv_func__fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31024,7 +31240,7 @@ $as_echo "$glibcxx_cv_func__fabsf_use" >&6; }
for ac_func in _fabsf
do :
ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf"
-if test "x$ac_cv_func__fabsf" = x""yes; then :
+if test "x$ac_cv_func__fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSF 1
_ACEOF
@@ -31042,7 +31258,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5
$as_echo_n "checking for fmodf declaration... " >&6; }
if test x${glibcxx_cv_func_fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31087,7 +31303,7 @@ $as_echo "$glibcxx_cv_func_fmodf_use" >&6; }
for ac_func in fmodf
do :
ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf"
-if test "x$ac_cv_func_fmodf" = x""yes; then :
+if test "x$ac_cv_func_fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODF 1
_ACEOF
@@ -31100,7 +31316,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5
$as_echo_n "checking for _fmodf declaration... " >&6; }
if test x${glibcxx_cv_func__fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31145,7 +31361,7 @@ $as_echo "$glibcxx_cv_func__fmodf_use" >&6; }
for ac_func in _fmodf
do :
ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf"
-if test "x$ac_cv_func__fmodf" = x""yes; then :
+if test "x$ac_cv_func__fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODF 1
_ACEOF
@@ -31163,7 +31379,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5
$as_echo_n "checking for frexpf declaration... " >&6; }
if test x${glibcxx_cv_func_frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31208,7 +31424,7 @@ $as_echo "$glibcxx_cv_func_frexpf_use" >&6; }
for ac_func in frexpf
do :
ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf"
-if test "x$ac_cv_func_frexpf" = x""yes; then :
+if test "x$ac_cv_func_frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPF 1
_ACEOF
@@ -31221,7 +31437,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5
$as_echo_n "checking for _frexpf declaration... " >&6; }
if test x${glibcxx_cv_func__frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31266,7 +31482,7 @@ $as_echo "$glibcxx_cv_func__frexpf_use" >&6; }
for ac_func in _frexpf
do :
ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf"
-if test "x$ac_cv_func__frexpf" = x""yes; then :
+if test "x$ac_cv_func__frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPF 1
_ACEOF
@@ -31284,7 +31500,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5
$as_echo_n "checking for hypotf declaration... " >&6; }
if test x${glibcxx_cv_func_hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31329,7 +31545,7 @@ $as_echo "$glibcxx_cv_func_hypotf_use" >&6; }
for ac_func in hypotf
do :
ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf"
-if test "x$ac_cv_func_hypotf" = x""yes; then :
+if test "x$ac_cv_func_hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTF 1
_ACEOF
@@ -31342,7 +31558,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5
$as_echo_n "checking for _hypotf declaration... " >&6; }
if test x${glibcxx_cv_func__hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31387,7 +31603,7 @@ $as_echo "$glibcxx_cv_func__hypotf_use" >&6; }
for ac_func in _hypotf
do :
ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf"
-if test "x$ac_cv_func__hypotf" = x""yes; then :
+if test "x$ac_cv_func__hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTF 1
_ACEOF
@@ -31405,7 +31621,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5
$as_echo_n "checking for ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31450,7 +31666,7 @@ $as_echo "$glibcxx_cv_func_ldexpf_use" >&6; }
for ac_func in ldexpf
do :
ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf"
-if test "x$ac_cv_func_ldexpf" = x""yes; then :
+if test "x$ac_cv_func_ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPF 1
_ACEOF
@@ -31463,7 +31679,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5
$as_echo_n "checking for _ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31508,7 +31724,7 @@ $as_echo "$glibcxx_cv_func__ldexpf_use" >&6; }
for ac_func in _ldexpf
do :
ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf"
-if test "x$ac_cv_func__ldexpf" = x""yes; then :
+if test "x$ac_cv_func__ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPF 1
_ACEOF
@@ -31526,7 +31742,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5
$as_echo_n "checking for logf declaration... " >&6; }
if test x${glibcxx_cv_func_logf_use+set} != xset; then
- if test "${glibcxx_cv_func_logf_use+set}" = set; then :
+ if ${glibcxx_cv_func_logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31575,7 +31791,7 @@ $as_echo "$glibcxx_cv_func_logf_use" >&6; }
for ac_func in logf
do :
ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf"
-if test "x$ac_cv_func_logf" = x""yes; then :
+if test "x$ac_cv_func_logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGF 1
_ACEOF
@@ -31588,7 +31804,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5
$as_echo_n "checking for _logf declaration... " >&6; }
if test x${glibcxx_cv_func__logf_use+set} != xset; then
- if test "${glibcxx_cv_func__logf_use+set}" = set; then :
+ if ${glibcxx_cv_func__logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31637,7 +31853,7 @@ $as_echo "$glibcxx_cv_func__logf_use" >&6; }
for ac_func in _logf
do :
ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf"
-if test "x$ac_cv_func__logf" = x""yes; then :
+if test "x$ac_cv_func__logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGF 1
_ACEOF
@@ -31655,7 +31871,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5
$as_echo_n "checking for log10f declaration... " >&6; }
if test x${glibcxx_cv_func_log10f_use+set} != xset; then
- if test "${glibcxx_cv_func_log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31704,7 +31920,7 @@ $as_echo "$glibcxx_cv_func_log10f_use" >&6; }
for ac_func in log10f
do :
ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f"
-if test "x$ac_cv_func_log10f" = x""yes; then :
+if test "x$ac_cv_func_log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10F 1
_ACEOF
@@ -31717,7 +31933,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5
$as_echo_n "checking for _log10f declaration... " >&6; }
if test x${glibcxx_cv_func__log10f_use+set} != xset; then
- if test "${glibcxx_cv_func__log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31766,7 +31982,7 @@ $as_echo "$glibcxx_cv_func__log10f_use" >&6; }
for ac_func in _log10f
do :
ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f"
-if test "x$ac_cv_func__log10f" = x""yes; then :
+if test "x$ac_cv_func__log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10F 1
_ACEOF
@@ -31784,7 +32000,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5
$as_echo_n "checking for modff declaration... " >&6; }
if test x${glibcxx_cv_func_modff_use+set} != xset; then
- if test "${glibcxx_cv_func_modff_use+set}" = set; then :
+ if ${glibcxx_cv_func_modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31829,7 +32045,7 @@ $as_echo "$glibcxx_cv_func_modff_use" >&6; }
for ac_func in modff
do :
ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff"
-if test "x$ac_cv_func_modff" = x""yes; then :
+if test "x$ac_cv_func_modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFF 1
_ACEOF
@@ -31842,7 +32058,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5
$as_echo_n "checking for _modff declaration... " >&6; }
if test x${glibcxx_cv_func__modff_use+set} != xset; then
- if test "${glibcxx_cv_func__modff_use+set}" = set; then :
+ if ${glibcxx_cv_func__modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31887,7 +32103,7 @@ $as_echo "$glibcxx_cv_func__modff_use" >&6; }
for ac_func in _modff
do :
ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff"
-if test "x$ac_cv_func__modff" = x""yes; then :
+if test "x$ac_cv_func__modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFF 1
_ACEOF
@@ -31905,7 +32121,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5
$as_echo_n "checking for modf declaration... " >&6; }
if test x${glibcxx_cv_func_modf_use+set} != xset; then
- if test "${glibcxx_cv_func_modf_use+set}" = set; then :
+ if ${glibcxx_cv_func_modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -31950,7 +32166,7 @@ $as_echo "$glibcxx_cv_func_modf_use" >&6; }
for ac_func in modf
do :
ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf"
-if test "x$ac_cv_func_modf" = x""yes; then :
+if test "x$ac_cv_func_modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODF 1
_ACEOF
@@ -31963,7 +32179,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5
$as_echo_n "checking for _modf declaration... " >&6; }
if test x${glibcxx_cv_func__modf_use+set} != xset; then
- if test "${glibcxx_cv_func__modf_use+set}" = set; then :
+ if ${glibcxx_cv_func__modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32008,7 +32224,7 @@ $as_echo "$glibcxx_cv_func__modf_use" >&6; }
for ac_func in _modf
do :
ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf"
-if test "x$ac_cv_func__modf" = x""yes; then :
+if test "x$ac_cv_func__modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODF 1
_ACEOF
@@ -32026,7 +32242,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5
$as_echo_n "checking for powf declaration... " >&6; }
if test x${glibcxx_cv_func_powf_use+set} != xset; then
- if test "${glibcxx_cv_func_powf_use+set}" = set; then :
+ if ${glibcxx_cv_func_powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32071,7 +32287,7 @@ $as_echo "$glibcxx_cv_func_powf_use" >&6; }
for ac_func in powf
do :
ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf"
-if test "x$ac_cv_func_powf" = x""yes; then :
+if test "x$ac_cv_func_powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWF 1
_ACEOF
@@ -32084,7 +32300,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5
$as_echo_n "checking for _powf declaration... " >&6; }
if test x${glibcxx_cv_func__powf_use+set} != xset; then
- if test "${glibcxx_cv_func__powf_use+set}" = set; then :
+ if ${glibcxx_cv_func__powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32129,7 +32345,7 @@ $as_echo "$glibcxx_cv_func__powf_use" >&6; }
for ac_func in _powf
do :
ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf"
-if test "x$ac_cv_func__powf" = x""yes; then :
+if test "x$ac_cv_func__powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWF 1
_ACEOF
@@ -32147,7 +32363,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5
$as_echo_n "checking for sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32196,7 +32412,7 @@ $as_echo "$glibcxx_cv_func_sqrtf_use" >&6; }
for ac_func in sqrtf
do :
ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf"
-if test "x$ac_cv_func_sqrtf" = x""yes; then :
+if test "x$ac_cv_func_sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTF 1
_ACEOF
@@ -32209,7 +32425,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5
$as_echo_n "checking for _sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32258,7 +32474,7 @@ $as_echo "$glibcxx_cv_func__sqrtf_use" >&6; }
for ac_func in _sqrtf
do :
ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf"
-if test "x$ac_cv_func__sqrtf" = x""yes; then :
+if test "x$ac_cv_func__sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTF 1
_ACEOF
@@ -32276,7 +32492,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5
$as_echo_n "checking for sincosf declaration... " >&6; }
if test x${glibcxx_cv_func_sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32321,7 +32537,7 @@ $as_echo "$glibcxx_cv_func_sincosf_use" >&6; }
for ac_func in sincosf
do :
ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf"
-if test "x$ac_cv_func_sincosf" = x""yes; then :
+if test "x$ac_cv_func_sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSF 1
_ACEOF
@@ -32334,7 +32550,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5
$as_echo_n "checking for _sincosf declaration... " >&6; }
if test x${glibcxx_cv_func__sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32379,7 +32595,7 @@ $as_echo "$glibcxx_cv_func__sincosf_use" >&6; }
for ac_func in _sincosf
do :
ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf"
-if test "x$ac_cv_func__sincosf" = x""yes; then :
+if test "x$ac_cv_func__sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSF 1
_ACEOF
@@ -32397,7 +32613,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5
$as_echo_n "checking for finitef declaration... " >&6; }
if test x${glibcxx_cv_func_finitef_use+set} != xset; then
- if test "${glibcxx_cv_func_finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32446,7 +32662,7 @@ $as_echo "$glibcxx_cv_func_finitef_use" >&6; }
for ac_func in finitef
do :
ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef"
-if test "x$ac_cv_func_finitef" = x""yes; then :
+if test "x$ac_cv_func_finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEF 1
_ACEOF
@@ -32459,7 +32675,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5
$as_echo_n "checking for _finitef declaration... " >&6; }
if test x${glibcxx_cv_func__finitef_use+set} != xset; then
- if test "${glibcxx_cv_func__finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32508,7 +32724,7 @@ $as_echo "$glibcxx_cv_func__finitef_use" >&6; }
for ac_func in _finitef
do :
ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef"
-if test "x$ac_cv_func__finitef" = x""yes; then :
+if test "x$ac_cv_func__finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEF 1
_ACEOF
@@ -32525,7 +32741,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5
$as_echo_n "checking for long double trig functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32568,8 +32784,7 @@ $as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -32580,7 +32795,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5
$as_echo_n "checking for _long double trig functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32623,8 +32838,7 @@ $as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -32641,7 +32855,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5
$as_echo_n "checking for long double round functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32684,8 +32898,7 @@ $as_echo "$glibcxx_cv_func_long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -32696,7 +32909,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5
$as_echo_n "checking for _long double round functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32739,8 +32952,7 @@ $as_echo "$glibcxx_cv_func__long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -32759,7 +32971,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5
$as_echo_n "checking for isnanl declaration... " >&6; }
if test x${glibcxx_cv_func_isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32808,7 +33020,7 @@ $as_echo "$glibcxx_cv_func_isnanl_use" >&6; }
for ac_func in isnanl
do :
ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl"
-if test "x$ac_cv_func_isnanl" = x""yes; then :
+if test "x$ac_cv_func_isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANL 1
_ACEOF
@@ -32821,7 +33033,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5
$as_echo_n "checking for _isnanl declaration... " >&6; }
if test x${glibcxx_cv_func__isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32870,7 +33082,7 @@ $as_echo "$glibcxx_cv_func__isnanl_use" >&6; }
for ac_func in _isnanl
do :
ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl"
-if test "x$ac_cv_func__isnanl" = x""yes; then :
+if test "x$ac_cv_func__isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANL 1
_ACEOF
@@ -32888,7 +33100,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5
$as_echo_n "checking for isinfl declaration... " >&6; }
if test x${glibcxx_cv_func_isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func_isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32937,7 +33149,7 @@ $as_echo "$glibcxx_cv_func_isinfl_use" >&6; }
for ac_func in isinfl
do :
ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl"
-if test "x$ac_cv_func_isinfl" = x""yes; then :
+if test "x$ac_cv_func_isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFL 1
_ACEOF
@@ -32950,7 +33162,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5
$as_echo_n "checking for _isinfl declaration... " >&6; }
if test x${glibcxx_cv_func__isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func__isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -32999,7 +33211,7 @@ $as_echo "$glibcxx_cv_func__isinfl_use" >&6; }
for ac_func in _isinfl
do :
ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl"
-if test "x$ac_cv_func__isinfl" = x""yes; then :
+if test "x$ac_cv_func__isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFL 1
_ACEOF
@@ -33017,7 +33229,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5
$as_echo_n "checking for atan2l declaration... " >&6; }
if test x${glibcxx_cv_func_atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33062,7 +33274,7 @@ $as_echo "$glibcxx_cv_func_atan2l_use" >&6; }
for ac_func in atan2l
do :
ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l"
-if test "x$ac_cv_func_atan2l" = x""yes; then :
+if test "x$ac_cv_func_atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
_ACEOF
@@ -33075,7 +33287,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5
$as_echo_n "checking for _atan2l declaration... " >&6; }
if test x${glibcxx_cv_func__atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33120,7 +33332,7 @@ $as_echo "$glibcxx_cv_func__atan2l_use" >&6; }
for ac_func in _atan2l
do :
ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l"
-if test "x$ac_cv_func__atan2l" = x""yes; then :
+if test "x$ac_cv_func__atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2L 1
_ACEOF
@@ -33138,7 +33350,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5
$as_echo_n "checking for expl declaration... " >&6; }
if test x${glibcxx_cv_func_expl_use+set} != xset; then
- if test "${glibcxx_cv_func_expl_use+set}" = set; then :
+ if ${glibcxx_cv_func_expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33187,7 +33399,7 @@ $as_echo "$glibcxx_cv_func_expl_use" >&6; }
for ac_func in expl
do :
ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl"
-if test "x$ac_cv_func_expl" = x""yes; then :
+if test "x$ac_cv_func_expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
_ACEOF
@@ -33200,7 +33412,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5
$as_echo_n "checking for _expl declaration... " >&6; }
if test x${glibcxx_cv_func__expl_use+set} != xset; then
- if test "${glibcxx_cv_func__expl_use+set}" = set; then :
+ if ${glibcxx_cv_func__expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33249,7 +33461,7 @@ $as_echo "$glibcxx_cv_func__expl_use" >&6; }
for ac_func in _expl
do :
ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl"
-if test "x$ac_cv_func__expl" = x""yes; then :
+if test "x$ac_cv_func__expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPL 1
_ACEOF
@@ -33267,7 +33479,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5
$as_echo_n "checking for fabsl declaration... " >&6; }
if test x${glibcxx_cv_func_fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33316,7 +33528,7 @@ $as_echo "$glibcxx_cv_func_fabsl_use" >&6; }
for ac_func in fabsl
do :
ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl"
-if test "x$ac_cv_func_fabsl" = x""yes; then :
+if test "x$ac_cv_func_fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSL 1
_ACEOF
@@ -33329,7 +33541,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5
$as_echo_n "checking for _fabsl declaration... " >&6; }
if test x${glibcxx_cv_func__fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33378,7 +33590,7 @@ $as_echo "$glibcxx_cv_func__fabsl_use" >&6; }
for ac_func in _fabsl
do :
ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl"
-if test "x$ac_cv_func__fabsl" = x""yes; then :
+if test "x$ac_cv_func__fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSL 1
_ACEOF
@@ -33396,7 +33608,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5
$as_echo_n "checking for fmodl declaration... " >&6; }
if test x${glibcxx_cv_func_fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33441,7 +33653,7 @@ $as_echo "$glibcxx_cv_func_fmodl_use" >&6; }
for ac_func in fmodl
do :
ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl"
-if test "x$ac_cv_func_fmodl" = x""yes; then :
+if test "x$ac_cv_func_fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
_ACEOF
@@ -33454,7 +33666,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5
$as_echo_n "checking for _fmodl declaration... " >&6; }
if test x${glibcxx_cv_func__fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33499,7 +33711,7 @@ $as_echo "$glibcxx_cv_func__fmodl_use" >&6; }
for ac_func in _fmodl
do :
ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl"
-if test "x$ac_cv_func__fmodl" = x""yes; then :
+if test "x$ac_cv_func__fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODL 1
_ACEOF
@@ -33517,7 +33729,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5
$as_echo_n "checking for frexpl declaration... " >&6; }
if test x${glibcxx_cv_func_frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33562,7 +33774,7 @@ $as_echo "$glibcxx_cv_func_frexpl_use" >&6; }
for ac_func in frexpl
do :
ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl"
-if test "x$ac_cv_func_frexpl" = x""yes; then :
+if test "x$ac_cv_func_frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPL 1
_ACEOF
@@ -33575,7 +33787,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5
$as_echo_n "checking for _frexpl declaration... " >&6; }
if test x${glibcxx_cv_func__frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33620,7 +33832,7 @@ $as_echo "$glibcxx_cv_func__frexpl_use" >&6; }
for ac_func in _frexpl
do :
ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl"
-if test "x$ac_cv_func__frexpl" = x""yes; then :
+if test "x$ac_cv_func__frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPL 1
_ACEOF
@@ -33638,7 +33850,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5
$as_echo_n "checking for hypotl declaration... " >&6; }
if test x${glibcxx_cv_func_hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33683,7 +33895,7 @@ $as_echo "$glibcxx_cv_func_hypotl_use" >&6; }
for ac_func in hypotl
do :
ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl"
-if test "x$ac_cv_func_hypotl" = x""yes; then :
+if test "x$ac_cv_func_hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTL 1
_ACEOF
@@ -33696,7 +33908,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5
$as_echo_n "checking for _hypotl declaration... " >&6; }
if test x${glibcxx_cv_func__hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33741,7 +33953,7 @@ $as_echo "$glibcxx_cv_func__hypotl_use" >&6; }
for ac_func in _hypotl
do :
ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl"
-if test "x$ac_cv_func__hypotl" = x""yes; then :
+if test "x$ac_cv_func__hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTL 1
_ACEOF
@@ -33759,7 +33971,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5
$as_echo_n "checking for ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33804,7 +34016,7 @@ $as_echo "$glibcxx_cv_func_ldexpl_use" >&6; }
for ac_func in ldexpl
do :
ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl"
-if test "x$ac_cv_func_ldexpl" = x""yes; then :
+if test "x$ac_cv_func_ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPL 1
_ACEOF
@@ -33817,7 +34029,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5
$as_echo_n "checking for _ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33862,7 +34074,7 @@ $as_echo "$glibcxx_cv_func__ldexpl_use" >&6; }
for ac_func in _ldexpl
do :
ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl"
-if test "x$ac_cv_func__ldexpl" = x""yes; then :
+if test "x$ac_cv_func__ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPL 1
_ACEOF
@@ -33880,7 +34092,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5
$as_echo_n "checking for logl declaration... " >&6; }
if test x${glibcxx_cv_func_logl_use+set} != xset; then
- if test "${glibcxx_cv_func_logl_use+set}" = set; then :
+ if ${glibcxx_cv_func_logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33929,7 +34141,7 @@ $as_echo "$glibcxx_cv_func_logl_use" >&6; }
for ac_func in logl
do :
ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl"
-if test "x$ac_cv_func_logl" = x""yes; then :
+if test "x$ac_cv_func_logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
_ACEOF
@@ -33942,7 +34154,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5
$as_echo_n "checking for _logl declaration... " >&6; }
if test x${glibcxx_cv_func__logl_use+set} != xset; then
- if test "${glibcxx_cv_func__logl_use+set}" = set; then :
+ if ${glibcxx_cv_func__logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -33991,7 +34203,7 @@ $as_echo "$glibcxx_cv_func__logl_use" >&6; }
for ac_func in _logl
do :
ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl"
-if test "x$ac_cv_func__logl" = x""yes; then :
+if test "x$ac_cv_func__logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGL 1
_ACEOF
@@ -34009,7 +34221,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5
$as_echo_n "checking for log10l declaration... " >&6; }
if test x${glibcxx_cv_func_log10l_use+set} != xset; then
- if test "${glibcxx_cv_func_log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34058,7 +34270,7 @@ $as_echo "$glibcxx_cv_func_log10l_use" >&6; }
for ac_func in log10l
do :
ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l"
-if test "x$ac_cv_func_log10l" = x""yes; then :
+if test "x$ac_cv_func_log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
_ACEOF
@@ -34071,7 +34283,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5
$as_echo_n "checking for _log10l declaration... " >&6; }
if test x${glibcxx_cv_func__log10l_use+set} != xset; then
- if test "${glibcxx_cv_func__log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34120,7 +34332,7 @@ $as_echo "$glibcxx_cv_func__log10l_use" >&6; }
for ac_func in _log10l
do :
ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l"
-if test "x$ac_cv_func__log10l" = x""yes; then :
+if test "x$ac_cv_func__log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10L 1
_ACEOF
@@ -34138,7 +34350,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5
$as_echo_n "checking for modfl declaration... " >&6; }
if test x${glibcxx_cv_func_modfl_use+set} != xset; then
- if test "${glibcxx_cv_func_modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34183,7 +34395,7 @@ $as_echo "$glibcxx_cv_func_modfl_use" >&6; }
for ac_func in modfl
do :
ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl"
-if test "x$ac_cv_func_modfl" = x""yes; then :
+if test "x$ac_cv_func_modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFL 1
_ACEOF
@@ -34196,7 +34408,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5
$as_echo_n "checking for _modfl declaration... " >&6; }
if test x${glibcxx_cv_func__modfl_use+set} != xset; then
- if test "${glibcxx_cv_func__modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34241,7 +34453,7 @@ $as_echo "$glibcxx_cv_func__modfl_use" >&6; }
for ac_func in _modfl
do :
ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl"
-if test "x$ac_cv_func__modfl" = x""yes; then :
+if test "x$ac_cv_func__modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFL 1
_ACEOF
@@ -34259,7 +34471,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5
$as_echo_n "checking for powl declaration... " >&6; }
if test x${glibcxx_cv_func_powl_use+set} != xset; then
- if test "${glibcxx_cv_func_powl_use+set}" = set; then :
+ if ${glibcxx_cv_func_powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34304,7 +34516,7 @@ $as_echo "$glibcxx_cv_func_powl_use" >&6; }
for ac_func in powl
do :
ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl"
-if test "x$ac_cv_func_powl" = x""yes; then :
+if test "x$ac_cv_func_powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
_ACEOF
@@ -34317,7 +34529,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5
$as_echo_n "checking for _powl declaration... " >&6; }
if test x${glibcxx_cv_func__powl_use+set} != xset; then
- if test "${glibcxx_cv_func__powl_use+set}" = set; then :
+ if ${glibcxx_cv_func__powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34362,7 +34574,7 @@ $as_echo "$glibcxx_cv_func__powl_use" >&6; }
for ac_func in _powl
do :
ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl"
-if test "x$ac_cv_func__powl" = x""yes; then :
+if test "x$ac_cv_func__powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWL 1
_ACEOF
@@ -34380,7 +34592,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5
$as_echo_n "checking for sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34429,7 +34641,7 @@ $as_echo "$glibcxx_cv_func_sqrtl_use" >&6; }
for ac_func in sqrtl
do :
ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl"
-if test "x$ac_cv_func_sqrtl" = x""yes; then :
+if test "x$ac_cv_func_sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
_ACEOF
@@ -34442,7 +34654,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5
$as_echo_n "checking for _sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34491,7 +34703,7 @@ $as_echo "$glibcxx_cv_func__sqrtl_use" >&6; }
for ac_func in _sqrtl
do :
ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl"
-if test "x$ac_cv_func__sqrtl" = x""yes; then :
+if test "x$ac_cv_func__sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTL 1
_ACEOF
@@ -34509,7 +34721,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5
$as_echo_n "checking for sincosl declaration... " >&6; }
if test x${glibcxx_cv_func_sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34554,7 +34766,7 @@ $as_echo "$glibcxx_cv_func_sincosl_use" >&6; }
for ac_func in sincosl
do :
ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl"
-if test "x$ac_cv_func_sincosl" = x""yes; then :
+if test "x$ac_cv_func_sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSL 1
_ACEOF
@@ -34567,7 +34779,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5
$as_echo_n "checking for _sincosl declaration... " >&6; }
if test x${glibcxx_cv_func__sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34612,7 +34824,7 @@ $as_echo "$glibcxx_cv_func__sincosl_use" >&6; }
for ac_func in _sincosl
do :
ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl"
-if test "x$ac_cv_func__sincosl" = x""yes; then :
+if test "x$ac_cv_func__sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSL 1
_ACEOF
@@ -34630,7 +34842,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5
$as_echo_n "checking for finitel declaration... " >&6; }
if test x${glibcxx_cv_func_finitel_use+set} != xset; then
- if test "${glibcxx_cv_func_finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34679,7 +34891,7 @@ $as_echo "$glibcxx_cv_func_finitel_use" >&6; }
for ac_func in finitel
do :
ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel"
-if test "x$ac_cv_func_finitel" = x""yes; then :
+if test "x$ac_cv_func_finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEL 1
_ACEOF
@@ -34692,7 +34904,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5
$as_echo_n "checking for _finitel declaration... " >&6; }
if test x${glibcxx_cv_func__finitel_use+set} != xset; then
- if test "${glibcxx_cv_func__finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34741,7 +34953,7 @@ $as_echo "$glibcxx_cv_func__finitel_use" >&6; }
for ac_func in _finitel
do :
ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel"
-if test "x$ac_cv_func__finitel" = x""yes; then :
+if test "x$ac_cv_func__finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEL 1
_ACEOF
@@ -34767,7 +34979,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5
$as_echo_n "checking for at_quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_at_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34811,7 +35023,7 @@ $as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; }
for ac_func in at_quick_exit
do :
ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit"
-if test "x$ac_cv_func_at_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_at_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_AT_QUICK_EXIT 1
_ACEOF
@@ -34825,7 +35037,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5
$as_echo_n "checking for quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34869,7 +35081,7 @@ $as_echo "$glibcxx_cv_func_quick_exit_use" >&6; }
for ac_func in quick_exit
do :
ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit"
-if test "x$ac_cv_func_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QUICK_EXIT 1
_ACEOF
@@ -34883,7 +35095,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5
$as_echo_n "checking for strtold declaration... " >&6; }
if test x${glibcxx_cv_func_strtold_use+set} != xset; then
- if test "${glibcxx_cv_func_strtold_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtold_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34927,7 +35139,7 @@ $as_echo "$glibcxx_cv_func_strtold_use" >&6; }
for ac_func in strtold
do :
ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold"
-if test "x$ac_cv_func_strtold" = x""yes; then :
+if test "x$ac_cv_func_strtold" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
@@ -34943,7 +35155,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5
$as_echo_n "checking for strtof declaration... " >&6; }
if test x${glibcxx_cv_func_strtof_use+set} != xset; then
- if test "${glibcxx_cv_func_strtof_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtof_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -34987,7 +35199,7 @@ $as_echo "$glibcxx_cv_func_strtof_use" >&6; }
for ac_func in strtof
do :
ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof"
-if test "x$ac_cv_func_strtof" = x""yes; then :
+if test "x$ac_cv_func_strtof" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOF 1
_ACEOF
@@ -35145,7 +35357,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -35222,13 +35434,13 @@ $as_echo "$ac_ld_relro" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -35259,7 +35471,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
libm="-lm"
fi
@@ -35271,7 +35483,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5
$as_echo_n "checking for isinf declaration... " >&6; }
if test x${glibcxx_cv_func_isinf_use+set} != xset; then
- if test "${glibcxx_cv_func_isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35320,7 +35532,7 @@ $as_echo "$glibcxx_cv_func_isinf_use" >&6; }
for ac_func in isinf
do :
ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf"
-if test "x$ac_cv_func_isinf" = x""yes; then :
+if test "x$ac_cv_func_isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINF 1
_ACEOF
@@ -35333,7 +35545,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5
$as_echo_n "checking for _isinf declaration... " >&6; }
if test x${glibcxx_cv_func__isinf_use+set} != xset; then
- if test "${glibcxx_cv_func__isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35382,7 +35594,7 @@ $as_echo "$glibcxx_cv_func__isinf_use" >&6; }
for ac_func in _isinf
do :
ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf"
-if test "x$ac_cv_func__isinf" = x""yes; then :
+if test "x$ac_cv_func__isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINF 1
_ACEOF
@@ -35400,7 +35612,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5
$as_echo_n "checking for isnan declaration... " >&6; }
if test x${glibcxx_cv_func_isnan_use+set} != xset; then
- if test "${glibcxx_cv_func_isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35449,7 +35661,7 @@ $as_echo "$glibcxx_cv_func_isnan_use" >&6; }
for ac_func in isnan
do :
ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan"
-if test "x$ac_cv_func_isnan" = x""yes; then :
+if test "x$ac_cv_func_isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNAN 1
_ACEOF
@@ -35462,7 +35674,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5
$as_echo_n "checking for _isnan declaration... " >&6; }
if test x${glibcxx_cv_func__isnan_use+set} != xset; then
- if test "${glibcxx_cv_func__isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35511,7 +35723,7 @@ $as_echo "$glibcxx_cv_func__isnan_use" >&6; }
for ac_func in _isnan
do :
ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan"
-if test "x$ac_cv_func__isnan" = x""yes; then :
+if test "x$ac_cv_func__isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNAN 1
_ACEOF
@@ -35529,7 +35741,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5
$as_echo_n "checking for finite declaration... " >&6; }
if test x${glibcxx_cv_func_finite_use+set} != xset; then
- if test "${glibcxx_cv_func_finite_use+set}" = set; then :
+ if ${glibcxx_cv_func_finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35578,7 +35790,7 @@ $as_echo "$glibcxx_cv_func_finite_use" >&6; }
for ac_func in finite
do :
ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite"
-if test "x$ac_cv_func_finite" = x""yes; then :
+if test "x$ac_cv_func_finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITE 1
_ACEOF
@@ -35591,7 +35803,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5
$as_echo_n "checking for _finite declaration... " >&6; }
if test x${glibcxx_cv_func__finite_use+set} != xset; then
- if test "${glibcxx_cv_func__finite_use+set}" = set; then :
+ if ${glibcxx_cv_func__finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35640,7 +35852,7 @@ $as_echo "$glibcxx_cv_func__finite_use" >&6; }
for ac_func in _finite
do :
ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite"
-if test "x$ac_cv_func__finite" = x""yes; then :
+if test "x$ac_cv_func__finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITE 1
_ACEOF
@@ -35658,7 +35870,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5
$as_echo_n "checking for sincos declaration... " >&6; }
if test x${glibcxx_cv_func_sincos_use+set} != xset; then
- if test "${glibcxx_cv_func_sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35703,7 +35915,7 @@ $as_echo "$glibcxx_cv_func_sincos_use" >&6; }
for ac_func in sincos
do :
ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos"
-if test "x$ac_cv_func_sincos" = x""yes; then :
+if test "x$ac_cv_func_sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOS 1
_ACEOF
@@ -35716,7 +35928,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5
$as_echo_n "checking for _sincos declaration... " >&6; }
if test x${glibcxx_cv_func__sincos_use+set} != xset; then
- if test "${glibcxx_cv_func__sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35761,7 +35973,7 @@ $as_echo "$glibcxx_cv_func__sincos_use" >&6; }
for ac_func in _sincos
do :
ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos"
-if test "x$ac_cv_func__sincos" = x""yes; then :
+if test "x$ac_cv_func__sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOS 1
_ACEOF
@@ -35779,7 +35991,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5
$as_echo_n "checking for fpclass declaration... " >&6; }
if test x${glibcxx_cv_func_fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35828,7 +36040,7 @@ $as_echo "$glibcxx_cv_func_fpclass_use" >&6; }
for ac_func in fpclass
do :
ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass"
-if test "x$ac_cv_func_fpclass" = x""yes; then :
+if test "x$ac_cv_func_fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FPCLASS 1
_ACEOF
@@ -35841,7 +36053,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5
$as_echo_n "checking for _fpclass declaration... " >&6; }
if test x${glibcxx_cv_func__fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35890,7 +36102,7 @@ $as_echo "$glibcxx_cv_func__fpclass_use" >&6; }
for ac_func in _fpclass
do :
ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass"
-if test "x$ac_cv_func__fpclass" = x""yes; then :
+if test "x$ac_cv_func__fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FPCLASS 1
_ACEOF
@@ -35908,7 +36120,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5
$as_echo_n "checking for qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -35957,7 +36169,7 @@ $as_echo "$glibcxx_cv_func_qfpclass_use" >&6; }
for ac_func in qfpclass
do :
ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass"
-if test "x$ac_cv_func_qfpclass" = x""yes; then :
+if test "x$ac_cv_func_qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QFPCLASS 1
_ACEOF
@@ -35970,7 +36182,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5
$as_echo_n "checking for _qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36019,7 +36231,7 @@ $as_echo "$glibcxx_cv_func__qfpclass_use" >&6; }
for ac_func in _qfpclass
do :
ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass"
-if test "x$ac_cv_func__qfpclass" = x""yes; then :
+if test "x$ac_cv_func__qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__QFPCLASS 1
_ACEOF
@@ -36037,7 +36249,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5
$as_echo_n "checking for hypot declaration... " >&6; }
if test x${glibcxx_cv_func_hypot_use+set} != xset; then
- if test "${glibcxx_cv_func_hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36082,7 +36294,7 @@ $as_echo "$glibcxx_cv_func_hypot_use" >&6; }
for ac_func in hypot
do :
ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot"
-if test "x$ac_cv_func_hypot" = x""yes; then :
+if test "x$ac_cv_func_hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOT 1
_ACEOF
@@ -36095,7 +36307,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5
$as_echo_n "checking for _hypot declaration... " >&6; }
if test x${glibcxx_cv_func__hypot_use+set} != xset; then
- if test "${glibcxx_cv_func__hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36140,7 +36352,7 @@ $as_echo "$glibcxx_cv_func__hypot_use" >&6; }
for ac_func in _hypot
do :
ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot"
-if test "x$ac_cv_func__hypot" = x""yes; then :
+if test "x$ac_cv_func__hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOT 1
_ACEOF
@@ -36157,7 +36369,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5
$as_echo_n "checking for float trig functions... " >&6; }
- if test "${glibcxx_cv_func_float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36200,8 +36412,7 @@ $as_echo "$glibcxx_cv_func_float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -36212,7 +36423,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5
$as_echo_n "checking for _float trig functions... " >&6; }
- if test "${glibcxx_cv_func__float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36255,8 +36466,7 @@ $as_echo "$glibcxx_cv_func__float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -36273,7 +36483,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5
$as_echo_n "checking for float round functions... " >&6; }
- if test "${glibcxx_cv_func_float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36316,8 +36526,7 @@ $as_echo "$glibcxx_cv_func_float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -36328,7 +36537,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5
$as_echo_n "checking for _float round functions... " >&6; }
- if test "${glibcxx_cv_func__float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36371,8 +36580,7 @@ $as_echo "$glibcxx_cv_func__float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -36391,7 +36599,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5
$as_echo_n "checking for expf declaration... " >&6; }
if test x${glibcxx_cv_func_expf_use+set} != xset; then
- if test "${glibcxx_cv_func_expf_use+set}" = set; then :
+ if ${glibcxx_cv_func_expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36440,7 +36648,7 @@ $as_echo "$glibcxx_cv_func_expf_use" >&6; }
for ac_func in expf
do :
ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf"
-if test "x$ac_cv_func_expf" = x""yes; then :
+if test "x$ac_cv_func_expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPF 1
_ACEOF
@@ -36453,7 +36661,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5
$as_echo_n "checking for _expf declaration... " >&6; }
if test x${glibcxx_cv_func__expf_use+set} != xset; then
- if test "${glibcxx_cv_func__expf_use+set}" = set; then :
+ if ${glibcxx_cv_func__expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36502,7 +36710,7 @@ $as_echo "$glibcxx_cv_func__expf_use" >&6; }
for ac_func in _expf
do :
ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf"
-if test "x$ac_cv_func__expf" = x""yes; then :
+if test "x$ac_cv_func__expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPF 1
_ACEOF
@@ -36520,7 +36728,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5
$as_echo_n "checking for isnanf declaration... " >&6; }
if test x${glibcxx_cv_func_isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36569,7 +36777,7 @@ $as_echo "$glibcxx_cv_func_isnanf_use" >&6; }
for ac_func in isnanf
do :
ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf"
-if test "x$ac_cv_func_isnanf" = x""yes; then :
+if test "x$ac_cv_func_isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANF 1
_ACEOF
@@ -36582,7 +36790,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5
$as_echo_n "checking for _isnanf declaration... " >&6; }
if test x${glibcxx_cv_func__isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36631,7 +36839,7 @@ $as_echo "$glibcxx_cv_func__isnanf_use" >&6; }
for ac_func in _isnanf
do :
ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf"
-if test "x$ac_cv_func__isnanf" = x""yes; then :
+if test "x$ac_cv_func__isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANF 1
_ACEOF
@@ -36649,7 +36857,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5
$as_echo_n "checking for isinff declaration... " >&6; }
if test x${glibcxx_cv_func_isinff_use+set} != xset; then
- if test "${glibcxx_cv_func_isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36698,7 +36906,7 @@ $as_echo "$glibcxx_cv_func_isinff_use" >&6; }
for ac_func in isinff
do :
ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff"
-if test "x$ac_cv_func_isinff" = x""yes; then :
+if test "x$ac_cv_func_isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFF 1
_ACEOF
@@ -36711,7 +36919,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5
$as_echo_n "checking for _isinff declaration... " >&6; }
if test x${glibcxx_cv_func__isinff_use+set} != xset; then
- if test "${glibcxx_cv_func__isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36760,7 +36968,7 @@ $as_echo "$glibcxx_cv_func__isinff_use" >&6; }
for ac_func in _isinff
do :
ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff"
-if test "x$ac_cv_func__isinff" = x""yes; then :
+if test "x$ac_cv_func__isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFF 1
_ACEOF
@@ -36778,7 +36986,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5
$as_echo_n "checking for atan2f declaration... " >&6; }
if test x${glibcxx_cv_func_atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36823,7 +37031,7 @@ $as_echo "$glibcxx_cv_func_atan2f_use" >&6; }
for ac_func in atan2f
do :
ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f"
-if test "x$ac_cv_func_atan2f" = x""yes; then :
+if test "x$ac_cv_func_atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2F 1
_ACEOF
@@ -36836,7 +37044,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5
$as_echo_n "checking for _atan2f declaration... " >&6; }
if test x${glibcxx_cv_func__atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36881,7 +37089,7 @@ $as_echo "$glibcxx_cv_func__atan2f_use" >&6; }
for ac_func in _atan2f
do :
ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f"
-if test "x$ac_cv_func__atan2f" = x""yes; then :
+if test "x$ac_cv_func__atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2F 1
_ACEOF
@@ -36899,7 +37107,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5
$as_echo_n "checking for fabsf declaration... " >&6; }
if test x${glibcxx_cv_func_fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -36948,7 +37156,7 @@ $as_echo "$glibcxx_cv_func_fabsf_use" >&6; }
for ac_func in fabsf
do :
ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf"
-if test "x$ac_cv_func_fabsf" = x""yes; then :
+if test "x$ac_cv_func_fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSF 1
_ACEOF
@@ -36961,7 +37169,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5
$as_echo_n "checking for _fabsf declaration... " >&6; }
if test x${glibcxx_cv_func__fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37010,7 +37218,7 @@ $as_echo "$glibcxx_cv_func__fabsf_use" >&6; }
for ac_func in _fabsf
do :
ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf"
-if test "x$ac_cv_func__fabsf" = x""yes; then :
+if test "x$ac_cv_func__fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSF 1
_ACEOF
@@ -37028,7 +37236,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5
$as_echo_n "checking for fmodf declaration... " >&6; }
if test x${glibcxx_cv_func_fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37073,7 +37281,7 @@ $as_echo "$glibcxx_cv_func_fmodf_use" >&6; }
for ac_func in fmodf
do :
ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf"
-if test "x$ac_cv_func_fmodf" = x""yes; then :
+if test "x$ac_cv_func_fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODF 1
_ACEOF
@@ -37086,7 +37294,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5
$as_echo_n "checking for _fmodf declaration... " >&6; }
if test x${glibcxx_cv_func__fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37131,7 +37339,7 @@ $as_echo "$glibcxx_cv_func__fmodf_use" >&6; }
for ac_func in _fmodf
do :
ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf"
-if test "x$ac_cv_func__fmodf" = x""yes; then :
+if test "x$ac_cv_func__fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODF 1
_ACEOF
@@ -37149,7 +37357,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5
$as_echo_n "checking for frexpf declaration... " >&6; }
if test x${glibcxx_cv_func_frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37194,7 +37402,7 @@ $as_echo "$glibcxx_cv_func_frexpf_use" >&6; }
for ac_func in frexpf
do :
ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf"
-if test "x$ac_cv_func_frexpf" = x""yes; then :
+if test "x$ac_cv_func_frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPF 1
_ACEOF
@@ -37207,7 +37415,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5
$as_echo_n "checking for _frexpf declaration... " >&6; }
if test x${glibcxx_cv_func__frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37252,7 +37460,7 @@ $as_echo "$glibcxx_cv_func__frexpf_use" >&6; }
for ac_func in _frexpf
do :
ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf"
-if test "x$ac_cv_func__frexpf" = x""yes; then :
+if test "x$ac_cv_func__frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPF 1
_ACEOF
@@ -37270,7 +37478,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5
$as_echo_n "checking for hypotf declaration... " >&6; }
if test x${glibcxx_cv_func_hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37315,7 +37523,7 @@ $as_echo "$glibcxx_cv_func_hypotf_use" >&6; }
for ac_func in hypotf
do :
ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf"
-if test "x$ac_cv_func_hypotf" = x""yes; then :
+if test "x$ac_cv_func_hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTF 1
_ACEOF
@@ -37328,7 +37536,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5
$as_echo_n "checking for _hypotf declaration... " >&6; }
if test x${glibcxx_cv_func__hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37373,7 +37581,7 @@ $as_echo "$glibcxx_cv_func__hypotf_use" >&6; }
for ac_func in _hypotf
do :
ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf"
-if test "x$ac_cv_func__hypotf" = x""yes; then :
+if test "x$ac_cv_func__hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTF 1
_ACEOF
@@ -37391,7 +37599,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5
$as_echo_n "checking for ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37436,7 +37644,7 @@ $as_echo "$glibcxx_cv_func_ldexpf_use" >&6; }
for ac_func in ldexpf
do :
ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf"
-if test "x$ac_cv_func_ldexpf" = x""yes; then :
+if test "x$ac_cv_func_ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPF 1
_ACEOF
@@ -37449,7 +37657,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5
$as_echo_n "checking for _ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37494,7 +37702,7 @@ $as_echo "$glibcxx_cv_func__ldexpf_use" >&6; }
for ac_func in _ldexpf
do :
ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf"
-if test "x$ac_cv_func__ldexpf" = x""yes; then :
+if test "x$ac_cv_func__ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPF 1
_ACEOF
@@ -37512,7 +37720,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5
$as_echo_n "checking for logf declaration... " >&6; }
if test x${glibcxx_cv_func_logf_use+set} != xset; then
- if test "${glibcxx_cv_func_logf_use+set}" = set; then :
+ if ${glibcxx_cv_func_logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37561,7 +37769,7 @@ $as_echo "$glibcxx_cv_func_logf_use" >&6; }
for ac_func in logf
do :
ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf"
-if test "x$ac_cv_func_logf" = x""yes; then :
+if test "x$ac_cv_func_logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGF 1
_ACEOF
@@ -37574,7 +37782,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5
$as_echo_n "checking for _logf declaration... " >&6; }
if test x${glibcxx_cv_func__logf_use+set} != xset; then
- if test "${glibcxx_cv_func__logf_use+set}" = set; then :
+ if ${glibcxx_cv_func__logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37623,7 +37831,7 @@ $as_echo "$glibcxx_cv_func__logf_use" >&6; }
for ac_func in _logf
do :
ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf"
-if test "x$ac_cv_func__logf" = x""yes; then :
+if test "x$ac_cv_func__logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGF 1
_ACEOF
@@ -37641,7 +37849,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5
$as_echo_n "checking for log10f declaration... " >&6; }
if test x${glibcxx_cv_func_log10f_use+set} != xset; then
- if test "${glibcxx_cv_func_log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37690,7 +37898,7 @@ $as_echo "$glibcxx_cv_func_log10f_use" >&6; }
for ac_func in log10f
do :
ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f"
-if test "x$ac_cv_func_log10f" = x""yes; then :
+if test "x$ac_cv_func_log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10F 1
_ACEOF
@@ -37703,7 +37911,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5
$as_echo_n "checking for _log10f declaration... " >&6; }
if test x${glibcxx_cv_func__log10f_use+set} != xset; then
- if test "${glibcxx_cv_func__log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37752,7 +37960,7 @@ $as_echo "$glibcxx_cv_func__log10f_use" >&6; }
for ac_func in _log10f
do :
ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f"
-if test "x$ac_cv_func__log10f" = x""yes; then :
+if test "x$ac_cv_func__log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10F 1
_ACEOF
@@ -37770,7 +37978,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5
$as_echo_n "checking for modff declaration... " >&6; }
if test x${glibcxx_cv_func_modff_use+set} != xset; then
- if test "${glibcxx_cv_func_modff_use+set}" = set; then :
+ if ${glibcxx_cv_func_modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37815,7 +38023,7 @@ $as_echo "$glibcxx_cv_func_modff_use" >&6; }
for ac_func in modff
do :
ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff"
-if test "x$ac_cv_func_modff" = x""yes; then :
+if test "x$ac_cv_func_modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFF 1
_ACEOF
@@ -37828,7 +38036,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5
$as_echo_n "checking for _modff declaration... " >&6; }
if test x${glibcxx_cv_func__modff_use+set} != xset; then
- if test "${glibcxx_cv_func__modff_use+set}" = set; then :
+ if ${glibcxx_cv_func__modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37873,7 +38081,7 @@ $as_echo "$glibcxx_cv_func__modff_use" >&6; }
for ac_func in _modff
do :
ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff"
-if test "x$ac_cv_func__modff" = x""yes; then :
+if test "x$ac_cv_func__modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFF 1
_ACEOF
@@ -37891,7 +38099,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5
$as_echo_n "checking for modf declaration... " >&6; }
if test x${glibcxx_cv_func_modf_use+set} != xset; then
- if test "${glibcxx_cv_func_modf_use+set}" = set; then :
+ if ${glibcxx_cv_func_modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37936,7 +38144,7 @@ $as_echo "$glibcxx_cv_func_modf_use" >&6; }
for ac_func in modf
do :
ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf"
-if test "x$ac_cv_func_modf" = x""yes; then :
+if test "x$ac_cv_func_modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODF 1
_ACEOF
@@ -37949,7 +38157,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5
$as_echo_n "checking for _modf declaration... " >&6; }
if test x${glibcxx_cv_func__modf_use+set} != xset; then
- if test "${glibcxx_cv_func__modf_use+set}" = set; then :
+ if ${glibcxx_cv_func__modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -37994,7 +38202,7 @@ $as_echo "$glibcxx_cv_func__modf_use" >&6; }
for ac_func in _modf
do :
ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf"
-if test "x$ac_cv_func__modf" = x""yes; then :
+if test "x$ac_cv_func__modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODF 1
_ACEOF
@@ -38012,7 +38220,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5
$as_echo_n "checking for powf declaration... " >&6; }
if test x${glibcxx_cv_func_powf_use+set} != xset; then
- if test "${glibcxx_cv_func_powf_use+set}" = set; then :
+ if ${glibcxx_cv_func_powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38057,7 +38265,7 @@ $as_echo "$glibcxx_cv_func_powf_use" >&6; }
for ac_func in powf
do :
ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf"
-if test "x$ac_cv_func_powf" = x""yes; then :
+if test "x$ac_cv_func_powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWF 1
_ACEOF
@@ -38070,7 +38278,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5
$as_echo_n "checking for _powf declaration... " >&6; }
if test x${glibcxx_cv_func__powf_use+set} != xset; then
- if test "${glibcxx_cv_func__powf_use+set}" = set; then :
+ if ${glibcxx_cv_func__powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38115,7 +38323,7 @@ $as_echo "$glibcxx_cv_func__powf_use" >&6; }
for ac_func in _powf
do :
ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf"
-if test "x$ac_cv_func__powf" = x""yes; then :
+if test "x$ac_cv_func__powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWF 1
_ACEOF
@@ -38133,7 +38341,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5
$as_echo_n "checking for sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38182,7 +38390,7 @@ $as_echo "$glibcxx_cv_func_sqrtf_use" >&6; }
for ac_func in sqrtf
do :
ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf"
-if test "x$ac_cv_func_sqrtf" = x""yes; then :
+if test "x$ac_cv_func_sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTF 1
_ACEOF
@@ -38195,7 +38403,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5
$as_echo_n "checking for _sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38244,7 +38452,7 @@ $as_echo "$glibcxx_cv_func__sqrtf_use" >&6; }
for ac_func in _sqrtf
do :
ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf"
-if test "x$ac_cv_func__sqrtf" = x""yes; then :
+if test "x$ac_cv_func__sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTF 1
_ACEOF
@@ -38262,7 +38470,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5
$as_echo_n "checking for sincosf declaration... " >&6; }
if test x${glibcxx_cv_func_sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38307,7 +38515,7 @@ $as_echo "$glibcxx_cv_func_sincosf_use" >&6; }
for ac_func in sincosf
do :
ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf"
-if test "x$ac_cv_func_sincosf" = x""yes; then :
+if test "x$ac_cv_func_sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSF 1
_ACEOF
@@ -38320,7 +38528,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5
$as_echo_n "checking for _sincosf declaration... " >&6; }
if test x${glibcxx_cv_func__sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38365,7 +38573,7 @@ $as_echo "$glibcxx_cv_func__sincosf_use" >&6; }
for ac_func in _sincosf
do :
ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf"
-if test "x$ac_cv_func__sincosf" = x""yes; then :
+if test "x$ac_cv_func__sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSF 1
_ACEOF
@@ -38383,7 +38591,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5
$as_echo_n "checking for finitef declaration... " >&6; }
if test x${glibcxx_cv_func_finitef_use+set} != xset; then
- if test "${glibcxx_cv_func_finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38432,7 +38640,7 @@ $as_echo "$glibcxx_cv_func_finitef_use" >&6; }
for ac_func in finitef
do :
ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef"
-if test "x$ac_cv_func_finitef" = x""yes; then :
+if test "x$ac_cv_func_finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEF 1
_ACEOF
@@ -38445,7 +38653,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5
$as_echo_n "checking for _finitef declaration... " >&6; }
if test x${glibcxx_cv_func__finitef_use+set} != xset; then
- if test "${glibcxx_cv_func__finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38494,7 +38702,7 @@ $as_echo "$glibcxx_cv_func__finitef_use" >&6; }
for ac_func in _finitef
do :
ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef"
-if test "x$ac_cv_func__finitef" = x""yes; then :
+if test "x$ac_cv_func__finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEF 1
_ACEOF
@@ -38511,7 +38719,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5
$as_echo_n "checking for long double trig functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38554,8 +38762,7 @@ $as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -38566,7 +38773,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5
$as_echo_n "checking for _long double trig functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38609,8 +38816,7 @@ $as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -38627,7 +38833,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5
$as_echo_n "checking for long double round functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38670,8 +38876,7 @@ $as_echo "$glibcxx_cv_func_long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -38682,7 +38887,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5
$as_echo_n "checking for _long double round functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38725,8 +38930,7 @@ $as_echo "$glibcxx_cv_func__long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -38745,7 +38949,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5
$as_echo_n "checking for isnanl declaration... " >&6; }
if test x${glibcxx_cv_func_isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38794,7 +38998,7 @@ $as_echo "$glibcxx_cv_func_isnanl_use" >&6; }
for ac_func in isnanl
do :
ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl"
-if test "x$ac_cv_func_isnanl" = x""yes; then :
+if test "x$ac_cv_func_isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANL 1
_ACEOF
@@ -38807,7 +39011,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5
$as_echo_n "checking for _isnanl declaration... " >&6; }
if test x${glibcxx_cv_func__isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38856,7 +39060,7 @@ $as_echo "$glibcxx_cv_func__isnanl_use" >&6; }
for ac_func in _isnanl
do :
ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl"
-if test "x$ac_cv_func__isnanl" = x""yes; then :
+if test "x$ac_cv_func__isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANL 1
_ACEOF
@@ -38874,7 +39078,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5
$as_echo_n "checking for isinfl declaration... " >&6; }
if test x${glibcxx_cv_func_isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func_isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38923,7 +39127,7 @@ $as_echo "$glibcxx_cv_func_isinfl_use" >&6; }
for ac_func in isinfl
do :
ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl"
-if test "x$ac_cv_func_isinfl" = x""yes; then :
+if test "x$ac_cv_func_isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFL 1
_ACEOF
@@ -38936,7 +39140,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5
$as_echo_n "checking for _isinfl declaration... " >&6; }
if test x${glibcxx_cv_func__isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func__isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -38985,7 +39189,7 @@ $as_echo "$glibcxx_cv_func__isinfl_use" >&6; }
for ac_func in _isinfl
do :
ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl"
-if test "x$ac_cv_func__isinfl" = x""yes; then :
+if test "x$ac_cv_func__isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFL 1
_ACEOF
@@ -39003,7 +39207,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5
$as_echo_n "checking for atan2l declaration... " >&6; }
if test x${glibcxx_cv_func_atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39048,7 +39252,7 @@ $as_echo "$glibcxx_cv_func_atan2l_use" >&6; }
for ac_func in atan2l
do :
ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l"
-if test "x$ac_cv_func_atan2l" = x""yes; then :
+if test "x$ac_cv_func_atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
_ACEOF
@@ -39061,7 +39265,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5
$as_echo_n "checking for _atan2l declaration... " >&6; }
if test x${glibcxx_cv_func__atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39106,7 +39310,7 @@ $as_echo "$glibcxx_cv_func__atan2l_use" >&6; }
for ac_func in _atan2l
do :
ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l"
-if test "x$ac_cv_func__atan2l" = x""yes; then :
+if test "x$ac_cv_func__atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2L 1
_ACEOF
@@ -39124,7 +39328,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5
$as_echo_n "checking for expl declaration... " >&6; }
if test x${glibcxx_cv_func_expl_use+set} != xset; then
- if test "${glibcxx_cv_func_expl_use+set}" = set; then :
+ if ${glibcxx_cv_func_expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39173,7 +39377,7 @@ $as_echo "$glibcxx_cv_func_expl_use" >&6; }
for ac_func in expl
do :
ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl"
-if test "x$ac_cv_func_expl" = x""yes; then :
+if test "x$ac_cv_func_expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
_ACEOF
@@ -39186,7 +39390,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5
$as_echo_n "checking for _expl declaration... " >&6; }
if test x${glibcxx_cv_func__expl_use+set} != xset; then
- if test "${glibcxx_cv_func__expl_use+set}" = set; then :
+ if ${glibcxx_cv_func__expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39235,7 +39439,7 @@ $as_echo "$glibcxx_cv_func__expl_use" >&6; }
for ac_func in _expl
do :
ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl"
-if test "x$ac_cv_func__expl" = x""yes; then :
+if test "x$ac_cv_func__expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPL 1
_ACEOF
@@ -39253,7 +39457,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5
$as_echo_n "checking for fabsl declaration... " >&6; }
if test x${glibcxx_cv_func_fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39302,7 +39506,7 @@ $as_echo "$glibcxx_cv_func_fabsl_use" >&6; }
for ac_func in fabsl
do :
ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl"
-if test "x$ac_cv_func_fabsl" = x""yes; then :
+if test "x$ac_cv_func_fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSL 1
_ACEOF
@@ -39315,7 +39519,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5
$as_echo_n "checking for _fabsl declaration... " >&6; }
if test x${glibcxx_cv_func__fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39364,7 +39568,7 @@ $as_echo "$glibcxx_cv_func__fabsl_use" >&6; }
for ac_func in _fabsl
do :
ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl"
-if test "x$ac_cv_func__fabsl" = x""yes; then :
+if test "x$ac_cv_func__fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSL 1
_ACEOF
@@ -39382,7 +39586,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5
$as_echo_n "checking for fmodl declaration... " >&6; }
if test x${glibcxx_cv_func_fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39427,7 +39631,7 @@ $as_echo "$glibcxx_cv_func_fmodl_use" >&6; }
for ac_func in fmodl
do :
ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl"
-if test "x$ac_cv_func_fmodl" = x""yes; then :
+if test "x$ac_cv_func_fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
_ACEOF
@@ -39440,7 +39644,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5
$as_echo_n "checking for _fmodl declaration... " >&6; }
if test x${glibcxx_cv_func__fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39485,7 +39689,7 @@ $as_echo "$glibcxx_cv_func__fmodl_use" >&6; }
for ac_func in _fmodl
do :
ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl"
-if test "x$ac_cv_func__fmodl" = x""yes; then :
+if test "x$ac_cv_func__fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODL 1
_ACEOF
@@ -39503,7 +39707,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5
$as_echo_n "checking for frexpl declaration... " >&6; }
if test x${glibcxx_cv_func_frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39548,7 +39752,7 @@ $as_echo "$glibcxx_cv_func_frexpl_use" >&6; }
for ac_func in frexpl
do :
ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl"
-if test "x$ac_cv_func_frexpl" = x""yes; then :
+if test "x$ac_cv_func_frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPL 1
_ACEOF
@@ -39561,7 +39765,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5
$as_echo_n "checking for _frexpl declaration... " >&6; }
if test x${glibcxx_cv_func__frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39606,7 +39810,7 @@ $as_echo "$glibcxx_cv_func__frexpl_use" >&6; }
for ac_func in _frexpl
do :
ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl"
-if test "x$ac_cv_func__frexpl" = x""yes; then :
+if test "x$ac_cv_func__frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPL 1
_ACEOF
@@ -39624,7 +39828,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5
$as_echo_n "checking for hypotl declaration... " >&6; }
if test x${glibcxx_cv_func_hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39669,7 +39873,7 @@ $as_echo "$glibcxx_cv_func_hypotl_use" >&6; }
for ac_func in hypotl
do :
ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl"
-if test "x$ac_cv_func_hypotl" = x""yes; then :
+if test "x$ac_cv_func_hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTL 1
_ACEOF
@@ -39682,7 +39886,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5
$as_echo_n "checking for _hypotl declaration... " >&6; }
if test x${glibcxx_cv_func__hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39727,7 +39931,7 @@ $as_echo "$glibcxx_cv_func__hypotl_use" >&6; }
for ac_func in _hypotl
do :
ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl"
-if test "x$ac_cv_func__hypotl" = x""yes; then :
+if test "x$ac_cv_func__hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTL 1
_ACEOF
@@ -39745,7 +39949,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5
$as_echo_n "checking for ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39790,7 +39994,7 @@ $as_echo "$glibcxx_cv_func_ldexpl_use" >&6; }
for ac_func in ldexpl
do :
ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl"
-if test "x$ac_cv_func_ldexpl" = x""yes; then :
+if test "x$ac_cv_func_ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPL 1
_ACEOF
@@ -39803,7 +40007,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5
$as_echo_n "checking for _ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39848,7 +40052,7 @@ $as_echo "$glibcxx_cv_func__ldexpl_use" >&6; }
for ac_func in _ldexpl
do :
ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl"
-if test "x$ac_cv_func__ldexpl" = x""yes; then :
+if test "x$ac_cv_func__ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPL 1
_ACEOF
@@ -39866,7 +40070,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5
$as_echo_n "checking for logl declaration... " >&6; }
if test x${glibcxx_cv_func_logl_use+set} != xset; then
- if test "${glibcxx_cv_func_logl_use+set}" = set; then :
+ if ${glibcxx_cv_func_logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39915,7 +40119,7 @@ $as_echo "$glibcxx_cv_func_logl_use" >&6; }
for ac_func in logl
do :
ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl"
-if test "x$ac_cv_func_logl" = x""yes; then :
+if test "x$ac_cv_func_logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
_ACEOF
@@ -39928,7 +40132,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5
$as_echo_n "checking for _logl declaration... " >&6; }
if test x${glibcxx_cv_func__logl_use+set} != xset; then
- if test "${glibcxx_cv_func__logl_use+set}" = set; then :
+ if ${glibcxx_cv_func__logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -39977,7 +40181,7 @@ $as_echo "$glibcxx_cv_func__logl_use" >&6; }
for ac_func in _logl
do :
ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl"
-if test "x$ac_cv_func__logl" = x""yes; then :
+if test "x$ac_cv_func__logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGL 1
_ACEOF
@@ -39995,7 +40199,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5
$as_echo_n "checking for log10l declaration... " >&6; }
if test x${glibcxx_cv_func_log10l_use+set} != xset; then
- if test "${glibcxx_cv_func_log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40044,7 +40248,7 @@ $as_echo "$glibcxx_cv_func_log10l_use" >&6; }
for ac_func in log10l
do :
ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l"
-if test "x$ac_cv_func_log10l" = x""yes; then :
+if test "x$ac_cv_func_log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
_ACEOF
@@ -40057,7 +40261,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5
$as_echo_n "checking for _log10l declaration... " >&6; }
if test x${glibcxx_cv_func__log10l_use+set} != xset; then
- if test "${glibcxx_cv_func__log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40106,7 +40310,7 @@ $as_echo "$glibcxx_cv_func__log10l_use" >&6; }
for ac_func in _log10l
do :
ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l"
-if test "x$ac_cv_func__log10l" = x""yes; then :
+if test "x$ac_cv_func__log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10L 1
_ACEOF
@@ -40124,7 +40328,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5
$as_echo_n "checking for modfl declaration... " >&6; }
if test x${glibcxx_cv_func_modfl_use+set} != xset; then
- if test "${glibcxx_cv_func_modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40169,7 +40373,7 @@ $as_echo "$glibcxx_cv_func_modfl_use" >&6; }
for ac_func in modfl
do :
ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl"
-if test "x$ac_cv_func_modfl" = x""yes; then :
+if test "x$ac_cv_func_modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFL 1
_ACEOF
@@ -40182,7 +40386,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5
$as_echo_n "checking for _modfl declaration... " >&6; }
if test x${glibcxx_cv_func__modfl_use+set} != xset; then
- if test "${glibcxx_cv_func__modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40227,7 +40431,7 @@ $as_echo "$glibcxx_cv_func__modfl_use" >&6; }
for ac_func in _modfl
do :
ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl"
-if test "x$ac_cv_func__modfl" = x""yes; then :
+if test "x$ac_cv_func__modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFL 1
_ACEOF
@@ -40245,7 +40449,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5
$as_echo_n "checking for powl declaration... " >&6; }
if test x${glibcxx_cv_func_powl_use+set} != xset; then
- if test "${glibcxx_cv_func_powl_use+set}" = set; then :
+ if ${glibcxx_cv_func_powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40290,7 +40494,7 @@ $as_echo "$glibcxx_cv_func_powl_use" >&6; }
for ac_func in powl
do :
ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl"
-if test "x$ac_cv_func_powl" = x""yes; then :
+if test "x$ac_cv_func_powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
_ACEOF
@@ -40303,7 +40507,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5
$as_echo_n "checking for _powl declaration... " >&6; }
if test x${glibcxx_cv_func__powl_use+set} != xset; then
- if test "${glibcxx_cv_func__powl_use+set}" = set; then :
+ if ${glibcxx_cv_func__powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40348,7 +40552,7 @@ $as_echo "$glibcxx_cv_func__powl_use" >&6; }
for ac_func in _powl
do :
ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl"
-if test "x$ac_cv_func__powl" = x""yes; then :
+if test "x$ac_cv_func__powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWL 1
_ACEOF
@@ -40366,7 +40570,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5
$as_echo_n "checking for sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40415,7 +40619,7 @@ $as_echo "$glibcxx_cv_func_sqrtl_use" >&6; }
for ac_func in sqrtl
do :
ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl"
-if test "x$ac_cv_func_sqrtl" = x""yes; then :
+if test "x$ac_cv_func_sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
_ACEOF
@@ -40428,7 +40632,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5
$as_echo_n "checking for _sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40477,7 +40681,7 @@ $as_echo "$glibcxx_cv_func__sqrtl_use" >&6; }
for ac_func in _sqrtl
do :
ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl"
-if test "x$ac_cv_func__sqrtl" = x""yes; then :
+if test "x$ac_cv_func__sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTL 1
_ACEOF
@@ -40495,7 +40699,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5
$as_echo_n "checking for sincosl declaration... " >&6; }
if test x${glibcxx_cv_func_sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40540,7 +40744,7 @@ $as_echo "$glibcxx_cv_func_sincosl_use" >&6; }
for ac_func in sincosl
do :
ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl"
-if test "x$ac_cv_func_sincosl" = x""yes; then :
+if test "x$ac_cv_func_sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSL 1
_ACEOF
@@ -40553,7 +40757,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5
$as_echo_n "checking for _sincosl declaration... " >&6; }
if test x${glibcxx_cv_func__sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40598,7 +40802,7 @@ $as_echo "$glibcxx_cv_func__sincosl_use" >&6; }
for ac_func in _sincosl
do :
ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl"
-if test "x$ac_cv_func__sincosl" = x""yes; then :
+if test "x$ac_cv_func__sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSL 1
_ACEOF
@@ -40616,7 +40820,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5
$as_echo_n "checking for finitel declaration... " >&6; }
if test x${glibcxx_cv_func_finitel_use+set} != xset; then
- if test "${glibcxx_cv_func_finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40665,7 +40869,7 @@ $as_echo "$glibcxx_cv_func_finitel_use" >&6; }
for ac_func in finitel
do :
ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel"
-if test "x$ac_cv_func_finitel" = x""yes; then :
+if test "x$ac_cv_func_finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEL 1
_ACEOF
@@ -40678,7 +40882,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5
$as_echo_n "checking for _finitel declaration... " >&6; }
if test x${glibcxx_cv_func__finitel_use+set} != xset; then
- if test "${glibcxx_cv_func__finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40727,7 +40931,7 @@ $as_echo "$glibcxx_cv_func__finitel_use" >&6; }
for ac_func in _finitel
do :
ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel"
-if test "x$ac_cv_func__finitel" = x""yes; then :
+if test "x$ac_cv_func__finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEL 1
_ACEOF
@@ -40753,7 +40957,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5
$as_echo_n "checking for at_quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_at_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40797,7 +41001,7 @@ $as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; }
for ac_func in at_quick_exit
do :
ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit"
-if test "x$ac_cv_func_at_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_at_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_AT_QUICK_EXIT 1
_ACEOF
@@ -40811,7 +41015,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5
$as_echo_n "checking for quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40855,7 +41059,7 @@ $as_echo "$glibcxx_cv_func_quick_exit_use" >&6; }
for ac_func in quick_exit
do :
ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit"
-if test "x$ac_cv_func_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QUICK_EXIT 1
_ACEOF
@@ -40869,7 +41073,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5
$as_echo_n "checking for strtold declaration... " >&6; }
if test x${glibcxx_cv_func_strtold_use+set} != xset; then
- if test "${glibcxx_cv_func_strtold_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtold_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40913,7 +41117,7 @@ $as_echo "$glibcxx_cv_func_strtold_use" >&6; }
for ac_func in strtold
do :
ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold"
-if test "x$ac_cv_func_strtold" = x""yes; then :
+if test "x$ac_cv_func_strtold" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
@@ -40929,7 +41133,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5
$as_echo_n "checking for strtof declaration... " >&6; }
if test x${glibcxx_cv_func_strtof_use+set} != xset; then
- if test "${glibcxx_cv_func_strtof_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtof_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -40973,7 +41177,7 @@ $as_echo "$glibcxx_cv_func_strtof_use" >&6; }
for ac_func in strtof
do :
ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof"
-if test "x$ac_cv_func_strtof" = x""yes; then :
+if test "x$ac_cv_func_strtof" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOF 1
_ACEOF
@@ -40995,7 +41199,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5
$as_echo_n "checking for iconv... " >&6; }
-if test "${am_cv_func_iconv+set}" = set; then :
+if ${am_cv_func_iconv+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41004,7 +41208,7 @@ else
am_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $INCICONV"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -41034,7 +41238,7 @@ rm -f core conftest.err conftest.$ac_objext \
CPPFLAGS="$CPPFLAGS -I../libiconv/include"
LIBS="$LIBS ../libiconv/lib/$_libs/libiconv.a"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -41073,7 +41277,7 @@ rm -f core conftest.err conftest.$ac_objext \
CPPFLAGS="$LIBS $INCICONV"
LIBS="$LIBS $LIBICONV"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -41145,7 +41349,7 @@ $as_echo "$LIBICONV" >&6; }
if test "$am_cv_func_iconv" = yes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5
$as_echo_n "checking for iconv declaration... " >&6; }
- if test "${am_cv_proto_iconv+set}" = set; then :
+ if ${am_cv_proto_iconv+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41265,7 +41469,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -41342,13 +41546,13 @@ $as_echo "$ac_ld_relro" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -41379,7 +41583,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
libm="-lm"
fi
@@ -41391,7 +41595,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5
$as_echo_n "checking for isinf declaration... " >&6; }
if test x${glibcxx_cv_func_isinf_use+set} != xset; then
- if test "${glibcxx_cv_func_isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41440,7 +41644,7 @@ $as_echo "$glibcxx_cv_func_isinf_use" >&6; }
for ac_func in isinf
do :
ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf"
-if test "x$ac_cv_func_isinf" = x""yes; then :
+if test "x$ac_cv_func_isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINF 1
_ACEOF
@@ -41453,7 +41657,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5
$as_echo_n "checking for _isinf declaration... " >&6; }
if test x${glibcxx_cv_func__isinf_use+set} != xset; then
- if test "${glibcxx_cv_func__isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41502,7 +41706,7 @@ $as_echo "$glibcxx_cv_func__isinf_use" >&6; }
for ac_func in _isinf
do :
ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf"
-if test "x$ac_cv_func__isinf" = x""yes; then :
+if test "x$ac_cv_func__isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINF 1
_ACEOF
@@ -41520,7 +41724,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5
$as_echo_n "checking for isnan declaration... " >&6; }
if test x${glibcxx_cv_func_isnan_use+set} != xset; then
- if test "${glibcxx_cv_func_isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41569,7 +41773,7 @@ $as_echo "$glibcxx_cv_func_isnan_use" >&6; }
for ac_func in isnan
do :
ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan"
-if test "x$ac_cv_func_isnan" = x""yes; then :
+if test "x$ac_cv_func_isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNAN 1
_ACEOF
@@ -41582,7 +41786,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5
$as_echo_n "checking for _isnan declaration... " >&6; }
if test x${glibcxx_cv_func__isnan_use+set} != xset; then
- if test "${glibcxx_cv_func__isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41631,7 +41835,7 @@ $as_echo "$glibcxx_cv_func__isnan_use" >&6; }
for ac_func in _isnan
do :
ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan"
-if test "x$ac_cv_func__isnan" = x""yes; then :
+if test "x$ac_cv_func__isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNAN 1
_ACEOF
@@ -41649,7 +41853,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5
$as_echo_n "checking for finite declaration... " >&6; }
if test x${glibcxx_cv_func_finite_use+set} != xset; then
- if test "${glibcxx_cv_func_finite_use+set}" = set; then :
+ if ${glibcxx_cv_func_finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41698,7 +41902,7 @@ $as_echo "$glibcxx_cv_func_finite_use" >&6; }
for ac_func in finite
do :
ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite"
-if test "x$ac_cv_func_finite" = x""yes; then :
+if test "x$ac_cv_func_finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITE 1
_ACEOF
@@ -41711,7 +41915,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5
$as_echo_n "checking for _finite declaration... " >&6; }
if test x${glibcxx_cv_func__finite_use+set} != xset; then
- if test "${glibcxx_cv_func__finite_use+set}" = set; then :
+ if ${glibcxx_cv_func__finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41760,7 +41964,7 @@ $as_echo "$glibcxx_cv_func__finite_use" >&6; }
for ac_func in _finite
do :
ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite"
-if test "x$ac_cv_func__finite" = x""yes; then :
+if test "x$ac_cv_func__finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITE 1
_ACEOF
@@ -41778,7 +41982,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5
$as_echo_n "checking for sincos declaration... " >&6; }
if test x${glibcxx_cv_func_sincos_use+set} != xset; then
- if test "${glibcxx_cv_func_sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41823,7 +42027,7 @@ $as_echo "$glibcxx_cv_func_sincos_use" >&6; }
for ac_func in sincos
do :
ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos"
-if test "x$ac_cv_func_sincos" = x""yes; then :
+if test "x$ac_cv_func_sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOS 1
_ACEOF
@@ -41836,7 +42040,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5
$as_echo_n "checking for _sincos declaration... " >&6; }
if test x${glibcxx_cv_func__sincos_use+set} != xset; then
- if test "${glibcxx_cv_func__sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41881,7 +42085,7 @@ $as_echo "$glibcxx_cv_func__sincos_use" >&6; }
for ac_func in _sincos
do :
ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos"
-if test "x$ac_cv_func__sincos" = x""yes; then :
+if test "x$ac_cv_func__sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOS 1
_ACEOF
@@ -41899,7 +42103,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5
$as_echo_n "checking for fpclass declaration... " >&6; }
if test x${glibcxx_cv_func_fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -41948,7 +42152,7 @@ $as_echo "$glibcxx_cv_func_fpclass_use" >&6; }
for ac_func in fpclass
do :
ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass"
-if test "x$ac_cv_func_fpclass" = x""yes; then :
+if test "x$ac_cv_func_fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FPCLASS 1
_ACEOF
@@ -41961,7 +42165,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5
$as_echo_n "checking for _fpclass declaration... " >&6; }
if test x${glibcxx_cv_func__fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42010,7 +42214,7 @@ $as_echo "$glibcxx_cv_func__fpclass_use" >&6; }
for ac_func in _fpclass
do :
ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass"
-if test "x$ac_cv_func__fpclass" = x""yes; then :
+if test "x$ac_cv_func__fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FPCLASS 1
_ACEOF
@@ -42028,7 +42232,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5
$as_echo_n "checking for qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42077,7 +42281,7 @@ $as_echo "$glibcxx_cv_func_qfpclass_use" >&6; }
for ac_func in qfpclass
do :
ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass"
-if test "x$ac_cv_func_qfpclass" = x""yes; then :
+if test "x$ac_cv_func_qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QFPCLASS 1
_ACEOF
@@ -42090,7 +42294,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5
$as_echo_n "checking for _qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42139,7 +42343,7 @@ $as_echo "$glibcxx_cv_func__qfpclass_use" >&6; }
for ac_func in _qfpclass
do :
ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass"
-if test "x$ac_cv_func__qfpclass" = x""yes; then :
+if test "x$ac_cv_func__qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__QFPCLASS 1
_ACEOF
@@ -42157,7 +42361,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5
$as_echo_n "checking for hypot declaration... " >&6; }
if test x${glibcxx_cv_func_hypot_use+set} != xset; then
- if test "${glibcxx_cv_func_hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42202,7 +42406,7 @@ $as_echo "$glibcxx_cv_func_hypot_use" >&6; }
for ac_func in hypot
do :
ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot"
-if test "x$ac_cv_func_hypot" = x""yes; then :
+if test "x$ac_cv_func_hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOT 1
_ACEOF
@@ -42215,7 +42419,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5
$as_echo_n "checking for _hypot declaration... " >&6; }
if test x${glibcxx_cv_func__hypot_use+set} != xset; then
- if test "${glibcxx_cv_func__hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42260,7 +42464,7 @@ $as_echo "$glibcxx_cv_func__hypot_use" >&6; }
for ac_func in _hypot
do :
ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot"
-if test "x$ac_cv_func__hypot" = x""yes; then :
+if test "x$ac_cv_func__hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOT 1
_ACEOF
@@ -42277,7 +42481,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5
$as_echo_n "checking for float trig functions... " >&6; }
- if test "${glibcxx_cv_func_float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42320,8 +42524,7 @@ $as_echo "$glibcxx_cv_func_float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -42332,7 +42535,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5
$as_echo_n "checking for _float trig functions... " >&6; }
- if test "${glibcxx_cv_func__float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42375,8 +42578,7 @@ $as_echo "$glibcxx_cv_func__float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -42393,7 +42595,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5
$as_echo_n "checking for float round functions... " >&6; }
- if test "${glibcxx_cv_func_float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42436,8 +42638,7 @@ $as_echo "$glibcxx_cv_func_float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -42448,7 +42649,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5
$as_echo_n "checking for _float round functions... " >&6; }
- if test "${glibcxx_cv_func__float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42491,8 +42692,7 @@ $as_echo "$glibcxx_cv_func__float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -42511,7 +42711,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5
$as_echo_n "checking for expf declaration... " >&6; }
if test x${glibcxx_cv_func_expf_use+set} != xset; then
- if test "${glibcxx_cv_func_expf_use+set}" = set; then :
+ if ${glibcxx_cv_func_expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42560,7 +42760,7 @@ $as_echo "$glibcxx_cv_func_expf_use" >&6; }
for ac_func in expf
do :
ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf"
-if test "x$ac_cv_func_expf" = x""yes; then :
+if test "x$ac_cv_func_expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPF 1
_ACEOF
@@ -42573,7 +42773,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5
$as_echo_n "checking for _expf declaration... " >&6; }
if test x${glibcxx_cv_func__expf_use+set} != xset; then
- if test "${glibcxx_cv_func__expf_use+set}" = set; then :
+ if ${glibcxx_cv_func__expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42622,7 +42822,7 @@ $as_echo "$glibcxx_cv_func__expf_use" >&6; }
for ac_func in _expf
do :
ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf"
-if test "x$ac_cv_func__expf" = x""yes; then :
+if test "x$ac_cv_func__expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPF 1
_ACEOF
@@ -42640,7 +42840,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5
$as_echo_n "checking for isnanf declaration... " >&6; }
if test x${glibcxx_cv_func_isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42689,7 +42889,7 @@ $as_echo "$glibcxx_cv_func_isnanf_use" >&6; }
for ac_func in isnanf
do :
ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf"
-if test "x$ac_cv_func_isnanf" = x""yes; then :
+if test "x$ac_cv_func_isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANF 1
_ACEOF
@@ -42702,7 +42902,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5
$as_echo_n "checking for _isnanf declaration... " >&6; }
if test x${glibcxx_cv_func__isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42751,7 +42951,7 @@ $as_echo "$glibcxx_cv_func__isnanf_use" >&6; }
for ac_func in _isnanf
do :
ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf"
-if test "x$ac_cv_func__isnanf" = x""yes; then :
+if test "x$ac_cv_func__isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANF 1
_ACEOF
@@ -42769,7 +42969,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5
$as_echo_n "checking for isinff declaration... " >&6; }
if test x${glibcxx_cv_func_isinff_use+set} != xset; then
- if test "${glibcxx_cv_func_isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42818,7 +43018,7 @@ $as_echo "$glibcxx_cv_func_isinff_use" >&6; }
for ac_func in isinff
do :
ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff"
-if test "x$ac_cv_func_isinff" = x""yes; then :
+if test "x$ac_cv_func_isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFF 1
_ACEOF
@@ -42831,7 +43031,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5
$as_echo_n "checking for _isinff declaration... " >&6; }
if test x${glibcxx_cv_func__isinff_use+set} != xset; then
- if test "${glibcxx_cv_func__isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42880,7 +43080,7 @@ $as_echo "$glibcxx_cv_func__isinff_use" >&6; }
for ac_func in _isinff
do :
ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff"
-if test "x$ac_cv_func__isinff" = x""yes; then :
+if test "x$ac_cv_func__isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFF 1
_ACEOF
@@ -42898,7 +43098,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5
$as_echo_n "checking for atan2f declaration... " >&6; }
if test x${glibcxx_cv_func_atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -42943,7 +43143,7 @@ $as_echo "$glibcxx_cv_func_atan2f_use" >&6; }
for ac_func in atan2f
do :
ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f"
-if test "x$ac_cv_func_atan2f" = x""yes; then :
+if test "x$ac_cv_func_atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2F 1
_ACEOF
@@ -42956,7 +43156,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5
$as_echo_n "checking for _atan2f declaration... " >&6; }
if test x${glibcxx_cv_func__atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43001,7 +43201,7 @@ $as_echo "$glibcxx_cv_func__atan2f_use" >&6; }
for ac_func in _atan2f
do :
ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f"
-if test "x$ac_cv_func__atan2f" = x""yes; then :
+if test "x$ac_cv_func__atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2F 1
_ACEOF
@@ -43019,7 +43219,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5
$as_echo_n "checking for fabsf declaration... " >&6; }
if test x${glibcxx_cv_func_fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43068,7 +43268,7 @@ $as_echo "$glibcxx_cv_func_fabsf_use" >&6; }
for ac_func in fabsf
do :
ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf"
-if test "x$ac_cv_func_fabsf" = x""yes; then :
+if test "x$ac_cv_func_fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSF 1
_ACEOF
@@ -43081,7 +43281,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5
$as_echo_n "checking for _fabsf declaration... " >&6; }
if test x${glibcxx_cv_func__fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43130,7 +43330,7 @@ $as_echo "$glibcxx_cv_func__fabsf_use" >&6; }
for ac_func in _fabsf
do :
ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf"
-if test "x$ac_cv_func__fabsf" = x""yes; then :
+if test "x$ac_cv_func__fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSF 1
_ACEOF
@@ -43148,7 +43348,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5
$as_echo_n "checking for fmodf declaration... " >&6; }
if test x${glibcxx_cv_func_fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43193,7 +43393,7 @@ $as_echo "$glibcxx_cv_func_fmodf_use" >&6; }
for ac_func in fmodf
do :
ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf"
-if test "x$ac_cv_func_fmodf" = x""yes; then :
+if test "x$ac_cv_func_fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODF 1
_ACEOF
@@ -43206,7 +43406,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5
$as_echo_n "checking for _fmodf declaration... " >&6; }
if test x${glibcxx_cv_func__fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43251,7 +43451,7 @@ $as_echo "$glibcxx_cv_func__fmodf_use" >&6; }
for ac_func in _fmodf
do :
ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf"
-if test "x$ac_cv_func__fmodf" = x""yes; then :
+if test "x$ac_cv_func__fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODF 1
_ACEOF
@@ -43269,7 +43469,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5
$as_echo_n "checking for frexpf declaration... " >&6; }
if test x${glibcxx_cv_func_frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43314,7 +43514,7 @@ $as_echo "$glibcxx_cv_func_frexpf_use" >&6; }
for ac_func in frexpf
do :
ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf"
-if test "x$ac_cv_func_frexpf" = x""yes; then :
+if test "x$ac_cv_func_frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPF 1
_ACEOF
@@ -43327,7 +43527,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5
$as_echo_n "checking for _frexpf declaration... " >&6; }
if test x${glibcxx_cv_func__frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43372,7 +43572,7 @@ $as_echo "$glibcxx_cv_func__frexpf_use" >&6; }
for ac_func in _frexpf
do :
ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf"
-if test "x$ac_cv_func__frexpf" = x""yes; then :
+if test "x$ac_cv_func__frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPF 1
_ACEOF
@@ -43390,7 +43590,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5
$as_echo_n "checking for hypotf declaration... " >&6; }
if test x${glibcxx_cv_func_hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43435,7 +43635,7 @@ $as_echo "$glibcxx_cv_func_hypotf_use" >&6; }
for ac_func in hypotf
do :
ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf"
-if test "x$ac_cv_func_hypotf" = x""yes; then :
+if test "x$ac_cv_func_hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTF 1
_ACEOF
@@ -43448,7 +43648,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5
$as_echo_n "checking for _hypotf declaration... " >&6; }
if test x${glibcxx_cv_func__hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43493,7 +43693,7 @@ $as_echo "$glibcxx_cv_func__hypotf_use" >&6; }
for ac_func in _hypotf
do :
ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf"
-if test "x$ac_cv_func__hypotf" = x""yes; then :
+if test "x$ac_cv_func__hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTF 1
_ACEOF
@@ -43511,7 +43711,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5
$as_echo_n "checking for ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43556,7 +43756,7 @@ $as_echo "$glibcxx_cv_func_ldexpf_use" >&6; }
for ac_func in ldexpf
do :
ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf"
-if test "x$ac_cv_func_ldexpf" = x""yes; then :
+if test "x$ac_cv_func_ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPF 1
_ACEOF
@@ -43569,7 +43769,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5
$as_echo_n "checking for _ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43614,7 +43814,7 @@ $as_echo "$glibcxx_cv_func__ldexpf_use" >&6; }
for ac_func in _ldexpf
do :
ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf"
-if test "x$ac_cv_func__ldexpf" = x""yes; then :
+if test "x$ac_cv_func__ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPF 1
_ACEOF
@@ -43632,7 +43832,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5
$as_echo_n "checking for logf declaration... " >&6; }
if test x${glibcxx_cv_func_logf_use+set} != xset; then
- if test "${glibcxx_cv_func_logf_use+set}" = set; then :
+ if ${glibcxx_cv_func_logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43681,7 +43881,7 @@ $as_echo "$glibcxx_cv_func_logf_use" >&6; }
for ac_func in logf
do :
ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf"
-if test "x$ac_cv_func_logf" = x""yes; then :
+if test "x$ac_cv_func_logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGF 1
_ACEOF
@@ -43694,7 +43894,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5
$as_echo_n "checking for _logf declaration... " >&6; }
if test x${glibcxx_cv_func__logf_use+set} != xset; then
- if test "${glibcxx_cv_func__logf_use+set}" = set; then :
+ if ${glibcxx_cv_func__logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43743,7 +43943,7 @@ $as_echo "$glibcxx_cv_func__logf_use" >&6; }
for ac_func in _logf
do :
ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf"
-if test "x$ac_cv_func__logf" = x""yes; then :
+if test "x$ac_cv_func__logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGF 1
_ACEOF
@@ -43761,7 +43961,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5
$as_echo_n "checking for log10f declaration... " >&6; }
if test x${glibcxx_cv_func_log10f_use+set} != xset; then
- if test "${glibcxx_cv_func_log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43810,7 +44010,7 @@ $as_echo "$glibcxx_cv_func_log10f_use" >&6; }
for ac_func in log10f
do :
ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f"
-if test "x$ac_cv_func_log10f" = x""yes; then :
+if test "x$ac_cv_func_log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10F 1
_ACEOF
@@ -43823,7 +44023,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5
$as_echo_n "checking for _log10f declaration... " >&6; }
if test x${glibcxx_cv_func__log10f_use+set} != xset; then
- if test "${glibcxx_cv_func__log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43872,7 +44072,7 @@ $as_echo "$glibcxx_cv_func__log10f_use" >&6; }
for ac_func in _log10f
do :
ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f"
-if test "x$ac_cv_func__log10f" = x""yes; then :
+if test "x$ac_cv_func__log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10F 1
_ACEOF
@@ -43890,7 +44090,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5
$as_echo_n "checking for modff declaration... " >&6; }
if test x${glibcxx_cv_func_modff_use+set} != xset; then
- if test "${glibcxx_cv_func_modff_use+set}" = set; then :
+ if ${glibcxx_cv_func_modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43935,7 +44135,7 @@ $as_echo "$glibcxx_cv_func_modff_use" >&6; }
for ac_func in modff
do :
ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff"
-if test "x$ac_cv_func_modff" = x""yes; then :
+if test "x$ac_cv_func_modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFF 1
_ACEOF
@@ -43948,7 +44148,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5
$as_echo_n "checking for _modff declaration... " >&6; }
if test x${glibcxx_cv_func__modff_use+set} != xset; then
- if test "${glibcxx_cv_func__modff_use+set}" = set; then :
+ if ${glibcxx_cv_func__modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -43993,7 +44193,7 @@ $as_echo "$glibcxx_cv_func__modff_use" >&6; }
for ac_func in _modff
do :
ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff"
-if test "x$ac_cv_func__modff" = x""yes; then :
+if test "x$ac_cv_func__modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFF 1
_ACEOF
@@ -44011,7 +44211,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5
$as_echo_n "checking for modf declaration... " >&6; }
if test x${glibcxx_cv_func_modf_use+set} != xset; then
- if test "${glibcxx_cv_func_modf_use+set}" = set; then :
+ if ${glibcxx_cv_func_modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44056,7 +44256,7 @@ $as_echo "$glibcxx_cv_func_modf_use" >&6; }
for ac_func in modf
do :
ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf"
-if test "x$ac_cv_func_modf" = x""yes; then :
+if test "x$ac_cv_func_modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODF 1
_ACEOF
@@ -44069,7 +44269,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5
$as_echo_n "checking for _modf declaration... " >&6; }
if test x${glibcxx_cv_func__modf_use+set} != xset; then
- if test "${glibcxx_cv_func__modf_use+set}" = set; then :
+ if ${glibcxx_cv_func__modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44114,7 +44314,7 @@ $as_echo "$glibcxx_cv_func__modf_use" >&6; }
for ac_func in _modf
do :
ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf"
-if test "x$ac_cv_func__modf" = x""yes; then :
+if test "x$ac_cv_func__modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODF 1
_ACEOF
@@ -44132,7 +44332,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5
$as_echo_n "checking for powf declaration... " >&6; }
if test x${glibcxx_cv_func_powf_use+set} != xset; then
- if test "${glibcxx_cv_func_powf_use+set}" = set; then :
+ if ${glibcxx_cv_func_powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44177,7 +44377,7 @@ $as_echo "$glibcxx_cv_func_powf_use" >&6; }
for ac_func in powf
do :
ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf"
-if test "x$ac_cv_func_powf" = x""yes; then :
+if test "x$ac_cv_func_powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWF 1
_ACEOF
@@ -44190,7 +44390,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5
$as_echo_n "checking for _powf declaration... " >&6; }
if test x${glibcxx_cv_func__powf_use+set} != xset; then
- if test "${glibcxx_cv_func__powf_use+set}" = set; then :
+ if ${glibcxx_cv_func__powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44235,7 +44435,7 @@ $as_echo "$glibcxx_cv_func__powf_use" >&6; }
for ac_func in _powf
do :
ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf"
-if test "x$ac_cv_func__powf" = x""yes; then :
+if test "x$ac_cv_func__powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWF 1
_ACEOF
@@ -44253,7 +44453,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5
$as_echo_n "checking for sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44302,7 +44502,7 @@ $as_echo "$glibcxx_cv_func_sqrtf_use" >&6; }
for ac_func in sqrtf
do :
ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf"
-if test "x$ac_cv_func_sqrtf" = x""yes; then :
+if test "x$ac_cv_func_sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTF 1
_ACEOF
@@ -44315,7 +44515,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5
$as_echo_n "checking for _sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44364,7 +44564,7 @@ $as_echo "$glibcxx_cv_func__sqrtf_use" >&6; }
for ac_func in _sqrtf
do :
ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf"
-if test "x$ac_cv_func__sqrtf" = x""yes; then :
+if test "x$ac_cv_func__sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTF 1
_ACEOF
@@ -44382,7 +44582,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5
$as_echo_n "checking for sincosf declaration... " >&6; }
if test x${glibcxx_cv_func_sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44427,7 +44627,7 @@ $as_echo "$glibcxx_cv_func_sincosf_use" >&6; }
for ac_func in sincosf
do :
ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf"
-if test "x$ac_cv_func_sincosf" = x""yes; then :
+if test "x$ac_cv_func_sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSF 1
_ACEOF
@@ -44440,7 +44640,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5
$as_echo_n "checking for _sincosf declaration... " >&6; }
if test x${glibcxx_cv_func__sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44485,7 +44685,7 @@ $as_echo "$glibcxx_cv_func__sincosf_use" >&6; }
for ac_func in _sincosf
do :
ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf"
-if test "x$ac_cv_func__sincosf" = x""yes; then :
+if test "x$ac_cv_func__sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSF 1
_ACEOF
@@ -44503,7 +44703,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5
$as_echo_n "checking for finitef declaration... " >&6; }
if test x${glibcxx_cv_func_finitef_use+set} != xset; then
- if test "${glibcxx_cv_func_finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44552,7 +44752,7 @@ $as_echo "$glibcxx_cv_func_finitef_use" >&6; }
for ac_func in finitef
do :
ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef"
-if test "x$ac_cv_func_finitef" = x""yes; then :
+if test "x$ac_cv_func_finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEF 1
_ACEOF
@@ -44565,7 +44765,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5
$as_echo_n "checking for _finitef declaration... " >&6; }
if test x${glibcxx_cv_func__finitef_use+set} != xset; then
- if test "${glibcxx_cv_func__finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44614,7 +44814,7 @@ $as_echo "$glibcxx_cv_func__finitef_use" >&6; }
for ac_func in _finitef
do :
ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef"
-if test "x$ac_cv_func__finitef" = x""yes; then :
+if test "x$ac_cv_func__finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEF 1
_ACEOF
@@ -44631,7 +44831,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5
$as_echo_n "checking for long double trig functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44674,8 +44874,7 @@ $as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -44686,7 +44885,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5
$as_echo_n "checking for _long double trig functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44729,8 +44928,7 @@ $as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -44747,7 +44945,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5
$as_echo_n "checking for long double round functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44790,8 +44988,7 @@ $as_echo "$glibcxx_cv_func_long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -44802,7 +44999,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5
$as_echo_n "checking for _long double round functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44845,8 +45042,7 @@ $as_echo "$glibcxx_cv_func__long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -44865,7 +45061,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5
$as_echo_n "checking for isnanl declaration... " >&6; }
if test x${glibcxx_cv_func_isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44914,7 +45110,7 @@ $as_echo "$glibcxx_cv_func_isnanl_use" >&6; }
for ac_func in isnanl
do :
ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl"
-if test "x$ac_cv_func_isnanl" = x""yes; then :
+if test "x$ac_cv_func_isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANL 1
_ACEOF
@@ -44927,7 +45123,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5
$as_echo_n "checking for _isnanl declaration... " >&6; }
if test x${glibcxx_cv_func__isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -44976,7 +45172,7 @@ $as_echo "$glibcxx_cv_func__isnanl_use" >&6; }
for ac_func in _isnanl
do :
ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl"
-if test "x$ac_cv_func__isnanl" = x""yes; then :
+if test "x$ac_cv_func__isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANL 1
_ACEOF
@@ -44994,7 +45190,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5
$as_echo_n "checking for isinfl declaration... " >&6; }
if test x${glibcxx_cv_func_isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func_isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45043,7 +45239,7 @@ $as_echo "$glibcxx_cv_func_isinfl_use" >&6; }
for ac_func in isinfl
do :
ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl"
-if test "x$ac_cv_func_isinfl" = x""yes; then :
+if test "x$ac_cv_func_isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFL 1
_ACEOF
@@ -45056,7 +45252,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5
$as_echo_n "checking for _isinfl declaration... " >&6; }
if test x${glibcxx_cv_func__isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func__isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45105,7 +45301,7 @@ $as_echo "$glibcxx_cv_func__isinfl_use" >&6; }
for ac_func in _isinfl
do :
ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl"
-if test "x$ac_cv_func__isinfl" = x""yes; then :
+if test "x$ac_cv_func__isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFL 1
_ACEOF
@@ -45123,7 +45319,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5
$as_echo_n "checking for atan2l declaration... " >&6; }
if test x${glibcxx_cv_func_atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45168,7 +45364,7 @@ $as_echo "$glibcxx_cv_func_atan2l_use" >&6; }
for ac_func in atan2l
do :
ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l"
-if test "x$ac_cv_func_atan2l" = x""yes; then :
+if test "x$ac_cv_func_atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
_ACEOF
@@ -45181,7 +45377,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5
$as_echo_n "checking for _atan2l declaration... " >&6; }
if test x${glibcxx_cv_func__atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45226,7 +45422,7 @@ $as_echo "$glibcxx_cv_func__atan2l_use" >&6; }
for ac_func in _atan2l
do :
ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l"
-if test "x$ac_cv_func__atan2l" = x""yes; then :
+if test "x$ac_cv_func__atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2L 1
_ACEOF
@@ -45244,7 +45440,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5
$as_echo_n "checking for expl declaration... " >&6; }
if test x${glibcxx_cv_func_expl_use+set} != xset; then
- if test "${glibcxx_cv_func_expl_use+set}" = set; then :
+ if ${glibcxx_cv_func_expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45293,7 +45489,7 @@ $as_echo "$glibcxx_cv_func_expl_use" >&6; }
for ac_func in expl
do :
ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl"
-if test "x$ac_cv_func_expl" = x""yes; then :
+if test "x$ac_cv_func_expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
_ACEOF
@@ -45306,7 +45502,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5
$as_echo_n "checking for _expl declaration... " >&6; }
if test x${glibcxx_cv_func__expl_use+set} != xset; then
- if test "${glibcxx_cv_func__expl_use+set}" = set; then :
+ if ${glibcxx_cv_func__expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45355,7 +45551,7 @@ $as_echo "$glibcxx_cv_func__expl_use" >&6; }
for ac_func in _expl
do :
ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl"
-if test "x$ac_cv_func__expl" = x""yes; then :
+if test "x$ac_cv_func__expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPL 1
_ACEOF
@@ -45373,7 +45569,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5
$as_echo_n "checking for fabsl declaration... " >&6; }
if test x${glibcxx_cv_func_fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45422,7 +45618,7 @@ $as_echo "$glibcxx_cv_func_fabsl_use" >&6; }
for ac_func in fabsl
do :
ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl"
-if test "x$ac_cv_func_fabsl" = x""yes; then :
+if test "x$ac_cv_func_fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSL 1
_ACEOF
@@ -45435,7 +45631,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5
$as_echo_n "checking for _fabsl declaration... " >&6; }
if test x${glibcxx_cv_func__fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45484,7 +45680,7 @@ $as_echo "$glibcxx_cv_func__fabsl_use" >&6; }
for ac_func in _fabsl
do :
ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl"
-if test "x$ac_cv_func__fabsl" = x""yes; then :
+if test "x$ac_cv_func__fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSL 1
_ACEOF
@@ -45502,7 +45698,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5
$as_echo_n "checking for fmodl declaration... " >&6; }
if test x${glibcxx_cv_func_fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45547,7 +45743,7 @@ $as_echo "$glibcxx_cv_func_fmodl_use" >&6; }
for ac_func in fmodl
do :
ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl"
-if test "x$ac_cv_func_fmodl" = x""yes; then :
+if test "x$ac_cv_func_fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
_ACEOF
@@ -45560,7 +45756,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5
$as_echo_n "checking for _fmodl declaration... " >&6; }
if test x${glibcxx_cv_func__fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45605,7 +45801,7 @@ $as_echo "$glibcxx_cv_func__fmodl_use" >&6; }
for ac_func in _fmodl
do :
ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl"
-if test "x$ac_cv_func__fmodl" = x""yes; then :
+if test "x$ac_cv_func__fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODL 1
_ACEOF
@@ -45623,7 +45819,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5
$as_echo_n "checking for frexpl declaration... " >&6; }
if test x${glibcxx_cv_func_frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45668,7 +45864,7 @@ $as_echo "$glibcxx_cv_func_frexpl_use" >&6; }
for ac_func in frexpl
do :
ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl"
-if test "x$ac_cv_func_frexpl" = x""yes; then :
+if test "x$ac_cv_func_frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPL 1
_ACEOF
@@ -45681,7 +45877,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5
$as_echo_n "checking for _frexpl declaration... " >&6; }
if test x${glibcxx_cv_func__frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45726,7 +45922,7 @@ $as_echo "$glibcxx_cv_func__frexpl_use" >&6; }
for ac_func in _frexpl
do :
ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl"
-if test "x$ac_cv_func__frexpl" = x""yes; then :
+if test "x$ac_cv_func__frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPL 1
_ACEOF
@@ -45744,7 +45940,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5
$as_echo_n "checking for hypotl declaration... " >&6; }
if test x${glibcxx_cv_func_hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45789,7 +45985,7 @@ $as_echo "$glibcxx_cv_func_hypotl_use" >&6; }
for ac_func in hypotl
do :
ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl"
-if test "x$ac_cv_func_hypotl" = x""yes; then :
+if test "x$ac_cv_func_hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTL 1
_ACEOF
@@ -45802,7 +45998,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5
$as_echo_n "checking for _hypotl declaration... " >&6; }
if test x${glibcxx_cv_func__hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45847,7 +46043,7 @@ $as_echo "$glibcxx_cv_func__hypotl_use" >&6; }
for ac_func in _hypotl
do :
ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl"
-if test "x$ac_cv_func__hypotl" = x""yes; then :
+if test "x$ac_cv_func__hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTL 1
_ACEOF
@@ -45865,7 +46061,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5
$as_echo_n "checking for ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45910,7 +46106,7 @@ $as_echo "$glibcxx_cv_func_ldexpl_use" >&6; }
for ac_func in ldexpl
do :
ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl"
-if test "x$ac_cv_func_ldexpl" = x""yes; then :
+if test "x$ac_cv_func_ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPL 1
_ACEOF
@@ -45923,7 +46119,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5
$as_echo_n "checking for _ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -45968,7 +46164,7 @@ $as_echo "$glibcxx_cv_func__ldexpl_use" >&6; }
for ac_func in _ldexpl
do :
ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl"
-if test "x$ac_cv_func__ldexpl" = x""yes; then :
+if test "x$ac_cv_func__ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPL 1
_ACEOF
@@ -45986,7 +46182,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5
$as_echo_n "checking for logl declaration... " >&6; }
if test x${glibcxx_cv_func_logl_use+set} != xset; then
- if test "${glibcxx_cv_func_logl_use+set}" = set; then :
+ if ${glibcxx_cv_func_logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46035,7 +46231,7 @@ $as_echo "$glibcxx_cv_func_logl_use" >&6; }
for ac_func in logl
do :
ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl"
-if test "x$ac_cv_func_logl" = x""yes; then :
+if test "x$ac_cv_func_logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
_ACEOF
@@ -46048,7 +46244,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5
$as_echo_n "checking for _logl declaration... " >&6; }
if test x${glibcxx_cv_func__logl_use+set} != xset; then
- if test "${glibcxx_cv_func__logl_use+set}" = set; then :
+ if ${glibcxx_cv_func__logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46097,7 +46293,7 @@ $as_echo "$glibcxx_cv_func__logl_use" >&6; }
for ac_func in _logl
do :
ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl"
-if test "x$ac_cv_func__logl" = x""yes; then :
+if test "x$ac_cv_func__logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGL 1
_ACEOF
@@ -46115,7 +46311,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5
$as_echo_n "checking for log10l declaration... " >&6; }
if test x${glibcxx_cv_func_log10l_use+set} != xset; then
- if test "${glibcxx_cv_func_log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46164,7 +46360,7 @@ $as_echo "$glibcxx_cv_func_log10l_use" >&6; }
for ac_func in log10l
do :
ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l"
-if test "x$ac_cv_func_log10l" = x""yes; then :
+if test "x$ac_cv_func_log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
_ACEOF
@@ -46177,7 +46373,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5
$as_echo_n "checking for _log10l declaration... " >&6; }
if test x${glibcxx_cv_func__log10l_use+set} != xset; then
- if test "${glibcxx_cv_func__log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46226,7 +46422,7 @@ $as_echo "$glibcxx_cv_func__log10l_use" >&6; }
for ac_func in _log10l
do :
ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l"
-if test "x$ac_cv_func__log10l" = x""yes; then :
+if test "x$ac_cv_func__log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10L 1
_ACEOF
@@ -46244,7 +46440,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5
$as_echo_n "checking for modfl declaration... " >&6; }
if test x${glibcxx_cv_func_modfl_use+set} != xset; then
- if test "${glibcxx_cv_func_modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46289,7 +46485,7 @@ $as_echo "$glibcxx_cv_func_modfl_use" >&6; }
for ac_func in modfl
do :
ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl"
-if test "x$ac_cv_func_modfl" = x""yes; then :
+if test "x$ac_cv_func_modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFL 1
_ACEOF
@@ -46302,7 +46498,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5
$as_echo_n "checking for _modfl declaration... " >&6; }
if test x${glibcxx_cv_func__modfl_use+set} != xset; then
- if test "${glibcxx_cv_func__modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46347,7 +46543,7 @@ $as_echo "$glibcxx_cv_func__modfl_use" >&6; }
for ac_func in _modfl
do :
ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl"
-if test "x$ac_cv_func__modfl" = x""yes; then :
+if test "x$ac_cv_func__modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFL 1
_ACEOF
@@ -46365,7 +46561,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5
$as_echo_n "checking for powl declaration... " >&6; }
if test x${glibcxx_cv_func_powl_use+set} != xset; then
- if test "${glibcxx_cv_func_powl_use+set}" = set; then :
+ if ${glibcxx_cv_func_powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46410,7 +46606,7 @@ $as_echo "$glibcxx_cv_func_powl_use" >&6; }
for ac_func in powl
do :
ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl"
-if test "x$ac_cv_func_powl" = x""yes; then :
+if test "x$ac_cv_func_powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
_ACEOF
@@ -46423,7 +46619,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5
$as_echo_n "checking for _powl declaration... " >&6; }
if test x${glibcxx_cv_func__powl_use+set} != xset; then
- if test "${glibcxx_cv_func__powl_use+set}" = set; then :
+ if ${glibcxx_cv_func__powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46468,7 +46664,7 @@ $as_echo "$glibcxx_cv_func__powl_use" >&6; }
for ac_func in _powl
do :
ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl"
-if test "x$ac_cv_func__powl" = x""yes; then :
+if test "x$ac_cv_func__powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWL 1
_ACEOF
@@ -46486,7 +46682,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5
$as_echo_n "checking for sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46535,7 +46731,7 @@ $as_echo "$glibcxx_cv_func_sqrtl_use" >&6; }
for ac_func in sqrtl
do :
ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl"
-if test "x$ac_cv_func_sqrtl" = x""yes; then :
+if test "x$ac_cv_func_sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
_ACEOF
@@ -46548,7 +46744,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5
$as_echo_n "checking for _sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46597,7 +46793,7 @@ $as_echo "$glibcxx_cv_func__sqrtl_use" >&6; }
for ac_func in _sqrtl
do :
ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl"
-if test "x$ac_cv_func__sqrtl" = x""yes; then :
+if test "x$ac_cv_func__sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTL 1
_ACEOF
@@ -46615,7 +46811,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5
$as_echo_n "checking for sincosl declaration... " >&6; }
if test x${glibcxx_cv_func_sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46660,7 +46856,7 @@ $as_echo "$glibcxx_cv_func_sincosl_use" >&6; }
for ac_func in sincosl
do :
ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl"
-if test "x$ac_cv_func_sincosl" = x""yes; then :
+if test "x$ac_cv_func_sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSL 1
_ACEOF
@@ -46673,7 +46869,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5
$as_echo_n "checking for _sincosl declaration... " >&6; }
if test x${glibcxx_cv_func__sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46718,7 +46914,7 @@ $as_echo "$glibcxx_cv_func__sincosl_use" >&6; }
for ac_func in _sincosl
do :
ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl"
-if test "x$ac_cv_func__sincosl" = x""yes; then :
+if test "x$ac_cv_func__sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSL 1
_ACEOF
@@ -46736,7 +46932,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5
$as_echo_n "checking for finitel declaration... " >&6; }
if test x${glibcxx_cv_func_finitel_use+set} != xset; then
- if test "${glibcxx_cv_func_finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46785,7 +46981,7 @@ $as_echo "$glibcxx_cv_func_finitel_use" >&6; }
for ac_func in finitel
do :
ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel"
-if test "x$ac_cv_func_finitel" = x""yes; then :
+if test "x$ac_cv_func_finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEL 1
_ACEOF
@@ -46798,7 +46994,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5
$as_echo_n "checking for _finitel declaration... " >&6; }
if test x${glibcxx_cv_func__finitel_use+set} != xset; then
- if test "${glibcxx_cv_func__finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46847,7 +47043,7 @@ $as_echo "$glibcxx_cv_func__finitel_use" >&6; }
for ac_func in _finitel
do :
ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel"
-if test "x$ac_cv_func__finitel" = x""yes; then :
+if test "x$ac_cv_func__finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEL 1
_ACEOF
@@ -46873,7 +47069,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5
$as_echo_n "checking for at_quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_at_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46917,7 +47113,7 @@ $as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; }
for ac_func in at_quick_exit
do :
ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit"
-if test "x$ac_cv_func_at_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_at_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_AT_QUICK_EXIT 1
_ACEOF
@@ -46931,7 +47127,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5
$as_echo_n "checking for quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -46975,7 +47171,7 @@ $as_echo "$glibcxx_cv_func_quick_exit_use" >&6; }
for ac_func in quick_exit
do :
ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit"
-if test "x$ac_cv_func_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QUICK_EXIT 1
_ACEOF
@@ -46989,7 +47185,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5
$as_echo_n "checking for strtold declaration... " >&6; }
if test x${glibcxx_cv_func_strtold_use+set} != xset; then
- if test "${glibcxx_cv_func_strtold_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtold_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47033,7 +47229,7 @@ $as_echo "$glibcxx_cv_func_strtold_use" >&6; }
for ac_func in strtold
do :
ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold"
-if test "x$ac_cv_func_strtold" = x""yes; then :
+if test "x$ac_cv_func_strtold" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
@@ -47049,7 +47245,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5
$as_echo_n "checking for strtof declaration... " >&6; }
if test x${glibcxx_cv_func_strtof_use+set} != xset; then
- if test "${glibcxx_cv_func_strtof_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtof_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47093,7 +47289,7 @@ $as_echo "$glibcxx_cv_func_strtof_use" >&6; }
for ac_func in strtof
do :
ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof"
-if test "x$ac_cv_func_strtof" = x""yes; then :
+if test "x$ac_cv_func_strtof" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOF 1
_ACEOF
@@ -47121,7 +47317,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5
$as_echo_n "checking for iconv... " >&6; }
-if test "${am_cv_func_iconv+set}" = set; then :
+if ${am_cv_func_iconv+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47130,7 +47326,7 @@ else
am_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $INCICONV"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -47160,7 +47356,7 @@ rm -f core conftest.err conftest.$ac_objext \
CPPFLAGS="$CPPFLAGS -I../libiconv/include"
LIBS="$LIBS ../libiconv/lib/$_libs/libiconv.a"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -47199,7 +47395,7 @@ rm -f core conftest.err conftest.$ac_objext \
CPPFLAGS="$LIBS $INCICONV"
LIBS="$LIBS $LIBICONV"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -47271,7 +47467,7 @@ $as_echo "$LIBICONV" >&6; }
if test "$am_cv_func_iconv" = yes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5
$as_echo_n "checking for iconv declaration... " >&6; }
- if test "${am_cv_proto_iconv+set}" = set; then :
+ if ${am_cv_proto_iconv+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47334,13 +47530,13 @@ _ACEOF
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -47371,7 +47567,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
libm="-lm"
fi
@@ -47383,7 +47579,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5
$as_echo_n "checking for isinf declaration... " >&6; }
if test x${glibcxx_cv_func_isinf_use+set} != xset; then
- if test "${glibcxx_cv_func_isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47432,7 +47628,7 @@ $as_echo "$glibcxx_cv_func_isinf_use" >&6; }
for ac_func in isinf
do :
ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf"
-if test "x$ac_cv_func_isinf" = x""yes; then :
+if test "x$ac_cv_func_isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINF 1
_ACEOF
@@ -47445,7 +47641,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5
$as_echo_n "checking for _isinf declaration... " >&6; }
if test x${glibcxx_cv_func__isinf_use+set} != xset; then
- if test "${glibcxx_cv_func__isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47494,7 +47690,7 @@ $as_echo "$glibcxx_cv_func__isinf_use" >&6; }
for ac_func in _isinf
do :
ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf"
-if test "x$ac_cv_func__isinf" = x""yes; then :
+if test "x$ac_cv_func__isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINF 1
_ACEOF
@@ -47512,7 +47708,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5
$as_echo_n "checking for isnan declaration... " >&6; }
if test x${glibcxx_cv_func_isnan_use+set} != xset; then
- if test "${glibcxx_cv_func_isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47561,7 +47757,7 @@ $as_echo "$glibcxx_cv_func_isnan_use" >&6; }
for ac_func in isnan
do :
ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan"
-if test "x$ac_cv_func_isnan" = x""yes; then :
+if test "x$ac_cv_func_isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNAN 1
_ACEOF
@@ -47574,7 +47770,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5
$as_echo_n "checking for _isnan declaration... " >&6; }
if test x${glibcxx_cv_func__isnan_use+set} != xset; then
- if test "${glibcxx_cv_func__isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47623,7 +47819,7 @@ $as_echo "$glibcxx_cv_func__isnan_use" >&6; }
for ac_func in _isnan
do :
ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan"
-if test "x$ac_cv_func__isnan" = x""yes; then :
+if test "x$ac_cv_func__isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNAN 1
_ACEOF
@@ -47641,7 +47837,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5
$as_echo_n "checking for finite declaration... " >&6; }
if test x${glibcxx_cv_func_finite_use+set} != xset; then
- if test "${glibcxx_cv_func_finite_use+set}" = set; then :
+ if ${glibcxx_cv_func_finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47690,7 +47886,7 @@ $as_echo "$glibcxx_cv_func_finite_use" >&6; }
for ac_func in finite
do :
ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite"
-if test "x$ac_cv_func_finite" = x""yes; then :
+if test "x$ac_cv_func_finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITE 1
_ACEOF
@@ -47703,7 +47899,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5
$as_echo_n "checking for _finite declaration... " >&6; }
if test x${glibcxx_cv_func__finite_use+set} != xset; then
- if test "${glibcxx_cv_func__finite_use+set}" = set; then :
+ if ${glibcxx_cv_func__finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47752,7 +47948,7 @@ $as_echo "$glibcxx_cv_func__finite_use" >&6; }
for ac_func in _finite
do :
ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite"
-if test "x$ac_cv_func__finite" = x""yes; then :
+if test "x$ac_cv_func__finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITE 1
_ACEOF
@@ -47770,7 +47966,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5
$as_echo_n "checking for sincos declaration... " >&6; }
if test x${glibcxx_cv_func_sincos_use+set} != xset; then
- if test "${glibcxx_cv_func_sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47815,7 +48011,7 @@ $as_echo "$glibcxx_cv_func_sincos_use" >&6; }
for ac_func in sincos
do :
ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos"
-if test "x$ac_cv_func_sincos" = x""yes; then :
+if test "x$ac_cv_func_sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOS 1
_ACEOF
@@ -47828,7 +48024,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5
$as_echo_n "checking for _sincos declaration... " >&6; }
if test x${glibcxx_cv_func__sincos_use+set} != xset; then
- if test "${glibcxx_cv_func__sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47873,7 +48069,7 @@ $as_echo "$glibcxx_cv_func__sincos_use" >&6; }
for ac_func in _sincos
do :
ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos"
-if test "x$ac_cv_func__sincos" = x""yes; then :
+if test "x$ac_cv_func__sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOS 1
_ACEOF
@@ -47891,7 +48087,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5
$as_echo_n "checking for fpclass declaration... " >&6; }
if test x${glibcxx_cv_func_fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -47940,7 +48136,7 @@ $as_echo "$glibcxx_cv_func_fpclass_use" >&6; }
for ac_func in fpclass
do :
ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass"
-if test "x$ac_cv_func_fpclass" = x""yes; then :
+if test "x$ac_cv_func_fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FPCLASS 1
_ACEOF
@@ -47953,7 +48149,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5
$as_echo_n "checking for _fpclass declaration... " >&6; }
if test x${glibcxx_cv_func__fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48002,7 +48198,7 @@ $as_echo "$glibcxx_cv_func__fpclass_use" >&6; }
for ac_func in _fpclass
do :
ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass"
-if test "x$ac_cv_func__fpclass" = x""yes; then :
+if test "x$ac_cv_func__fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FPCLASS 1
_ACEOF
@@ -48020,7 +48216,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5
$as_echo_n "checking for qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48069,7 +48265,7 @@ $as_echo "$glibcxx_cv_func_qfpclass_use" >&6; }
for ac_func in qfpclass
do :
ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass"
-if test "x$ac_cv_func_qfpclass" = x""yes; then :
+if test "x$ac_cv_func_qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QFPCLASS 1
_ACEOF
@@ -48082,7 +48278,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5
$as_echo_n "checking for _qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48131,7 +48327,7 @@ $as_echo "$glibcxx_cv_func__qfpclass_use" >&6; }
for ac_func in _qfpclass
do :
ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass"
-if test "x$ac_cv_func__qfpclass" = x""yes; then :
+if test "x$ac_cv_func__qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__QFPCLASS 1
_ACEOF
@@ -48149,7 +48345,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5
$as_echo_n "checking for hypot declaration... " >&6; }
if test x${glibcxx_cv_func_hypot_use+set} != xset; then
- if test "${glibcxx_cv_func_hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48194,7 +48390,7 @@ $as_echo "$glibcxx_cv_func_hypot_use" >&6; }
for ac_func in hypot
do :
ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot"
-if test "x$ac_cv_func_hypot" = x""yes; then :
+if test "x$ac_cv_func_hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOT 1
_ACEOF
@@ -48207,7 +48403,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5
$as_echo_n "checking for _hypot declaration... " >&6; }
if test x${glibcxx_cv_func__hypot_use+set} != xset; then
- if test "${glibcxx_cv_func__hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48252,7 +48448,7 @@ $as_echo "$glibcxx_cv_func__hypot_use" >&6; }
for ac_func in _hypot
do :
ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot"
-if test "x$ac_cv_func__hypot" = x""yes; then :
+if test "x$ac_cv_func__hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOT 1
_ACEOF
@@ -48269,7 +48465,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5
$as_echo_n "checking for float trig functions... " >&6; }
- if test "${glibcxx_cv_func_float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48312,8 +48508,7 @@ $as_echo "$glibcxx_cv_func_float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -48324,7 +48519,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5
$as_echo_n "checking for _float trig functions... " >&6; }
- if test "${glibcxx_cv_func__float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48367,8 +48562,7 @@ $as_echo "$glibcxx_cv_func__float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -48385,7 +48579,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5
$as_echo_n "checking for float round functions... " >&6; }
- if test "${glibcxx_cv_func_float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48428,8 +48622,7 @@ $as_echo "$glibcxx_cv_func_float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -48440,7 +48633,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5
$as_echo_n "checking for _float round functions... " >&6; }
- if test "${glibcxx_cv_func__float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48483,8 +48676,7 @@ $as_echo "$glibcxx_cv_func__float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -48503,7 +48695,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5
$as_echo_n "checking for expf declaration... " >&6; }
if test x${glibcxx_cv_func_expf_use+set} != xset; then
- if test "${glibcxx_cv_func_expf_use+set}" = set; then :
+ if ${glibcxx_cv_func_expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48552,7 +48744,7 @@ $as_echo "$glibcxx_cv_func_expf_use" >&6; }
for ac_func in expf
do :
ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf"
-if test "x$ac_cv_func_expf" = x""yes; then :
+if test "x$ac_cv_func_expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPF 1
_ACEOF
@@ -48565,7 +48757,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5
$as_echo_n "checking for _expf declaration... " >&6; }
if test x${glibcxx_cv_func__expf_use+set} != xset; then
- if test "${glibcxx_cv_func__expf_use+set}" = set; then :
+ if ${glibcxx_cv_func__expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48614,7 +48806,7 @@ $as_echo "$glibcxx_cv_func__expf_use" >&6; }
for ac_func in _expf
do :
ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf"
-if test "x$ac_cv_func__expf" = x""yes; then :
+if test "x$ac_cv_func__expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPF 1
_ACEOF
@@ -48632,7 +48824,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5
$as_echo_n "checking for isnanf declaration... " >&6; }
if test x${glibcxx_cv_func_isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48681,7 +48873,7 @@ $as_echo "$glibcxx_cv_func_isnanf_use" >&6; }
for ac_func in isnanf
do :
ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf"
-if test "x$ac_cv_func_isnanf" = x""yes; then :
+if test "x$ac_cv_func_isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANF 1
_ACEOF
@@ -48694,7 +48886,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5
$as_echo_n "checking for _isnanf declaration... " >&6; }
if test x${glibcxx_cv_func__isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48743,7 +48935,7 @@ $as_echo "$glibcxx_cv_func__isnanf_use" >&6; }
for ac_func in _isnanf
do :
ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf"
-if test "x$ac_cv_func__isnanf" = x""yes; then :
+if test "x$ac_cv_func__isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANF 1
_ACEOF
@@ -48761,7 +48953,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5
$as_echo_n "checking for isinff declaration... " >&6; }
if test x${glibcxx_cv_func_isinff_use+set} != xset; then
- if test "${glibcxx_cv_func_isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48810,7 +49002,7 @@ $as_echo "$glibcxx_cv_func_isinff_use" >&6; }
for ac_func in isinff
do :
ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff"
-if test "x$ac_cv_func_isinff" = x""yes; then :
+if test "x$ac_cv_func_isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFF 1
_ACEOF
@@ -48823,7 +49015,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5
$as_echo_n "checking for _isinff declaration... " >&6; }
if test x${glibcxx_cv_func__isinff_use+set} != xset; then
- if test "${glibcxx_cv_func__isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48872,7 +49064,7 @@ $as_echo "$glibcxx_cv_func__isinff_use" >&6; }
for ac_func in _isinff
do :
ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff"
-if test "x$ac_cv_func__isinff" = x""yes; then :
+if test "x$ac_cv_func__isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFF 1
_ACEOF
@@ -48890,7 +49082,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5
$as_echo_n "checking for atan2f declaration... " >&6; }
if test x${glibcxx_cv_func_atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48935,7 +49127,7 @@ $as_echo "$glibcxx_cv_func_atan2f_use" >&6; }
for ac_func in atan2f
do :
ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f"
-if test "x$ac_cv_func_atan2f" = x""yes; then :
+if test "x$ac_cv_func_atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2F 1
_ACEOF
@@ -48948,7 +49140,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5
$as_echo_n "checking for _atan2f declaration... " >&6; }
if test x${glibcxx_cv_func__atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -48993,7 +49185,7 @@ $as_echo "$glibcxx_cv_func__atan2f_use" >&6; }
for ac_func in _atan2f
do :
ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f"
-if test "x$ac_cv_func__atan2f" = x""yes; then :
+if test "x$ac_cv_func__atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2F 1
_ACEOF
@@ -49011,7 +49203,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5
$as_echo_n "checking for fabsf declaration... " >&6; }
if test x${glibcxx_cv_func_fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49060,7 +49252,7 @@ $as_echo "$glibcxx_cv_func_fabsf_use" >&6; }
for ac_func in fabsf
do :
ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf"
-if test "x$ac_cv_func_fabsf" = x""yes; then :
+if test "x$ac_cv_func_fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSF 1
_ACEOF
@@ -49073,7 +49265,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5
$as_echo_n "checking for _fabsf declaration... " >&6; }
if test x${glibcxx_cv_func__fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49122,7 +49314,7 @@ $as_echo "$glibcxx_cv_func__fabsf_use" >&6; }
for ac_func in _fabsf
do :
ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf"
-if test "x$ac_cv_func__fabsf" = x""yes; then :
+if test "x$ac_cv_func__fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSF 1
_ACEOF
@@ -49140,7 +49332,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5
$as_echo_n "checking for fmodf declaration... " >&6; }
if test x${glibcxx_cv_func_fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49185,7 +49377,7 @@ $as_echo "$glibcxx_cv_func_fmodf_use" >&6; }
for ac_func in fmodf
do :
ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf"
-if test "x$ac_cv_func_fmodf" = x""yes; then :
+if test "x$ac_cv_func_fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODF 1
_ACEOF
@@ -49198,7 +49390,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5
$as_echo_n "checking for _fmodf declaration... " >&6; }
if test x${glibcxx_cv_func__fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49243,7 +49435,7 @@ $as_echo "$glibcxx_cv_func__fmodf_use" >&6; }
for ac_func in _fmodf
do :
ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf"
-if test "x$ac_cv_func__fmodf" = x""yes; then :
+if test "x$ac_cv_func__fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODF 1
_ACEOF
@@ -49261,7 +49453,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5
$as_echo_n "checking for frexpf declaration... " >&6; }
if test x${glibcxx_cv_func_frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49306,7 +49498,7 @@ $as_echo "$glibcxx_cv_func_frexpf_use" >&6; }
for ac_func in frexpf
do :
ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf"
-if test "x$ac_cv_func_frexpf" = x""yes; then :
+if test "x$ac_cv_func_frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPF 1
_ACEOF
@@ -49319,7 +49511,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5
$as_echo_n "checking for _frexpf declaration... " >&6; }
if test x${glibcxx_cv_func__frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49364,7 +49556,7 @@ $as_echo "$glibcxx_cv_func__frexpf_use" >&6; }
for ac_func in _frexpf
do :
ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf"
-if test "x$ac_cv_func__frexpf" = x""yes; then :
+if test "x$ac_cv_func__frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPF 1
_ACEOF
@@ -49382,7 +49574,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5
$as_echo_n "checking for hypotf declaration... " >&6; }
if test x${glibcxx_cv_func_hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49427,7 +49619,7 @@ $as_echo "$glibcxx_cv_func_hypotf_use" >&6; }
for ac_func in hypotf
do :
ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf"
-if test "x$ac_cv_func_hypotf" = x""yes; then :
+if test "x$ac_cv_func_hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTF 1
_ACEOF
@@ -49440,7 +49632,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5
$as_echo_n "checking for _hypotf declaration... " >&6; }
if test x${glibcxx_cv_func__hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49485,7 +49677,7 @@ $as_echo "$glibcxx_cv_func__hypotf_use" >&6; }
for ac_func in _hypotf
do :
ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf"
-if test "x$ac_cv_func__hypotf" = x""yes; then :
+if test "x$ac_cv_func__hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTF 1
_ACEOF
@@ -49503,7 +49695,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5
$as_echo_n "checking for ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49548,7 +49740,7 @@ $as_echo "$glibcxx_cv_func_ldexpf_use" >&6; }
for ac_func in ldexpf
do :
ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf"
-if test "x$ac_cv_func_ldexpf" = x""yes; then :
+if test "x$ac_cv_func_ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPF 1
_ACEOF
@@ -49561,7 +49753,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5
$as_echo_n "checking for _ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49606,7 +49798,7 @@ $as_echo "$glibcxx_cv_func__ldexpf_use" >&6; }
for ac_func in _ldexpf
do :
ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf"
-if test "x$ac_cv_func__ldexpf" = x""yes; then :
+if test "x$ac_cv_func__ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPF 1
_ACEOF
@@ -49624,7 +49816,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5
$as_echo_n "checking for logf declaration... " >&6; }
if test x${glibcxx_cv_func_logf_use+set} != xset; then
- if test "${glibcxx_cv_func_logf_use+set}" = set; then :
+ if ${glibcxx_cv_func_logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49673,7 +49865,7 @@ $as_echo "$glibcxx_cv_func_logf_use" >&6; }
for ac_func in logf
do :
ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf"
-if test "x$ac_cv_func_logf" = x""yes; then :
+if test "x$ac_cv_func_logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGF 1
_ACEOF
@@ -49686,7 +49878,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5
$as_echo_n "checking for _logf declaration... " >&6; }
if test x${glibcxx_cv_func__logf_use+set} != xset; then
- if test "${glibcxx_cv_func__logf_use+set}" = set; then :
+ if ${glibcxx_cv_func__logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49735,7 +49927,7 @@ $as_echo "$glibcxx_cv_func__logf_use" >&6; }
for ac_func in _logf
do :
ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf"
-if test "x$ac_cv_func__logf" = x""yes; then :
+if test "x$ac_cv_func__logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGF 1
_ACEOF
@@ -49753,7 +49945,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5
$as_echo_n "checking for log10f declaration... " >&6; }
if test x${glibcxx_cv_func_log10f_use+set} != xset; then
- if test "${glibcxx_cv_func_log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49802,7 +49994,7 @@ $as_echo "$glibcxx_cv_func_log10f_use" >&6; }
for ac_func in log10f
do :
ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f"
-if test "x$ac_cv_func_log10f" = x""yes; then :
+if test "x$ac_cv_func_log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10F 1
_ACEOF
@@ -49815,7 +50007,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5
$as_echo_n "checking for _log10f declaration... " >&6; }
if test x${glibcxx_cv_func__log10f_use+set} != xset; then
- if test "${glibcxx_cv_func__log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49864,7 +50056,7 @@ $as_echo "$glibcxx_cv_func__log10f_use" >&6; }
for ac_func in _log10f
do :
ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f"
-if test "x$ac_cv_func__log10f" = x""yes; then :
+if test "x$ac_cv_func__log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10F 1
_ACEOF
@@ -49882,7 +50074,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5
$as_echo_n "checking for modff declaration... " >&6; }
if test x${glibcxx_cv_func_modff_use+set} != xset; then
- if test "${glibcxx_cv_func_modff_use+set}" = set; then :
+ if ${glibcxx_cv_func_modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49927,7 +50119,7 @@ $as_echo "$glibcxx_cv_func_modff_use" >&6; }
for ac_func in modff
do :
ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff"
-if test "x$ac_cv_func_modff" = x""yes; then :
+if test "x$ac_cv_func_modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFF 1
_ACEOF
@@ -49940,7 +50132,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5
$as_echo_n "checking for _modff declaration... " >&6; }
if test x${glibcxx_cv_func__modff_use+set} != xset; then
- if test "${glibcxx_cv_func__modff_use+set}" = set; then :
+ if ${glibcxx_cv_func__modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -49985,7 +50177,7 @@ $as_echo "$glibcxx_cv_func__modff_use" >&6; }
for ac_func in _modff
do :
ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff"
-if test "x$ac_cv_func__modff" = x""yes; then :
+if test "x$ac_cv_func__modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFF 1
_ACEOF
@@ -50003,7 +50195,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5
$as_echo_n "checking for modf declaration... " >&6; }
if test x${glibcxx_cv_func_modf_use+set} != xset; then
- if test "${glibcxx_cv_func_modf_use+set}" = set; then :
+ if ${glibcxx_cv_func_modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50048,7 +50240,7 @@ $as_echo "$glibcxx_cv_func_modf_use" >&6; }
for ac_func in modf
do :
ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf"
-if test "x$ac_cv_func_modf" = x""yes; then :
+if test "x$ac_cv_func_modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODF 1
_ACEOF
@@ -50061,7 +50253,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5
$as_echo_n "checking for _modf declaration... " >&6; }
if test x${glibcxx_cv_func__modf_use+set} != xset; then
- if test "${glibcxx_cv_func__modf_use+set}" = set; then :
+ if ${glibcxx_cv_func__modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50106,7 +50298,7 @@ $as_echo "$glibcxx_cv_func__modf_use" >&6; }
for ac_func in _modf
do :
ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf"
-if test "x$ac_cv_func__modf" = x""yes; then :
+if test "x$ac_cv_func__modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODF 1
_ACEOF
@@ -50124,7 +50316,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5
$as_echo_n "checking for powf declaration... " >&6; }
if test x${glibcxx_cv_func_powf_use+set} != xset; then
- if test "${glibcxx_cv_func_powf_use+set}" = set; then :
+ if ${glibcxx_cv_func_powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50169,7 +50361,7 @@ $as_echo "$glibcxx_cv_func_powf_use" >&6; }
for ac_func in powf
do :
ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf"
-if test "x$ac_cv_func_powf" = x""yes; then :
+if test "x$ac_cv_func_powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWF 1
_ACEOF
@@ -50182,7 +50374,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5
$as_echo_n "checking for _powf declaration... " >&6; }
if test x${glibcxx_cv_func__powf_use+set} != xset; then
- if test "${glibcxx_cv_func__powf_use+set}" = set; then :
+ if ${glibcxx_cv_func__powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50227,7 +50419,7 @@ $as_echo "$glibcxx_cv_func__powf_use" >&6; }
for ac_func in _powf
do :
ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf"
-if test "x$ac_cv_func__powf" = x""yes; then :
+if test "x$ac_cv_func__powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWF 1
_ACEOF
@@ -50245,7 +50437,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5
$as_echo_n "checking for sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50294,7 +50486,7 @@ $as_echo "$glibcxx_cv_func_sqrtf_use" >&6; }
for ac_func in sqrtf
do :
ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf"
-if test "x$ac_cv_func_sqrtf" = x""yes; then :
+if test "x$ac_cv_func_sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTF 1
_ACEOF
@@ -50307,7 +50499,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5
$as_echo_n "checking for _sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50356,7 +50548,7 @@ $as_echo "$glibcxx_cv_func__sqrtf_use" >&6; }
for ac_func in _sqrtf
do :
ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf"
-if test "x$ac_cv_func__sqrtf" = x""yes; then :
+if test "x$ac_cv_func__sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTF 1
_ACEOF
@@ -50374,7 +50566,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5
$as_echo_n "checking for sincosf declaration... " >&6; }
if test x${glibcxx_cv_func_sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50419,7 +50611,7 @@ $as_echo "$glibcxx_cv_func_sincosf_use" >&6; }
for ac_func in sincosf
do :
ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf"
-if test "x$ac_cv_func_sincosf" = x""yes; then :
+if test "x$ac_cv_func_sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSF 1
_ACEOF
@@ -50432,7 +50624,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5
$as_echo_n "checking for _sincosf declaration... " >&6; }
if test x${glibcxx_cv_func__sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50477,7 +50669,7 @@ $as_echo "$glibcxx_cv_func__sincosf_use" >&6; }
for ac_func in _sincosf
do :
ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf"
-if test "x$ac_cv_func__sincosf" = x""yes; then :
+if test "x$ac_cv_func__sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSF 1
_ACEOF
@@ -50495,7 +50687,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5
$as_echo_n "checking for finitef declaration... " >&6; }
if test x${glibcxx_cv_func_finitef_use+set} != xset; then
- if test "${glibcxx_cv_func_finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50544,7 +50736,7 @@ $as_echo "$glibcxx_cv_func_finitef_use" >&6; }
for ac_func in finitef
do :
ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef"
-if test "x$ac_cv_func_finitef" = x""yes; then :
+if test "x$ac_cv_func_finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEF 1
_ACEOF
@@ -50557,7 +50749,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5
$as_echo_n "checking for _finitef declaration... " >&6; }
if test x${glibcxx_cv_func__finitef_use+set} != xset; then
- if test "${glibcxx_cv_func__finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50606,7 +50798,7 @@ $as_echo "$glibcxx_cv_func__finitef_use" >&6; }
for ac_func in _finitef
do :
ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef"
-if test "x$ac_cv_func__finitef" = x""yes; then :
+if test "x$ac_cv_func__finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEF 1
_ACEOF
@@ -50623,7 +50815,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5
$as_echo_n "checking for long double trig functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50666,8 +50858,7 @@ $as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -50678,7 +50869,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5
$as_echo_n "checking for _long double trig functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50721,8 +50912,7 @@ $as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -50739,7 +50929,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5
$as_echo_n "checking for long double round functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50782,8 +50972,7 @@ $as_echo "$glibcxx_cv_func_long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -50794,7 +50983,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5
$as_echo_n "checking for _long double round functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50837,8 +51026,7 @@ $as_echo "$glibcxx_cv_func__long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -50857,7 +51045,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5
$as_echo_n "checking for isnanl declaration... " >&6; }
if test x${glibcxx_cv_func_isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50906,7 +51094,7 @@ $as_echo "$glibcxx_cv_func_isnanl_use" >&6; }
for ac_func in isnanl
do :
ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl"
-if test "x$ac_cv_func_isnanl" = x""yes; then :
+if test "x$ac_cv_func_isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANL 1
_ACEOF
@@ -50919,7 +51107,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5
$as_echo_n "checking for _isnanl declaration... " >&6; }
if test x${glibcxx_cv_func__isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -50968,7 +51156,7 @@ $as_echo "$glibcxx_cv_func__isnanl_use" >&6; }
for ac_func in _isnanl
do :
ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl"
-if test "x$ac_cv_func__isnanl" = x""yes; then :
+if test "x$ac_cv_func__isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANL 1
_ACEOF
@@ -50986,7 +51174,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5
$as_echo_n "checking for isinfl declaration... " >&6; }
if test x${glibcxx_cv_func_isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func_isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51035,7 +51223,7 @@ $as_echo "$glibcxx_cv_func_isinfl_use" >&6; }
for ac_func in isinfl
do :
ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl"
-if test "x$ac_cv_func_isinfl" = x""yes; then :
+if test "x$ac_cv_func_isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFL 1
_ACEOF
@@ -51048,7 +51236,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5
$as_echo_n "checking for _isinfl declaration... " >&6; }
if test x${glibcxx_cv_func__isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func__isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51097,7 +51285,7 @@ $as_echo "$glibcxx_cv_func__isinfl_use" >&6; }
for ac_func in _isinfl
do :
ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl"
-if test "x$ac_cv_func__isinfl" = x""yes; then :
+if test "x$ac_cv_func__isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFL 1
_ACEOF
@@ -51115,7 +51303,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5
$as_echo_n "checking for atan2l declaration... " >&6; }
if test x${glibcxx_cv_func_atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51160,7 +51348,7 @@ $as_echo "$glibcxx_cv_func_atan2l_use" >&6; }
for ac_func in atan2l
do :
ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l"
-if test "x$ac_cv_func_atan2l" = x""yes; then :
+if test "x$ac_cv_func_atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
_ACEOF
@@ -51173,7 +51361,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5
$as_echo_n "checking for _atan2l declaration... " >&6; }
if test x${glibcxx_cv_func__atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51218,7 +51406,7 @@ $as_echo "$glibcxx_cv_func__atan2l_use" >&6; }
for ac_func in _atan2l
do :
ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l"
-if test "x$ac_cv_func__atan2l" = x""yes; then :
+if test "x$ac_cv_func__atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2L 1
_ACEOF
@@ -51236,7 +51424,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5
$as_echo_n "checking for expl declaration... " >&6; }
if test x${glibcxx_cv_func_expl_use+set} != xset; then
- if test "${glibcxx_cv_func_expl_use+set}" = set; then :
+ if ${glibcxx_cv_func_expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51285,7 +51473,7 @@ $as_echo "$glibcxx_cv_func_expl_use" >&6; }
for ac_func in expl
do :
ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl"
-if test "x$ac_cv_func_expl" = x""yes; then :
+if test "x$ac_cv_func_expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
_ACEOF
@@ -51298,7 +51486,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5
$as_echo_n "checking for _expl declaration... " >&6; }
if test x${glibcxx_cv_func__expl_use+set} != xset; then
- if test "${glibcxx_cv_func__expl_use+set}" = set; then :
+ if ${glibcxx_cv_func__expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51347,7 +51535,7 @@ $as_echo "$glibcxx_cv_func__expl_use" >&6; }
for ac_func in _expl
do :
ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl"
-if test "x$ac_cv_func__expl" = x""yes; then :
+if test "x$ac_cv_func__expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPL 1
_ACEOF
@@ -51365,7 +51553,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5
$as_echo_n "checking for fabsl declaration... " >&6; }
if test x${glibcxx_cv_func_fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51414,7 +51602,7 @@ $as_echo "$glibcxx_cv_func_fabsl_use" >&6; }
for ac_func in fabsl
do :
ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl"
-if test "x$ac_cv_func_fabsl" = x""yes; then :
+if test "x$ac_cv_func_fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSL 1
_ACEOF
@@ -51427,7 +51615,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5
$as_echo_n "checking for _fabsl declaration... " >&6; }
if test x${glibcxx_cv_func__fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51476,7 +51664,7 @@ $as_echo "$glibcxx_cv_func__fabsl_use" >&6; }
for ac_func in _fabsl
do :
ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl"
-if test "x$ac_cv_func__fabsl" = x""yes; then :
+if test "x$ac_cv_func__fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSL 1
_ACEOF
@@ -51494,7 +51682,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5
$as_echo_n "checking for fmodl declaration... " >&6; }
if test x${glibcxx_cv_func_fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51539,7 +51727,7 @@ $as_echo "$glibcxx_cv_func_fmodl_use" >&6; }
for ac_func in fmodl
do :
ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl"
-if test "x$ac_cv_func_fmodl" = x""yes; then :
+if test "x$ac_cv_func_fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
_ACEOF
@@ -51552,7 +51740,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5
$as_echo_n "checking for _fmodl declaration... " >&6; }
if test x${glibcxx_cv_func__fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51597,7 +51785,7 @@ $as_echo "$glibcxx_cv_func__fmodl_use" >&6; }
for ac_func in _fmodl
do :
ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl"
-if test "x$ac_cv_func__fmodl" = x""yes; then :
+if test "x$ac_cv_func__fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODL 1
_ACEOF
@@ -51615,7 +51803,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5
$as_echo_n "checking for frexpl declaration... " >&6; }
if test x${glibcxx_cv_func_frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51660,7 +51848,7 @@ $as_echo "$glibcxx_cv_func_frexpl_use" >&6; }
for ac_func in frexpl
do :
ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl"
-if test "x$ac_cv_func_frexpl" = x""yes; then :
+if test "x$ac_cv_func_frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPL 1
_ACEOF
@@ -51673,7 +51861,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5
$as_echo_n "checking for _frexpl declaration... " >&6; }
if test x${glibcxx_cv_func__frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51718,7 +51906,7 @@ $as_echo "$glibcxx_cv_func__frexpl_use" >&6; }
for ac_func in _frexpl
do :
ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl"
-if test "x$ac_cv_func__frexpl" = x""yes; then :
+if test "x$ac_cv_func__frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPL 1
_ACEOF
@@ -51736,7 +51924,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5
$as_echo_n "checking for hypotl declaration... " >&6; }
if test x${glibcxx_cv_func_hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51781,7 +51969,7 @@ $as_echo "$glibcxx_cv_func_hypotl_use" >&6; }
for ac_func in hypotl
do :
ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl"
-if test "x$ac_cv_func_hypotl" = x""yes; then :
+if test "x$ac_cv_func_hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTL 1
_ACEOF
@@ -51794,7 +51982,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5
$as_echo_n "checking for _hypotl declaration... " >&6; }
if test x${glibcxx_cv_func__hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51839,7 +52027,7 @@ $as_echo "$glibcxx_cv_func__hypotl_use" >&6; }
for ac_func in _hypotl
do :
ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl"
-if test "x$ac_cv_func__hypotl" = x""yes; then :
+if test "x$ac_cv_func__hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTL 1
_ACEOF
@@ -51857,7 +52045,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5
$as_echo_n "checking for ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51902,7 +52090,7 @@ $as_echo "$glibcxx_cv_func_ldexpl_use" >&6; }
for ac_func in ldexpl
do :
ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl"
-if test "x$ac_cv_func_ldexpl" = x""yes; then :
+if test "x$ac_cv_func_ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPL 1
_ACEOF
@@ -51915,7 +52103,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5
$as_echo_n "checking for _ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -51960,7 +52148,7 @@ $as_echo "$glibcxx_cv_func__ldexpl_use" >&6; }
for ac_func in _ldexpl
do :
ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl"
-if test "x$ac_cv_func__ldexpl" = x""yes; then :
+if test "x$ac_cv_func__ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPL 1
_ACEOF
@@ -51978,7 +52166,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5
$as_echo_n "checking for logl declaration... " >&6; }
if test x${glibcxx_cv_func_logl_use+set} != xset; then
- if test "${glibcxx_cv_func_logl_use+set}" = set; then :
+ if ${glibcxx_cv_func_logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52027,7 +52215,7 @@ $as_echo "$glibcxx_cv_func_logl_use" >&6; }
for ac_func in logl
do :
ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl"
-if test "x$ac_cv_func_logl" = x""yes; then :
+if test "x$ac_cv_func_logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
_ACEOF
@@ -52040,7 +52228,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5
$as_echo_n "checking for _logl declaration... " >&6; }
if test x${glibcxx_cv_func__logl_use+set} != xset; then
- if test "${glibcxx_cv_func__logl_use+set}" = set; then :
+ if ${glibcxx_cv_func__logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52089,7 +52277,7 @@ $as_echo "$glibcxx_cv_func__logl_use" >&6; }
for ac_func in _logl
do :
ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl"
-if test "x$ac_cv_func__logl" = x""yes; then :
+if test "x$ac_cv_func__logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGL 1
_ACEOF
@@ -52107,7 +52295,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5
$as_echo_n "checking for log10l declaration... " >&6; }
if test x${glibcxx_cv_func_log10l_use+set} != xset; then
- if test "${glibcxx_cv_func_log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52156,7 +52344,7 @@ $as_echo "$glibcxx_cv_func_log10l_use" >&6; }
for ac_func in log10l
do :
ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l"
-if test "x$ac_cv_func_log10l" = x""yes; then :
+if test "x$ac_cv_func_log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
_ACEOF
@@ -52169,7 +52357,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5
$as_echo_n "checking for _log10l declaration... " >&6; }
if test x${glibcxx_cv_func__log10l_use+set} != xset; then
- if test "${glibcxx_cv_func__log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52218,7 +52406,7 @@ $as_echo "$glibcxx_cv_func__log10l_use" >&6; }
for ac_func in _log10l
do :
ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l"
-if test "x$ac_cv_func__log10l" = x""yes; then :
+if test "x$ac_cv_func__log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10L 1
_ACEOF
@@ -52236,7 +52424,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5
$as_echo_n "checking for modfl declaration... " >&6; }
if test x${glibcxx_cv_func_modfl_use+set} != xset; then
- if test "${glibcxx_cv_func_modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52281,7 +52469,7 @@ $as_echo "$glibcxx_cv_func_modfl_use" >&6; }
for ac_func in modfl
do :
ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl"
-if test "x$ac_cv_func_modfl" = x""yes; then :
+if test "x$ac_cv_func_modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFL 1
_ACEOF
@@ -52294,7 +52482,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5
$as_echo_n "checking for _modfl declaration... " >&6; }
if test x${glibcxx_cv_func__modfl_use+set} != xset; then
- if test "${glibcxx_cv_func__modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52339,7 +52527,7 @@ $as_echo "$glibcxx_cv_func__modfl_use" >&6; }
for ac_func in _modfl
do :
ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl"
-if test "x$ac_cv_func__modfl" = x""yes; then :
+if test "x$ac_cv_func__modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFL 1
_ACEOF
@@ -52357,7 +52545,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5
$as_echo_n "checking for powl declaration... " >&6; }
if test x${glibcxx_cv_func_powl_use+set} != xset; then
- if test "${glibcxx_cv_func_powl_use+set}" = set; then :
+ if ${glibcxx_cv_func_powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52402,7 +52590,7 @@ $as_echo "$glibcxx_cv_func_powl_use" >&6; }
for ac_func in powl
do :
ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl"
-if test "x$ac_cv_func_powl" = x""yes; then :
+if test "x$ac_cv_func_powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
_ACEOF
@@ -52415,7 +52603,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5
$as_echo_n "checking for _powl declaration... " >&6; }
if test x${glibcxx_cv_func__powl_use+set} != xset; then
- if test "${glibcxx_cv_func__powl_use+set}" = set; then :
+ if ${glibcxx_cv_func__powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52460,7 +52648,7 @@ $as_echo "$glibcxx_cv_func__powl_use" >&6; }
for ac_func in _powl
do :
ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl"
-if test "x$ac_cv_func__powl" = x""yes; then :
+if test "x$ac_cv_func__powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWL 1
_ACEOF
@@ -52478,7 +52666,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5
$as_echo_n "checking for sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52527,7 +52715,7 @@ $as_echo "$glibcxx_cv_func_sqrtl_use" >&6; }
for ac_func in sqrtl
do :
ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl"
-if test "x$ac_cv_func_sqrtl" = x""yes; then :
+if test "x$ac_cv_func_sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
_ACEOF
@@ -52540,7 +52728,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5
$as_echo_n "checking for _sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52589,7 +52777,7 @@ $as_echo "$glibcxx_cv_func__sqrtl_use" >&6; }
for ac_func in _sqrtl
do :
ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl"
-if test "x$ac_cv_func__sqrtl" = x""yes; then :
+if test "x$ac_cv_func__sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTL 1
_ACEOF
@@ -52607,7 +52795,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5
$as_echo_n "checking for sincosl declaration... " >&6; }
if test x${glibcxx_cv_func_sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52652,7 +52840,7 @@ $as_echo "$glibcxx_cv_func_sincosl_use" >&6; }
for ac_func in sincosl
do :
ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl"
-if test "x$ac_cv_func_sincosl" = x""yes; then :
+if test "x$ac_cv_func_sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSL 1
_ACEOF
@@ -52665,7 +52853,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5
$as_echo_n "checking for _sincosl declaration... " >&6; }
if test x${glibcxx_cv_func__sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52710,7 +52898,7 @@ $as_echo "$glibcxx_cv_func__sincosl_use" >&6; }
for ac_func in _sincosl
do :
ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl"
-if test "x$ac_cv_func__sincosl" = x""yes; then :
+if test "x$ac_cv_func__sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSL 1
_ACEOF
@@ -52728,7 +52916,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5
$as_echo_n "checking for finitel declaration... " >&6; }
if test x${glibcxx_cv_func_finitel_use+set} != xset; then
- if test "${glibcxx_cv_func_finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52777,7 +52965,7 @@ $as_echo "$glibcxx_cv_func_finitel_use" >&6; }
for ac_func in finitel
do :
ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel"
-if test "x$ac_cv_func_finitel" = x""yes; then :
+if test "x$ac_cv_func_finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEL 1
_ACEOF
@@ -52790,7 +52978,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5
$as_echo_n "checking for _finitel declaration... " >&6; }
if test x${glibcxx_cv_func__finitel_use+set} != xset; then
- if test "${glibcxx_cv_func__finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52839,7 +53027,7 @@ $as_echo "$glibcxx_cv_func__finitel_use" >&6; }
for ac_func in _finitel
do :
ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel"
-if test "x$ac_cv_func__finitel" = x""yes; then :
+if test "x$ac_cv_func__finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEL 1
_ACEOF
@@ -52865,7 +53053,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5
$as_echo_n "checking for at_quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_at_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52909,7 +53097,7 @@ $as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; }
for ac_func in at_quick_exit
do :
ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit"
-if test "x$ac_cv_func_at_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_at_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_AT_QUICK_EXIT 1
_ACEOF
@@ -52923,7 +53111,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5
$as_echo_n "checking for quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -52967,7 +53155,7 @@ $as_echo "$glibcxx_cv_func_quick_exit_use" >&6; }
for ac_func in quick_exit
do :
ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit"
-if test "x$ac_cv_func_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QUICK_EXIT 1
_ACEOF
@@ -52981,7 +53169,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5
$as_echo_n "checking for strtold declaration... " >&6; }
if test x${glibcxx_cv_func_strtold_use+set} != xset; then
- if test "${glibcxx_cv_func_strtold_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtold_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -53025,7 +53213,7 @@ $as_echo "$glibcxx_cv_func_strtold_use" >&6; }
for ac_func in strtold
do :
ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold"
-if test "x$ac_cv_func_strtold" = x""yes; then :
+if test "x$ac_cv_func_strtold" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
@@ -53041,7 +53229,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5
$as_echo_n "checking for strtof declaration... " >&6; }
if test x${glibcxx_cv_func_strtof_use+set} != xset; then
- if test "${glibcxx_cv_func_strtof_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtof_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -53085,7 +53273,7 @@ $as_echo "$glibcxx_cv_func_strtof_use" >&6; }
for ac_func in strtof
do :
ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof"
-if test "x$ac_cv_func_strtof" = x""yes; then :
+if test "x$ac_cv_func_strtof" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOF 1
_ACEOF
@@ -53188,7 +53376,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53332,7 +53520,7 @@ $as_echo "$ac_ld_relro" >&6; }
for ac_func in __cxa_thread_atexit
do :
ac_fn_c_check_func "$LINENO" "__cxa_thread_atexit" "ac_cv_func___cxa_thread_atexit"
-if test "x$ac_cv_func___cxa_thread_atexit" = x""yes; then :
+if test "x$ac_cv_func___cxa_thread_atexit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE___CXA_THREAD_ATEXIT 1
_ACEOF
@@ -53344,8 +53532,7 @@ done
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -53432,7 +53619,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53558,7 +53745,7 @@ if test "${enable_tls+set}" = set; then :
enableval=$enable_tls;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -53568,13 +53755,13 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports thread-local storage" >&5
$as_echo_n "checking whether the target supports thread-local storage... " >&6; }
-if test "${gcc_cv_have_tls+set}" = set; then :
+if ${gcc_cv_have_tls+:} false; then :
$as_echo_n "(cached) " >&6
else
if test "$cross_compiling" = yes; then :
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53590,7 +53777,7 @@ if ac_fn_c_try_link "$LINENO"; then :
chktls_save_CFLAGS="$CFLAGS"
CFLAGS="-fPIC $CFLAGS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53598,7 +53785,7 @@ int f() { return 0; }
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53634,7 +53821,7 @@ if ac_fn_c_try_run "$LINENO"; then :
chktls_save_LDFLAGS="$LDFLAGS"
LDFLAGS="-static $LDFLAGS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53644,8 +53831,8 @@ if ac_fn_c_try_link "$LINENO"; then :
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run test program while cross compiling
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot run test program while cross compiling
+See \`config.log' for more details" "$LINENO" 5; }
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53672,7 +53859,7 @@ rm -f core conftest.err conftest.$ac_objext \
for flag in '' '-pthread' '-lpthread'; do
CFLAGS="$flag $chktls_save_CFLAGS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53701,8 +53888,8 @@ rm -f core conftest.err conftest.$ac_objext \
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run test program while cross compiling
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot run test program while cross compiling
+See \`config.log' for more details" "$LINENO" 5; }
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53899,7 +54086,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -53976,13 +54163,13 @@ $as_echo "$ac_ld_relro" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -54013,7 +54200,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
libm="-lm"
fi
@@ -54025,7 +54212,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5
$as_echo_n "checking for isinf declaration... " >&6; }
if test x${glibcxx_cv_func_isinf_use+set} != xset; then
- if test "${glibcxx_cv_func_isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54074,7 +54261,7 @@ $as_echo "$glibcxx_cv_func_isinf_use" >&6; }
for ac_func in isinf
do :
ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf"
-if test "x$ac_cv_func_isinf" = x""yes; then :
+if test "x$ac_cv_func_isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINF 1
_ACEOF
@@ -54087,7 +54274,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5
$as_echo_n "checking for _isinf declaration... " >&6; }
if test x${glibcxx_cv_func__isinf_use+set} != xset; then
- if test "${glibcxx_cv_func__isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54136,7 +54323,7 @@ $as_echo "$glibcxx_cv_func__isinf_use" >&6; }
for ac_func in _isinf
do :
ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf"
-if test "x$ac_cv_func__isinf" = x""yes; then :
+if test "x$ac_cv_func__isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINF 1
_ACEOF
@@ -54154,7 +54341,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5
$as_echo_n "checking for isnan declaration... " >&6; }
if test x${glibcxx_cv_func_isnan_use+set} != xset; then
- if test "${glibcxx_cv_func_isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54203,7 +54390,7 @@ $as_echo "$glibcxx_cv_func_isnan_use" >&6; }
for ac_func in isnan
do :
ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan"
-if test "x$ac_cv_func_isnan" = x""yes; then :
+if test "x$ac_cv_func_isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNAN 1
_ACEOF
@@ -54216,7 +54403,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5
$as_echo_n "checking for _isnan declaration... " >&6; }
if test x${glibcxx_cv_func__isnan_use+set} != xset; then
- if test "${glibcxx_cv_func__isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54265,7 +54452,7 @@ $as_echo "$glibcxx_cv_func__isnan_use" >&6; }
for ac_func in _isnan
do :
ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan"
-if test "x$ac_cv_func__isnan" = x""yes; then :
+if test "x$ac_cv_func__isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNAN 1
_ACEOF
@@ -54283,7 +54470,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5
$as_echo_n "checking for finite declaration... " >&6; }
if test x${glibcxx_cv_func_finite_use+set} != xset; then
- if test "${glibcxx_cv_func_finite_use+set}" = set; then :
+ if ${glibcxx_cv_func_finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54332,7 +54519,7 @@ $as_echo "$glibcxx_cv_func_finite_use" >&6; }
for ac_func in finite
do :
ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite"
-if test "x$ac_cv_func_finite" = x""yes; then :
+if test "x$ac_cv_func_finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITE 1
_ACEOF
@@ -54345,7 +54532,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5
$as_echo_n "checking for _finite declaration... " >&6; }
if test x${glibcxx_cv_func__finite_use+set} != xset; then
- if test "${glibcxx_cv_func__finite_use+set}" = set; then :
+ if ${glibcxx_cv_func__finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54394,7 +54581,7 @@ $as_echo "$glibcxx_cv_func__finite_use" >&6; }
for ac_func in _finite
do :
ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite"
-if test "x$ac_cv_func__finite" = x""yes; then :
+if test "x$ac_cv_func__finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITE 1
_ACEOF
@@ -54412,7 +54599,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5
$as_echo_n "checking for sincos declaration... " >&6; }
if test x${glibcxx_cv_func_sincos_use+set} != xset; then
- if test "${glibcxx_cv_func_sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54457,7 +54644,7 @@ $as_echo "$glibcxx_cv_func_sincos_use" >&6; }
for ac_func in sincos
do :
ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos"
-if test "x$ac_cv_func_sincos" = x""yes; then :
+if test "x$ac_cv_func_sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOS 1
_ACEOF
@@ -54470,7 +54657,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5
$as_echo_n "checking for _sincos declaration... " >&6; }
if test x${glibcxx_cv_func__sincos_use+set} != xset; then
- if test "${glibcxx_cv_func__sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54515,7 +54702,7 @@ $as_echo "$glibcxx_cv_func__sincos_use" >&6; }
for ac_func in _sincos
do :
ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos"
-if test "x$ac_cv_func__sincos" = x""yes; then :
+if test "x$ac_cv_func__sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOS 1
_ACEOF
@@ -54533,7 +54720,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5
$as_echo_n "checking for fpclass declaration... " >&6; }
if test x${glibcxx_cv_func_fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54582,7 +54769,7 @@ $as_echo "$glibcxx_cv_func_fpclass_use" >&6; }
for ac_func in fpclass
do :
ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass"
-if test "x$ac_cv_func_fpclass" = x""yes; then :
+if test "x$ac_cv_func_fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FPCLASS 1
_ACEOF
@@ -54595,7 +54782,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5
$as_echo_n "checking for _fpclass declaration... " >&6; }
if test x${glibcxx_cv_func__fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54644,7 +54831,7 @@ $as_echo "$glibcxx_cv_func__fpclass_use" >&6; }
for ac_func in _fpclass
do :
ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass"
-if test "x$ac_cv_func__fpclass" = x""yes; then :
+if test "x$ac_cv_func__fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FPCLASS 1
_ACEOF
@@ -54662,7 +54849,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5
$as_echo_n "checking for qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54711,7 +54898,7 @@ $as_echo "$glibcxx_cv_func_qfpclass_use" >&6; }
for ac_func in qfpclass
do :
ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass"
-if test "x$ac_cv_func_qfpclass" = x""yes; then :
+if test "x$ac_cv_func_qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QFPCLASS 1
_ACEOF
@@ -54724,7 +54911,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5
$as_echo_n "checking for _qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54773,7 +54960,7 @@ $as_echo "$glibcxx_cv_func__qfpclass_use" >&6; }
for ac_func in _qfpclass
do :
ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass"
-if test "x$ac_cv_func__qfpclass" = x""yes; then :
+if test "x$ac_cv_func__qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__QFPCLASS 1
_ACEOF
@@ -54791,7 +54978,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5
$as_echo_n "checking for hypot declaration... " >&6; }
if test x${glibcxx_cv_func_hypot_use+set} != xset; then
- if test "${glibcxx_cv_func_hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54836,7 +55023,7 @@ $as_echo "$glibcxx_cv_func_hypot_use" >&6; }
for ac_func in hypot
do :
ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot"
-if test "x$ac_cv_func_hypot" = x""yes; then :
+if test "x$ac_cv_func_hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOT 1
_ACEOF
@@ -54849,7 +55036,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5
$as_echo_n "checking for _hypot declaration... " >&6; }
if test x${glibcxx_cv_func__hypot_use+set} != xset; then
- if test "${glibcxx_cv_func__hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54894,7 +55081,7 @@ $as_echo "$glibcxx_cv_func__hypot_use" >&6; }
for ac_func in _hypot
do :
ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot"
-if test "x$ac_cv_func__hypot" = x""yes; then :
+if test "x$ac_cv_func__hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOT 1
_ACEOF
@@ -54911,7 +55098,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5
$as_echo_n "checking for float trig functions... " >&6; }
- if test "${glibcxx_cv_func_float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -54954,8 +55141,7 @@ $as_echo "$glibcxx_cv_func_float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -54966,7 +55152,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5
$as_echo_n "checking for _float trig functions... " >&6; }
- if test "${glibcxx_cv_func__float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55009,8 +55195,7 @@ $as_echo "$glibcxx_cv_func__float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -55027,7 +55212,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5
$as_echo_n "checking for float round functions... " >&6; }
- if test "${glibcxx_cv_func_float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55070,8 +55255,7 @@ $as_echo "$glibcxx_cv_func_float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -55082,7 +55266,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5
$as_echo_n "checking for _float round functions... " >&6; }
- if test "${glibcxx_cv_func__float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55125,8 +55309,7 @@ $as_echo "$glibcxx_cv_func__float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -55145,7 +55328,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5
$as_echo_n "checking for expf declaration... " >&6; }
if test x${glibcxx_cv_func_expf_use+set} != xset; then
- if test "${glibcxx_cv_func_expf_use+set}" = set; then :
+ if ${glibcxx_cv_func_expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55194,7 +55377,7 @@ $as_echo "$glibcxx_cv_func_expf_use" >&6; }
for ac_func in expf
do :
ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf"
-if test "x$ac_cv_func_expf" = x""yes; then :
+if test "x$ac_cv_func_expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPF 1
_ACEOF
@@ -55207,7 +55390,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5
$as_echo_n "checking for _expf declaration... " >&6; }
if test x${glibcxx_cv_func__expf_use+set} != xset; then
- if test "${glibcxx_cv_func__expf_use+set}" = set; then :
+ if ${glibcxx_cv_func__expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55256,7 +55439,7 @@ $as_echo "$glibcxx_cv_func__expf_use" >&6; }
for ac_func in _expf
do :
ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf"
-if test "x$ac_cv_func__expf" = x""yes; then :
+if test "x$ac_cv_func__expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPF 1
_ACEOF
@@ -55274,7 +55457,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5
$as_echo_n "checking for isnanf declaration... " >&6; }
if test x${glibcxx_cv_func_isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55323,7 +55506,7 @@ $as_echo "$glibcxx_cv_func_isnanf_use" >&6; }
for ac_func in isnanf
do :
ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf"
-if test "x$ac_cv_func_isnanf" = x""yes; then :
+if test "x$ac_cv_func_isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANF 1
_ACEOF
@@ -55336,7 +55519,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5
$as_echo_n "checking for _isnanf declaration... " >&6; }
if test x${glibcxx_cv_func__isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55385,7 +55568,7 @@ $as_echo "$glibcxx_cv_func__isnanf_use" >&6; }
for ac_func in _isnanf
do :
ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf"
-if test "x$ac_cv_func__isnanf" = x""yes; then :
+if test "x$ac_cv_func__isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANF 1
_ACEOF
@@ -55403,7 +55586,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5
$as_echo_n "checking for isinff declaration... " >&6; }
if test x${glibcxx_cv_func_isinff_use+set} != xset; then
- if test "${glibcxx_cv_func_isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55452,7 +55635,7 @@ $as_echo "$glibcxx_cv_func_isinff_use" >&6; }
for ac_func in isinff
do :
ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff"
-if test "x$ac_cv_func_isinff" = x""yes; then :
+if test "x$ac_cv_func_isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFF 1
_ACEOF
@@ -55465,7 +55648,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5
$as_echo_n "checking for _isinff declaration... " >&6; }
if test x${glibcxx_cv_func__isinff_use+set} != xset; then
- if test "${glibcxx_cv_func__isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55514,7 +55697,7 @@ $as_echo "$glibcxx_cv_func__isinff_use" >&6; }
for ac_func in _isinff
do :
ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff"
-if test "x$ac_cv_func__isinff" = x""yes; then :
+if test "x$ac_cv_func__isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFF 1
_ACEOF
@@ -55532,7 +55715,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5
$as_echo_n "checking for atan2f declaration... " >&6; }
if test x${glibcxx_cv_func_atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55577,7 +55760,7 @@ $as_echo "$glibcxx_cv_func_atan2f_use" >&6; }
for ac_func in atan2f
do :
ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f"
-if test "x$ac_cv_func_atan2f" = x""yes; then :
+if test "x$ac_cv_func_atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2F 1
_ACEOF
@@ -55590,7 +55773,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5
$as_echo_n "checking for _atan2f declaration... " >&6; }
if test x${glibcxx_cv_func__atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55635,7 +55818,7 @@ $as_echo "$glibcxx_cv_func__atan2f_use" >&6; }
for ac_func in _atan2f
do :
ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f"
-if test "x$ac_cv_func__atan2f" = x""yes; then :
+if test "x$ac_cv_func__atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2F 1
_ACEOF
@@ -55653,7 +55836,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5
$as_echo_n "checking for fabsf declaration... " >&6; }
if test x${glibcxx_cv_func_fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55702,7 +55885,7 @@ $as_echo "$glibcxx_cv_func_fabsf_use" >&6; }
for ac_func in fabsf
do :
ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf"
-if test "x$ac_cv_func_fabsf" = x""yes; then :
+if test "x$ac_cv_func_fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSF 1
_ACEOF
@@ -55715,7 +55898,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5
$as_echo_n "checking for _fabsf declaration... " >&6; }
if test x${glibcxx_cv_func__fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55764,7 +55947,7 @@ $as_echo "$glibcxx_cv_func__fabsf_use" >&6; }
for ac_func in _fabsf
do :
ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf"
-if test "x$ac_cv_func__fabsf" = x""yes; then :
+if test "x$ac_cv_func__fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSF 1
_ACEOF
@@ -55782,7 +55965,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5
$as_echo_n "checking for fmodf declaration... " >&6; }
if test x${glibcxx_cv_func_fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55827,7 +56010,7 @@ $as_echo "$glibcxx_cv_func_fmodf_use" >&6; }
for ac_func in fmodf
do :
ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf"
-if test "x$ac_cv_func_fmodf" = x""yes; then :
+if test "x$ac_cv_func_fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODF 1
_ACEOF
@@ -55840,7 +56023,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5
$as_echo_n "checking for _fmodf declaration... " >&6; }
if test x${glibcxx_cv_func__fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55885,7 +56068,7 @@ $as_echo "$glibcxx_cv_func__fmodf_use" >&6; }
for ac_func in _fmodf
do :
ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf"
-if test "x$ac_cv_func__fmodf" = x""yes; then :
+if test "x$ac_cv_func__fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODF 1
_ACEOF
@@ -55903,7 +56086,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5
$as_echo_n "checking for frexpf declaration... " >&6; }
if test x${glibcxx_cv_func_frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -55948,7 +56131,7 @@ $as_echo "$glibcxx_cv_func_frexpf_use" >&6; }
for ac_func in frexpf
do :
ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf"
-if test "x$ac_cv_func_frexpf" = x""yes; then :
+if test "x$ac_cv_func_frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPF 1
_ACEOF
@@ -55961,7 +56144,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5
$as_echo_n "checking for _frexpf declaration... " >&6; }
if test x${glibcxx_cv_func__frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56006,7 +56189,7 @@ $as_echo "$glibcxx_cv_func__frexpf_use" >&6; }
for ac_func in _frexpf
do :
ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf"
-if test "x$ac_cv_func__frexpf" = x""yes; then :
+if test "x$ac_cv_func__frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPF 1
_ACEOF
@@ -56024,7 +56207,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5
$as_echo_n "checking for hypotf declaration... " >&6; }
if test x${glibcxx_cv_func_hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56069,7 +56252,7 @@ $as_echo "$glibcxx_cv_func_hypotf_use" >&6; }
for ac_func in hypotf
do :
ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf"
-if test "x$ac_cv_func_hypotf" = x""yes; then :
+if test "x$ac_cv_func_hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTF 1
_ACEOF
@@ -56082,7 +56265,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5
$as_echo_n "checking for _hypotf declaration... " >&6; }
if test x${glibcxx_cv_func__hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56127,7 +56310,7 @@ $as_echo "$glibcxx_cv_func__hypotf_use" >&6; }
for ac_func in _hypotf
do :
ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf"
-if test "x$ac_cv_func__hypotf" = x""yes; then :
+if test "x$ac_cv_func__hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTF 1
_ACEOF
@@ -56145,7 +56328,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5
$as_echo_n "checking for ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56190,7 +56373,7 @@ $as_echo "$glibcxx_cv_func_ldexpf_use" >&6; }
for ac_func in ldexpf
do :
ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf"
-if test "x$ac_cv_func_ldexpf" = x""yes; then :
+if test "x$ac_cv_func_ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPF 1
_ACEOF
@@ -56203,7 +56386,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5
$as_echo_n "checking for _ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56248,7 +56431,7 @@ $as_echo "$glibcxx_cv_func__ldexpf_use" >&6; }
for ac_func in _ldexpf
do :
ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf"
-if test "x$ac_cv_func__ldexpf" = x""yes; then :
+if test "x$ac_cv_func__ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPF 1
_ACEOF
@@ -56266,7 +56449,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5
$as_echo_n "checking for logf declaration... " >&6; }
if test x${glibcxx_cv_func_logf_use+set} != xset; then
- if test "${glibcxx_cv_func_logf_use+set}" = set; then :
+ if ${glibcxx_cv_func_logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56315,7 +56498,7 @@ $as_echo "$glibcxx_cv_func_logf_use" >&6; }
for ac_func in logf
do :
ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf"
-if test "x$ac_cv_func_logf" = x""yes; then :
+if test "x$ac_cv_func_logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGF 1
_ACEOF
@@ -56328,7 +56511,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5
$as_echo_n "checking for _logf declaration... " >&6; }
if test x${glibcxx_cv_func__logf_use+set} != xset; then
- if test "${glibcxx_cv_func__logf_use+set}" = set; then :
+ if ${glibcxx_cv_func__logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56377,7 +56560,7 @@ $as_echo "$glibcxx_cv_func__logf_use" >&6; }
for ac_func in _logf
do :
ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf"
-if test "x$ac_cv_func__logf" = x""yes; then :
+if test "x$ac_cv_func__logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGF 1
_ACEOF
@@ -56395,7 +56578,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5
$as_echo_n "checking for log10f declaration... " >&6; }
if test x${glibcxx_cv_func_log10f_use+set} != xset; then
- if test "${glibcxx_cv_func_log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56444,7 +56627,7 @@ $as_echo "$glibcxx_cv_func_log10f_use" >&6; }
for ac_func in log10f
do :
ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f"
-if test "x$ac_cv_func_log10f" = x""yes; then :
+if test "x$ac_cv_func_log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10F 1
_ACEOF
@@ -56457,7 +56640,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5
$as_echo_n "checking for _log10f declaration... " >&6; }
if test x${glibcxx_cv_func__log10f_use+set} != xset; then
- if test "${glibcxx_cv_func__log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56506,7 +56689,7 @@ $as_echo "$glibcxx_cv_func__log10f_use" >&6; }
for ac_func in _log10f
do :
ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f"
-if test "x$ac_cv_func__log10f" = x""yes; then :
+if test "x$ac_cv_func__log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10F 1
_ACEOF
@@ -56524,7 +56707,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5
$as_echo_n "checking for modff declaration... " >&6; }
if test x${glibcxx_cv_func_modff_use+set} != xset; then
- if test "${glibcxx_cv_func_modff_use+set}" = set; then :
+ if ${glibcxx_cv_func_modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56569,7 +56752,7 @@ $as_echo "$glibcxx_cv_func_modff_use" >&6; }
for ac_func in modff
do :
ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff"
-if test "x$ac_cv_func_modff" = x""yes; then :
+if test "x$ac_cv_func_modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFF 1
_ACEOF
@@ -56582,7 +56765,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5
$as_echo_n "checking for _modff declaration... " >&6; }
if test x${glibcxx_cv_func__modff_use+set} != xset; then
- if test "${glibcxx_cv_func__modff_use+set}" = set; then :
+ if ${glibcxx_cv_func__modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56627,7 +56810,7 @@ $as_echo "$glibcxx_cv_func__modff_use" >&6; }
for ac_func in _modff
do :
ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff"
-if test "x$ac_cv_func__modff" = x""yes; then :
+if test "x$ac_cv_func__modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFF 1
_ACEOF
@@ -56645,7 +56828,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5
$as_echo_n "checking for modf declaration... " >&6; }
if test x${glibcxx_cv_func_modf_use+set} != xset; then
- if test "${glibcxx_cv_func_modf_use+set}" = set; then :
+ if ${glibcxx_cv_func_modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56690,7 +56873,7 @@ $as_echo "$glibcxx_cv_func_modf_use" >&6; }
for ac_func in modf
do :
ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf"
-if test "x$ac_cv_func_modf" = x""yes; then :
+if test "x$ac_cv_func_modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODF 1
_ACEOF
@@ -56703,7 +56886,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5
$as_echo_n "checking for _modf declaration... " >&6; }
if test x${glibcxx_cv_func__modf_use+set} != xset; then
- if test "${glibcxx_cv_func__modf_use+set}" = set; then :
+ if ${glibcxx_cv_func__modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56748,7 +56931,7 @@ $as_echo "$glibcxx_cv_func__modf_use" >&6; }
for ac_func in _modf
do :
ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf"
-if test "x$ac_cv_func__modf" = x""yes; then :
+if test "x$ac_cv_func__modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODF 1
_ACEOF
@@ -56766,7 +56949,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5
$as_echo_n "checking for powf declaration... " >&6; }
if test x${glibcxx_cv_func_powf_use+set} != xset; then
- if test "${glibcxx_cv_func_powf_use+set}" = set; then :
+ if ${glibcxx_cv_func_powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56811,7 +56994,7 @@ $as_echo "$glibcxx_cv_func_powf_use" >&6; }
for ac_func in powf
do :
ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf"
-if test "x$ac_cv_func_powf" = x""yes; then :
+if test "x$ac_cv_func_powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWF 1
_ACEOF
@@ -56824,7 +57007,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5
$as_echo_n "checking for _powf declaration... " >&6; }
if test x${glibcxx_cv_func__powf_use+set} != xset; then
- if test "${glibcxx_cv_func__powf_use+set}" = set; then :
+ if ${glibcxx_cv_func__powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56869,7 +57052,7 @@ $as_echo "$glibcxx_cv_func__powf_use" >&6; }
for ac_func in _powf
do :
ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf"
-if test "x$ac_cv_func__powf" = x""yes; then :
+if test "x$ac_cv_func__powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWF 1
_ACEOF
@@ -56887,7 +57070,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5
$as_echo_n "checking for sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56936,7 +57119,7 @@ $as_echo "$glibcxx_cv_func_sqrtf_use" >&6; }
for ac_func in sqrtf
do :
ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf"
-if test "x$ac_cv_func_sqrtf" = x""yes; then :
+if test "x$ac_cv_func_sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTF 1
_ACEOF
@@ -56949,7 +57132,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5
$as_echo_n "checking for _sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -56998,7 +57181,7 @@ $as_echo "$glibcxx_cv_func__sqrtf_use" >&6; }
for ac_func in _sqrtf
do :
ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf"
-if test "x$ac_cv_func__sqrtf" = x""yes; then :
+if test "x$ac_cv_func__sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTF 1
_ACEOF
@@ -57016,7 +57199,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5
$as_echo_n "checking for sincosf declaration... " >&6; }
if test x${glibcxx_cv_func_sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57061,7 +57244,7 @@ $as_echo "$glibcxx_cv_func_sincosf_use" >&6; }
for ac_func in sincosf
do :
ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf"
-if test "x$ac_cv_func_sincosf" = x""yes; then :
+if test "x$ac_cv_func_sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSF 1
_ACEOF
@@ -57074,7 +57257,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5
$as_echo_n "checking for _sincosf declaration... " >&6; }
if test x${glibcxx_cv_func__sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57119,7 +57302,7 @@ $as_echo "$glibcxx_cv_func__sincosf_use" >&6; }
for ac_func in _sincosf
do :
ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf"
-if test "x$ac_cv_func__sincosf" = x""yes; then :
+if test "x$ac_cv_func__sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSF 1
_ACEOF
@@ -57137,7 +57320,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5
$as_echo_n "checking for finitef declaration... " >&6; }
if test x${glibcxx_cv_func_finitef_use+set} != xset; then
- if test "${glibcxx_cv_func_finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57186,7 +57369,7 @@ $as_echo "$glibcxx_cv_func_finitef_use" >&6; }
for ac_func in finitef
do :
ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef"
-if test "x$ac_cv_func_finitef" = x""yes; then :
+if test "x$ac_cv_func_finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEF 1
_ACEOF
@@ -57199,7 +57382,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5
$as_echo_n "checking for _finitef declaration... " >&6; }
if test x${glibcxx_cv_func__finitef_use+set} != xset; then
- if test "${glibcxx_cv_func__finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57248,7 +57431,7 @@ $as_echo "$glibcxx_cv_func__finitef_use" >&6; }
for ac_func in _finitef
do :
ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef"
-if test "x$ac_cv_func__finitef" = x""yes; then :
+if test "x$ac_cv_func__finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEF 1
_ACEOF
@@ -57265,7 +57448,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5
$as_echo_n "checking for long double trig functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57308,8 +57491,7 @@ $as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -57320,7 +57502,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5
$as_echo_n "checking for _long double trig functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57363,8 +57545,7 @@ $as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -57381,7 +57562,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5
$as_echo_n "checking for long double round functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57424,8 +57605,7 @@ $as_echo "$glibcxx_cv_func_long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -57436,7 +57616,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5
$as_echo_n "checking for _long double round functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57479,8 +57659,7 @@ $as_echo "$glibcxx_cv_func__long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -57499,7 +57678,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5
$as_echo_n "checking for isnanl declaration... " >&6; }
if test x${glibcxx_cv_func_isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57548,7 +57727,7 @@ $as_echo "$glibcxx_cv_func_isnanl_use" >&6; }
for ac_func in isnanl
do :
ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl"
-if test "x$ac_cv_func_isnanl" = x""yes; then :
+if test "x$ac_cv_func_isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANL 1
_ACEOF
@@ -57561,7 +57740,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5
$as_echo_n "checking for _isnanl declaration... " >&6; }
if test x${glibcxx_cv_func__isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57610,7 +57789,7 @@ $as_echo "$glibcxx_cv_func__isnanl_use" >&6; }
for ac_func in _isnanl
do :
ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl"
-if test "x$ac_cv_func__isnanl" = x""yes; then :
+if test "x$ac_cv_func__isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANL 1
_ACEOF
@@ -57628,7 +57807,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5
$as_echo_n "checking for isinfl declaration... " >&6; }
if test x${glibcxx_cv_func_isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func_isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57677,7 +57856,7 @@ $as_echo "$glibcxx_cv_func_isinfl_use" >&6; }
for ac_func in isinfl
do :
ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl"
-if test "x$ac_cv_func_isinfl" = x""yes; then :
+if test "x$ac_cv_func_isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFL 1
_ACEOF
@@ -57690,7 +57869,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5
$as_echo_n "checking for _isinfl declaration... " >&6; }
if test x${glibcxx_cv_func__isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func__isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57739,7 +57918,7 @@ $as_echo "$glibcxx_cv_func__isinfl_use" >&6; }
for ac_func in _isinfl
do :
ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl"
-if test "x$ac_cv_func__isinfl" = x""yes; then :
+if test "x$ac_cv_func__isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFL 1
_ACEOF
@@ -57757,7 +57936,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5
$as_echo_n "checking for atan2l declaration... " >&6; }
if test x${glibcxx_cv_func_atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57802,7 +57981,7 @@ $as_echo "$glibcxx_cv_func_atan2l_use" >&6; }
for ac_func in atan2l
do :
ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l"
-if test "x$ac_cv_func_atan2l" = x""yes; then :
+if test "x$ac_cv_func_atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
_ACEOF
@@ -57815,7 +57994,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5
$as_echo_n "checking for _atan2l declaration... " >&6; }
if test x${glibcxx_cv_func__atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57860,7 +58039,7 @@ $as_echo "$glibcxx_cv_func__atan2l_use" >&6; }
for ac_func in _atan2l
do :
ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l"
-if test "x$ac_cv_func__atan2l" = x""yes; then :
+if test "x$ac_cv_func__atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2L 1
_ACEOF
@@ -57878,7 +58057,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5
$as_echo_n "checking for expl declaration... " >&6; }
if test x${glibcxx_cv_func_expl_use+set} != xset; then
- if test "${glibcxx_cv_func_expl_use+set}" = set; then :
+ if ${glibcxx_cv_func_expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57927,7 +58106,7 @@ $as_echo "$glibcxx_cv_func_expl_use" >&6; }
for ac_func in expl
do :
ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl"
-if test "x$ac_cv_func_expl" = x""yes; then :
+if test "x$ac_cv_func_expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
_ACEOF
@@ -57940,7 +58119,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5
$as_echo_n "checking for _expl declaration... " >&6; }
if test x${glibcxx_cv_func__expl_use+set} != xset; then
- if test "${glibcxx_cv_func__expl_use+set}" = set; then :
+ if ${glibcxx_cv_func__expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -57989,7 +58168,7 @@ $as_echo "$glibcxx_cv_func__expl_use" >&6; }
for ac_func in _expl
do :
ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl"
-if test "x$ac_cv_func__expl" = x""yes; then :
+if test "x$ac_cv_func__expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPL 1
_ACEOF
@@ -58007,7 +58186,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5
$as_echo_n "checking for fabsl declaration... " >&6; }
if test x${glibcxx_cv_func_fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58056,7 +58235,7 @@ $as_echo "$glibcxx_cv_func_fabsl_use" >&6; }
for ac_func in fabsl
do :
ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl"
-if test "x$ac_cv_func_fabsl" = x""yes; then :
+if test "x$ac_cv_func_fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSL 1
_ACEOF
@@ -58069,7 +58248,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5
$as_echo_n "checking for _fabsl declaration... " >&6; }
if test x${glibcxx_cv_func__fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58118,7 +58297,7 @@ $as_echo "$glibcxx_cv_func__fabsl_use" >&6; }
for ac_func in _fabsl
do :
ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl"
-if test "x$ac_cv_func__fabsl" = x""yes; then :
+if test "x$ac_cv_func__fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSL 1
_ACEOF
@@ -58136,7 +58315,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5
$as_echo_n "checking for fmodl declaration... " >&6; }
if test x${glibcxx_cv_func_fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58181,7 +58360,7 @@ $as_echo "$glibcxx_cv_func_fmodl_use" >&6; }
for ac_func in fmodl
do :
ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl"
-if test "x$ac_cv_func_fmodl" = x""yes; then :
+if test "x$ac_cv_func_fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
_ACEOF
@@ -58194,7 +58373,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5
$as_echo_n "checking for _fmodl declaration... " >&6; }
if test x${glibcxx_cv_func__fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58239,7 +58418,7 @@ $as_echo "$glibcxx_cv_func__fmodl_use" >&6; }
for ac_func in _fmodl
do :
ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl"
-if test "x$ac_cv_func__fmodl" = x""yes; then :
+if test "x$ac_cv_func__fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODL 1
_ACEOF
@@ -58257,7 +58436,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5
$as_echo_n "checking for frexpl declaration... " >&6; }
if test x${glibcxx_cv_func_frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58302,7 +58481,7 @@ $as_echo "$glibcxx_cv_func_frexpl_use" >&6; }
for ac_func in frexpl
do :
ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl"
-if test "x$ac_cv_func_frexpl" = x""yes; then :
+if test "x$ac_cv_func_frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPL 1
_ACEOF
@@ -58315,7 +58494,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5
$as_echo_n "checking for _frexpl declaration... " >&6; }
if test x${glibcxx_cv_func__frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58360,7 +58539,7 @@ $as_echo "$glibcxx_cv_func__frexpl_use" >&6; }
for ac_func in _frexpl
do :
ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl"
-if test "x$ac_cv_func__frexpl" = x""yes; then :
+if test "x$ac_cv_func__frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPL 1
_ACEOF
@@ -58378,7 +58557,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5
$as_echo_n "checking for hypotl declaration... " >&6; }
if test x${glibcxx_cv_func_hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58423,7 +58602,7 @@ $as_echo "$glibcxx_cv_func_hypotl_use" >&6; }
for ac_func in hypotl
do :
ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl"
-if test "x$ac_cv_func_hypotl" = x""yes; then :
+if test "x$ac_cv_func_hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTL 1
_ACEOF
@@ -58436,7 +58615,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5
$as_echo_n "checking for _hypotl declaration... " >&6; }
if test x${glibcxx_cv_func__hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58481,7 +58660,7 @@ $as_echo "$glibcxx_cv_func__hypotl_use" >&6; }
for ac_func in _hypotl
do :
ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl"
-if test "x$ac_cv_func__hypotl" = x""yes; then :
+if test "x$ac_cv_func__hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTL 1
_ACEOF
@@ -58499,7 +58678,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5
$as_echo_n "checking for ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58544,7 +58723,7 @@ $as_echo "$glibcxx_cv_func_ldexpl_use" >&6; }
for ac_func in ldexpl
do :
ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl"
-if test "x$ac_cv_func_ldexpl" = x""yes; then :
+if test "x$ac_cv_func_ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPL 1
_ACEOF
@@ -58557,7 +58736,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5
$as_echo_n "checking for _ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58602,7 +58781,7 @@ $as_echo "$glibcxx_cv_func__ldexpl_use" >&6; }
for ac_func in _ldexpl
do :
ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl"
-if test "x$ac_cv_func__ldexpl" = x""yes; then :
+if test "x$ac_cv_func__ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPL 1
_ACEOF
@@ -58620,7 +58799,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5
$as_echo_n "checking for logl declaration... " >&6; }
if test x${glibcxx_cv_func_logl_use+set} != xset; then
- if test "${glibcxx_cv_func_logl_use+set}" = set; then :
+ if ${glibcxx_cv_func_logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58669,7 +58848,7 @@ $as_echo "$glibcxx_cv_func_logl_use" >&6; }
for ac_func in logl
do :
ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl"
-if test "x$ac_cv_func_logl" = x""yes; then :
+if test "x$ac_cv_func_logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
_ACEOF
@@ -58682,7 +58861,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5
$as_echo_n "checking for _logl declaration... " >&6; }
if test x${glibcxx_cv_func__logl_use+set} != xset; then
- if test "${glibcxx_cv_func__logl_use+set}" = set; then :
+ if ${glibcxx_cv_func__logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58731,7 +58910,7 @@ $as_echo "$glibcxx_cv_func__logl_use" >&6; }
for ac_func in _logl
do :
ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl"
-if test "x$ac_cv_func__logl" = x""yes; then :
+if test "x$ac_cv_func__logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGL 1
_ACEOF
@@ -58749,7 +58928,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5
$as_echo_n "checking for log10l declaration... " >&6; }
if test x${glibcxx_cv_func_log10l_use+set} != xset; then
- if test "${glibcxx_cv_func_log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58798,7 +58977,7 @@ $as_echo "$glibcxx_cv_func_log10l_use" >&6; }
for ac_func in log10l
do :
ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l"
-if test "x$ac_cv_func_log10l" = x""yes; then :
+if test "x$ac_cv_func_log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
_ACEOF
@@ -58811,7 +58990,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5
$as_echo_n "checking for _log10l declaration... " >&6; }
if test x${glibcxx_cv_func__log10l_use+set} != xset; then
- if test "${glibcxx_cv_func__log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58860,7 +59039,7 @@ $as_echo "$glibcxx_cv_func__log10l_use" >&6; }
for ac_func in _log10l
do :
ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l"
-if test "x$ac_cv_func__log10l" = x""yes; then :
+if test "x$ac_cv_func__log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10L 1
_ACEOF
@@ -58878,7 +59057,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5
$as_echo_n "checking for modfl declaration... " >&6; }
if test x${glibcxx_cv_func_modfl_use+set} != xset; then
- if test "${glibcxx_cv_func_modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58923,7 +59102,7 @@ $as_echo "$glibcxx_cv_func_modfl_use" >&6; }
for ac_func in modfl
do :
ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl"
-if test "x$ac_cv_func_modfl" = x""yes; then :
+if test "x$ac_cv_func_modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFL 1
_ACEOF
@@ -58936,7 +59115,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5
$as_echo_n "checking for _modfl declaration... " >&6; }
if test x${glibcxx_cv_func__modfl_use+set} != xset; then
- if test "${glibcxx_cv_func__modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -58981,7 +59160,7 @@ $as_echo "$glibcxx_cv_func__modfl_use" >&6; }
for ac_func in _modfl
do :
ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl"
-if test "x$ac_cv_func__modfl" = x""yes; then :
+if test "x$ac_cv_func__modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFL 1
_ACEOF
@@ -58999,7 +59178,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5
$as_echo_n "checking for powl declaration... " >&6; }
if test x${glibcxx_cv_func_powl_use+set} != xset; then
- if test "${glibcxx_cv_func_powl_use+set}" = set; then :
+ if ${glibcxx_cv_func_powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59044,7 +59223,7 @@ $as_echo "$glibcxx_cv_func_powl_use" >&6; }
for ac_func in powl
do :
ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl"
-if test "x$ac_cv_func_powl" = x""yes; then :
+if test "x$ac_cv_func_powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
_ACEOF
@@ -59057,7 +59236,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5
$as_echo_n "checking for _powl declaration... " >&6; }
if test x${glibcxx_cv_func__powl_use+set} != xset; then
- if test "${glibcxx_cv_func__powl_use+set}" = set; then :
+ if ${glibcxx_cv_func__powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59102,7 +59281,7 @@ $as_echo "$glibcxx_cv_func__powl_use" >&6; }
for ac_func in _powl
do :
ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl"
-if test "x$ac_cv_func__powl" = x""yes; then :
+if test "x$ac_cv_func__powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWL 1
_ACEOF
@@ -59120,7 +59299,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5
$as_echo_n "checking for sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59169,7 +59348,7 @@ $as_echo "$glibcxx_cv_func_sqrtl_use" >&6; }
for ac_func in sqrtl
do :
ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl"
-if test "x$ac_cv_func_sqrtl" = x""yes; then :
+if test "x$ac_cv_func_sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
_ACEOF
@@ -59182,7 +59361,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5
$as_echo_n "checking for _sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59231,7 +59410,7 @@ $as_echo "$glibcxx_cv_func__sqrtl_use" >&6; }
for ac_func in _sqrtl
do :
ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl"
-if test "x$ac_cv_func__sqrtl" = x""yes; then :
+if test "x$ac_cv_func__sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTL 1
_ACEOF
@@ -59249,7 +59428,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5
$as_echo_n "checking for sincosl declaration... " >&6; }
if test x${glibcxx_cv_func_sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59294,7 +59473,7 @@ $as_echo "$glibcxx_cv_func_sincosl_use" >&6; }
for ac_func in sincosl
do :
ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl"
-if test "x$ac_cv_func_sincosl" = x""yes; then :
+if test "x$ac_cv_func_sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSL 1
_ACEOF
@@ -59307,7 +59486,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5
$as_echo_n "checking for _sincosl declaration... " >&6; }
if test x${glibcxx_cv_func__sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59352,7 +59531,7 @@ $as_echo "$glibcxx_cv_func__sincosl_use" >&6; }
for ac_func in _sincosl
do :
ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl"
-if test "x$ac_cv_func__sincosl" = x""yes; then :
+if test "x$ac_cv_func__sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSL 1
_ACEOF
@@ -59370,7 +59549,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5
$as_echo_n "checking for finitel declaration... " >&6; }
if test x${glibcxx_cv_func_finitel_use+set} != xset; then
- if test "${glibcxx_cv_func_finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59419,7 +59598,7 @@ $as_echo "$glibcxx_cv_func_finitel_use" >&6; }
for ac_func in finitel
do :
ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel"
-if test "x$ac_cv_func_finitel" = x""yes; then :
+if test "x$ac_cv_func_finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEL 1
_ACEOF
@@ -59432,7 +59611,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5
$as_echo_n "checking for _finitel declaration... " >&6; }
if test x${glibcxx_cv_func__finitel_use+set} != xset; then
- if test "${glibcxx_cv_func__finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59481,7 +59660,7 @@ $as_echo "$glibcxx_cv_func__finitel_use" >&6; }
for ac_func in _finitel
do :
ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel"
-if test "x$ac_cv_func__finitel" = x""yes; then :
+if test "x$ac_cv_func__finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEL 1
_ACEOF
@@ -59507,7 +59686,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5
$as_echo_n "checking for at_quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_at_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59551,7 +59730,7 @@ $as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; }
for ac_func in at_quick_exit
do :
ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit"
-if test "x$ac_cv_func_at_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_at_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_AT_QUICK_EXIT 1
_ACEOF
@@ -59565,7 +59744,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5
$as_echo_n "checking for quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59609,7 +59788,7 @@ $as_echo "$glibcxx_cv_func_quick_exit_use" >&6; }
for ac_func in quick_exit
do :
ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit"
-if test "x$ac_cv_func_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QUICK_EXIT 1
_ACEOF
@@ -59623,7 +59802,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5
$as_echo_n "checking for strtold declaration... " >&6; }
if test x${glibcxx_cv_func_strtold_use+set} != xset; then
- if test "${glibcxx_cv_func_strtold_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtold_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59667,7 +59846,7 @@ $as_echo "$glibcxx_cv_func_strtold_use" >&6; }
for ac_func in strtold
do :
ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold"
-if test "x$ac_cv_func_strtold" = x""yes; then :
+if test "x$ac_cv_func_strtold" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
@@ -59683,7 +59862,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5
$as_echo_n "checking for strtof declaration... " >&6; }
if test x${glibcxx_cv_func_strtof_use+set} != xset; then
- if test "${glibcxx_cv_func_strtof_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtof_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59727,7 +59906,7 @@ $as_echo "$glibcxx_cv_func_strtof_use" >&6; }
for ac_func in strtof
do :
ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof"
-if test "x$ac_cv_func_strtof" = x""yes; then :
+if test "x$ac_cv_func_strtof" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOF 1
_ACEOF
@@ -59753,7 +59932,7 @@ if test "${enable_tls+set}" = set; then :
enableval=$enable_tls;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -59763,13 +59942,13 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports thread-local storage" >&5
$as_echo_n "checking whether the target supports thread-local storage... " >&6; }
-if test "${gcc_cv_have_tls+set}" = set; then :
+if ${gcc_cv_have_tls+:} false; then :
$as_echo_n "(cached) " >&6
else
if test "$cross_compiling" = yes; then :
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -59785,7 +59964,7 @@ if ac_fn_c_try_link "$LINENO"; then :
chktls_save_CFLAGS="$CFLAGS"
CFLAGS="-fPIC $CFLAGS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -59793,7 +59972,7 @@ int f() { return 0; }
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -59829,7 +60008,7 @@ if ac_fn_c_try_run "$LINENO"; then :
chktls_save_LDFLAGS="$LDFLAGS"
LDFLAGS="-static $LDFLAGS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -59839,8 +60018,8 @@ if ac_fn_c_try_link "$LINENO"; then :
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run test program while cross compiling
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot run test program while cross compiling
+See \`config.log' for more details" "$LINENO" 5; }
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -59867,7 +60046,7 @@ rm -f core conftest.err conftest.$ac_objext \
for flag in '' '-pthread' '-lpthread'; do
CFLAGS="$flag $chktls_save_CFLAGS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -59896,8 +60075,8 @@ rm -f core conftest.err conftest.$ac_objext \
if test "$cross_compiling" = yes; then :
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error "cannot run test program while cross compiling
-See \`config.log' for more details." "$LINENO" 5; }
+as_fn_error $? "cannot run test program while cross compiling
+See \`config.log' for more details" "$LINENO" 5; }
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -59957,7 +60136,7 @@ $as_echo "#define HAVE_TLS 1" >>confdefs.h
for ac_func in __cxa_thread_atexit_impl
do :
ac_fn_c_check_func "$LINENO" "__cxa_thread_atexit_impl" "ac_cv_func___cxa_thread_atexit_impl"
-if test "x$ac_cv_func___cxa_thread_atexit_impl" = x""yes; then :
+if test "x$ac_cv_func___cxa_thread_atexit_impl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE___CXA_THREAD_ATEXIT_IMPL 1
_ACEOF
@@ -59969,8 +60148,7 @@ done
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -59985,7 +60163,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5
$as_echo_n "checking for iconv... " >&6; }
-if test "${am_cv_func_iconv+set}" = set; then :
+if ${am_cv_func_iconv+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -59994,7 +60172,7 @@ else
am_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $INCICONV"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -60024,7 +60202,7 @@ rm -f core conftest.err conftest.$ac_objext \
CPPFLAGS="$CPPFLAGS -I../libiconv/include"
LIBS="$LIBS ../libiconv/lib/$_libs/libiconv.a"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -60063,7 +60241,7 @@ rm -f core conftest.err conftest.$ac_objext \
CPPFLAGS="$LIBS $INCICONV"
LIBS="$LIBS $LIBICONV"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -60135,7 +60313,7 @@ $as_echo "$LIBICONV" >&6; }
if test "$am_cv_func_iconv" = yes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5
$as_echo_n "checking for iconv declaration... " >&6; }
- if test "${am_cv_proto_iconv+set}" = set; then :
+ if ${am_cv_proto_iconv+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60254,7 +60432,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -60331,13 +60509,13 @@ $as_echo "$ac_ld_relro" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -60368,7 +60546,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
libm="-lm"
fi
@@ -60380,7 +60558,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5
$as_echo_n "checking for isinf declaration... " >&6; }
if test x${glibcxx_cv_func_isinf_use+set} != xset; then
- if test "${glibcxx_cv_func_isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60429,7 +60607,7 @@ $as_echo "$glibcxx_cv_func_isinf_use" >&6; }
for ac_func in isinf
do :
ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf"
-if test "x$ac_cv_func_isinf" = x""yes; then :
+if test "x$ac_cv_func_isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINF 1
_ACEOF
@@ -60442,7 +60620,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5
$as_echo_n "checking for _isinf declaration... " >&6; }
if test x${glibcxx_cv_func__isinf_use+set} != xset; then
- if test "${glibcxx_cv_func__isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60491,7 +60669,7 @@ $as_echo "$glibcxx_cv_func__isinf_use" >&6; }
for ac_func in _isinf
do :
ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf"
-if test "x$ac_cv_func__isinf" = x""yes; then :
+if test "x$ac_cv_func__isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINF 1
_ACEOF
@@ -60509,7 +60687,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5
$as_echo_n "checking for isnan declaration... " >&6; }
if test x${glibcxx_cv_func_isnan_use+set} != xset; then
- if test "${glibcxx_cv_func_isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60558,7 +60736,7 @@ $as_echo "$glibcxx_cv_func_isnan_use" >&6; }
for ac_func in isnan
do :
ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan"
-if test "x$ac_cv_func_isnan" = x""yes; then :
+if test "x$ac_cv_func_isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNAN 1
_ACEOF
@@ -60571,7 +60749,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5
$as_echo_n "checking for _isnan declaration... " >&6; }
if test x${glibcxx_cv_func__isnan_use+set} != xset; then
- if test "${glibcxx_cv_func__isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60620,7 +60798,7 @@ $as_echo "$glibcxx_cv_func__isnan_use" >&6; }
for ac_func in _isnan
do :
ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan"
-if test "x$ac_cv_func__isnan" = x""yes; then :
+if test "x$ac_cv_func__isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNAN 1
_ACEOF
@@ -60638,7 +60816,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5
$as_echo_n "checking for finite declaration... " >&6; }
if test x${glibcxx_cv_func_finite_use+set} != xset; then
- if test "${glibcxx_cv_func_finite_use+set}" = set; then :
+ if ${glibcxx_cv_func_finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60687,7 +60865,7 @@ $as_echo "$glibcxx_cv_func_finite_use" >&6; }
for ac_func in finite
do :
ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite"
-if test "x$ac_cv_func_finite" = x""yes; then :
+if test "x$ac_cv_func_finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITE 1
_ACEOF
@@ -60700,7 +60878,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5
$as_echo_n "checking for _finite declaration... " >&6; }
if test x${glibcxx_cv_func__finite_use+set} != xset; then
- if test "${glibcxx_cv_func__finite_use+set}" = set; then :
+ if ${glibcxx_cv_func__finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60749,7 +60927,7 @@ $as_echo "$glibcxx_cv_func__finite_use" >&6; }
for ac_func in _finite
do :
ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite"
-if test "x$ac_cv_func__finite" = x""yes; then :
+if test "x$ac_cv_func__finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITE 1
_ACEOF
@@ -60767,7 +60945,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5
$as_echo_n "checking for sincos declaration... " >&6; }
if test x${glibcxx_cv_func_sincos_use+set} != xset; then
- if test "${glibcxx_cv_func_sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60812,7 +60990,7 @@ $as_echo "$glibcxx_cv_func_sincos_use" >&6; }
for ac_func in sincos
do :
ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos"
-if test "x$ac_cv_func_sincos" = x""yes; then :
+if test "x$ac_cv_func_sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOS 1
_ACEOF
@@ -60825,7 +61003,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5
$as_echo_n "checking for _sincos declaration... " >&6; }
if test x${glibcxx_cv_func__sincos_use+set} != xset; then
- if test "${glibcxx_cv_func__sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60870,7 +61048,7 @@ $as_echo "$glibcxx_cv_func__sincos_use" >&6; }
for ac_func in _sincos
do :
ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos"
-if test "x$ac_cv_func__sincos" = x""yes; then :
+if test "x$ac_cv_func__sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOS 1
_ACEOF
@@ -60888,7 +61066,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5
$as_echo_n "checking for fpclass declaration... " >&6; }
if test x${glibcxx_cv_func_fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60937,7 +61115,7 @@ $as_echo "$glibcxx_cv_func_fpclass_use" >&6; }
for ac_func in fpclass
do :
ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass"
-if test "x$ac_cv_func_fpclass" = x""yes; then :
+if test "x$ac_cv_func_fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FPCLASS 1
_ACEOF
@@ -60950,7 +61128,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5
$as_echo_n "checking for _fpclass declaration... " >&6; }
if test x${glibcxx_cv_func__fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -60999,7 +61177,7 @@ $as_echo "$glibcxx_cv_func__fpclass_use" >&6; }
for ac_func in _fpclass
do :
ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass"
-if test "x$ac_cv_func__fpclass" = x""yes; then :
+if test "x$ac_cv_func__fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FPCLASS 1
_ACEOF
@@ -61017,7 +61195,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5
$as_echo_n "checking for qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61066,7 +61244,7 @@ $as_echo "$glibcxx_cv_func_qfpclass_use" >&6; }
for ac_func in qfpclass
do :
ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass"
-if test "x$ac_cv_func_qfpclass" = x""yes; then :
+if test "x$ac_cv_func_qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QFPCLASS 1
_ACEOF
@@ -61079,7 +61257,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5
$as_echo_n "checking for _qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61128,7 +61306,7 @@ $as_echo "$glibcxx_cv_func__qfpclass_use" >&6; }
for ac_func in _qfpclass
do :
ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass"
-if test "x$ac_cv_func__qfpclass" = x""yes; then :
+if test "x$ac_cv_func__qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__QFPCLASS 1
_ACEOF
@@ -61146,7 +61324,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5
$as_echo_n "checking for hypot declaration... " >&6; }
if test x${glibcxx_cv_func_hypot_use+set} != xset; then
- if test "${glibcxx_cv_func_hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61191,7 +61369,7 @@ $as_echo "$glibcxx_cv_func_hypot_use" >&6; }
for ac_func in hypot
do :
ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot"
-if test "x$ac_cv_func_hypot" = x""yes; then :
+if test "x$ac_cv_func_hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOT 1
_ACEOF
@@ -61204,7 +61382,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5
$as_echo_n "checking for _hypot declaration... " >&6; }
if test x${glibcxx_cv_func__hypot_use+set} != xset; then
- if test "${glibcxx_cv_func__hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61249,7 +61427,7 @@ $as_echo "$glibcxx_cv_func__hypot_use" >&6; }
for ac_func in _hypot
do :
ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot"
-if test "x$ac_cv_func__hypot" = x""yes; then :
+if test "x$ac_cv_func__hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOT 1
_ACEOF
@@ -61266,7 +61444,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5
$as_echo_n "checking for float trig functions... " >&6; }
- if test "${glibcxx_cv_func_float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61309,8 +61487,7 @@ $as_echo "$glibcxx_cv_func_float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -61321,7 +61498,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5
$as_echo_n "checking for _float trig functions... " >&6; }
- if test "${glibcxx_cv_func__float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61364,8 +61541,7 @@ $as_echo "$glibcxx_cv_func__float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -61382,7 +61558,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5
$as_echo_n "checking for float round functions... " >&6; }
- if test "${glibcxx_cv_func_float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61425,8 +61601,7 @@ $as_echo "$glibcxx_cv_func_float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -61437,7 +61612,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5
$as_echo_n "checking for _float round functions... " >&6; }
- if test "${glibcxx_cv_func__float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61480,8 +61655,7 @@ $as_echo "$glibcxx_cv_func__float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -61500,7 +61674,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5
$as_echo_n "checking for expf declaration... " >&6; }
if test x${glibcxx_cv_func_expf_use+set} != xset; then
- if test "${glibcxx_cv_func_expf_use+set}" = set; then :
+ if ${glibcxx_cv_func_expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61549,7 +61723,7 @@ $as_echo "$glibcxx_cv_func_expf_use" >&6; }
for ac_func in expf
do :
ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf"
-if test "x$ac_cv_func_expf" = x""yes; then :
+if test "x$ac_cv_func_expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPF 1
_ACEOF
@@ -61562,7 +61736,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5
$as_echo_n "checking for _expf declaration... " >&6; }
if test x${glibcxx_cv_func__expf_use+set} != xset; then
- if test "${glibcxx_cv_func__expf_use+set}" = set; then :
+ if ${glibcxx_cv_func__expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61611,7 +61785,7 @@ $as_echo "$glibcxx_cv_func__expf_use" >&6; }
for ac_func in _expf
do :
ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf"
-if test "x$ac_cv_func__expf" = x""yes; then :
+if test "x$ac_cv_func__expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPF 1
_ACEOF
@@ -61629,7 +61803,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5
$as_echo_n "checking for isnanf declaration... " >&6; }
if test x${glibcxx_cv_func_isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61678,7 +61852,7 @@ $as_echo "$glibcxx_cv_func_isnanf_use" >&6; }
for ac_func in isnanf
do :
ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf"
-if test "x$ac_cv_func_isnanf" = x""yes; then :
+if test "x$ac_cv_func_isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANF 1
_ACEOF
@@ -61691,7 +61865,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5
$as_echo_n "checking for _isnanf declaration... " >&6; }
if test x${glibcxx_cv_func__isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61740,7 +61914,7 @@ $as_echo "$glibcxx_cv_func__isnanf_use" >&6; }
for ac_func in _isnanf
do :
ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf"
-if test "x$ac_cv_func__isnanf" = x""yes; then :
+if test "x$ac_cv_func__isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANF 1
_ACEOF
@@ -61758,7 +61932,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5
$as_echo_n "checking for isinff declaration... " >&6; }
if test x${glibcxx_cv_func_isinff_use+set} != xset; then
- if test "${glibcxx_cv_func_isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61807,7 +61981,7 @@ $as_echo "$glibcxx_cv_func_isinff_use" >&6; }
for ac_func in isinff
do :
ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff"
-if test "x$ac_cv_func_isinff" = x""yes; then :
+if test "x$ac_cv_func_isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFF 1
_ACEOF
@@ -61820,7 +61994,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5
$as_echo_n "checking for _isinff declaration... " >&6; }
if test x${glibcxx_cv_func__isinff_use+set} != xset; then
- if test "${glibcxx_cv_func__isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61869,7 +62043,7 @@ $as_echo "$glibcxx_cv_func__isinff_use" >&6; }
for ac_func in _isinff
do :
ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff"
-if test "x$ac_cv_func__isinff" = x""yes; then :
+if test "x$ac_cv_func__isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFF 1
_ACEOF
@@ -61887,7 +62061,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5
$as_echo_n "checking for atan2f declaration... " >&6; }
if test x${glibcxx_cv_func_atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61932,7 +62106,7 @@ $as_echo "$glibcxx_cv_func_atan2f_use" >&6; }
for ac_func in atan2f
do :
ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f"
-if test "x$ac_cv_func_atan2f" = x""yes; then :
+if test "x$ac_cv_func_atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2F 1
_ACEOF
@@ -61945,7 +62119,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5
$as_echo_n "checking for _atan2f declaration... " >&6; }
if test x${glibcxx_cv_func__atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -61990,7 +62164,7 @@ $as_echo "$glibcxx_cv_func__atan2f_use" >&6; }
for ac_func in _atan2f
do :
ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f"
-if test "x$ac_cv_func__atan2f" = x""yes; then :
+if test "x$ac_cv_func__atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2F 1
_ACEOF
@@ -62008,7 +62182,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5
$as_echo_n "checking for fabsf declaration... " >&6; }
if test x${glibcxx_cv_func_fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62057,7 +62231,7 @@ $as_echo "$glibcxx_cv_func_fabsf_use" >&6; }
for ac_func in fabsf
do :
ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf"
-if test "x$ac_cv_func_fabsf" = x""yes; then :
+if test "x$ac_cv_func_fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSF 1
_ACEOF
@@ -62070,7 +62244,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5
$as_echo_n "checking for _fabsf declaration... " >&6; }
if test x${glibcxx_cv_func__fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62119,7 +62293,7 @@ $as_echo "$glibcxx_cv_func__fabsf_use" >&6; }
for ac_func in _fabsf
do :
ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf"
-if test "x$ac_cv_func__fabsf" = x""yes; then :
+if test "x$ac_cv_func__fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSF 1
_ACEOF
@@ -62137,7 +62311,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5
$as_echo_n "checking for fmodf declaration... " >&6; }
if test x${glibcxx_cv_func_fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62182,7 +62356,7 @@ $as_echo "$glibcxx_cv_func_fmodf_use" >&6; }
for ac_func in fmodf
do :
ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf"
-if test "x$ac_cv_func_fmodf" = x""yes; then :
+if test "x$ac_cv_func_fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODF 1
_ACEOF
@@ -62195,7 +62369,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5
$as_echo_n "checking for _fmodf declaration... " >&6; }
if test x${glibcxx_cv_func__fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62240,7 +62414,7 @@ $as_echo "$glibcxx_cv_func__fmodf_use" >&6; }
for ac_func in _fmodf
do :
ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf"
-if test "x$ac_cv_func__fmodf" = x""yes; then :
+if test "x$ac_cv_func__fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODF 1
_ACEOF
@@ -62258,7 +62432,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5
$as_echo_n "checking for frexpf declaration... " >&6; }
if test x${glibcxx_cv_func_frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62303,7 +62477,7 @@ $as_echo "$glibcxx_cv_func_frexpf_use" >&6; }
for ac_func in frexpf
do :
ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf"
-if test "x$ac_cv_func_frexpf" = x""yes; then :
+if test "x$ac_cv_func_frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPF 1
_ACEOF
@@ -62316,7 +62490,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5
$as_echo_n "checking for _frexpf declaration... " >&6; }
if test x${glibcxx_cv_func__frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62361,7 +62535,7 @@ $as_echo "$glibcxx_cv_func__frexpf_use" >&6; }
for ac_func in _frexpf
do :
ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf"
-if test "x$ac_cv_func__frexpf" = x""yes; then :
+if test "x$ac_cv_func__frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPF 1
_ACEOF
@@ -62379,7 +62553,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5
$as_echo_n "checking for hypotf declaration... " >&6; }
if test x${glibcxx_cv_func_hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62424,7 +62598,7 @@ $as_echo "$glibcxx_cv_func_hypotf_use" >&6; }
for ac_func in hypotf
do :
ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf"
-if test "x$ac_cv_func_hypotf" = x""yes; then :
+if test "x$ac_cv_func_hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTF 1
_ACEOF
@@ -62437,7 +62611,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5
$as_echo_n "checking for _hypotf declaration... " >&6; }
if test x${glibcxx_cv_func__hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62482,7 +62656,7 @@ $as_echo "$glibcxx_cv_func__hypotf_use" >&6; }
for ac_func in _hypotf
do :
ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf"
-if test "x$ac_cv_func__hypotf" = x""yes; then :
+if test "x$ac_cv_func__hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTF 1
_ACEOF
@@ -62500,7 +62674,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5
$as_echo_n "checking for ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62545,7 +62719,7 @@ $as_echo "$glibcxx_cv_func_ldexpf_use" >&6; }
for ac_func in ldexpf
do :
ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf"
-if test "x$ac_cv_func_ldexpf" = x""yes; then :
+if test "x$ac_cv_func_ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPF 1
_ACEOF
@@ -62558,7 +62732,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5
$as_echo_n "checking for _ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62603,7 +62777,7 @@ $as_echo "$glibcxx_cv_func__ldexpf_use" >&6; }
for ac_func in _ldexpf
do :
ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf"
-if test "x$ac_cv_func__ldexpf" = x""yes; then :
+if test "x$ac_cv_func__ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPF 1
_ACEOF
@@ -62621,7 +62795,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5
$as_echo_n "checking for logf declaration... " >&6; }
if test x${glibcxx_cv_func_logf_use+set} != xset; then
- if test "${glibcxx_cv_func_logf_use+set}" = set; then :
+ if ${glibcxx_cv_func_logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62670,7 +62844,7 @@ $as_echo "$glibcxx_cv_func_logf_use" >&6; }
for ac_func in logf
do :
ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf"
-if test "x$ac_cv_func_logf" = x""yes; then :
+if test "x$ac_cv_func_logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGF 1
_ACEOF
@@ -62683,7 +62857,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5
$as_echo_n "checking for _logf declaration... " >&6; }
if test x${glibcxx_cv_func__logf_use+set} != xset; then
- if test "${glibcxx_cv_func__logf_use+set}" = set; then :
+ if ${glibcxx_cv_func__logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62732,7 +62906,7 @@ $as_echo "$glibcxx_cv_func__logf_use" >&6; }
for ac_func in _logf
do :
ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf"
-if test "x$ac_cv_func__logf" = x""yes; then :
+if test "x$ac_cv_func__logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGF 1
_ACEOF
@@ -62750,7 +62924,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5
$as_echo_n "checking for log10f declaration... " >&6; }
if test x${glibcxx_cv_func_log10f_use+set} != xset; then
- if test "${glibcxx_cv_func_log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62799,7 +62973,7 @@ $as_echo "$glibcxx_cv_func_log10f_use" >&6; }
for ac_func in log10f
do :
ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f"
-if test "x$ac_cv_func_log10f" = x""yes; then :
+if test "x$ac_cv_func_log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10F 1
_ACEOF
@@ -62812,7 +62986,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5
$as_echo_n "checking for _log10f declaration... " >&6; }
if test x${glibcxx_cv_func__log10f_use+set} != xset; then
- if test "${glibcxx_cv_func__log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62861,7 +63035,7 @@ $as_echo "$glibcxx_cv_func__log10f_use" >&6; }
for ac_func in _log10f
do :
ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f"
-if test "x$ac_cv_func__log10f" = x""yes; then :
+if test "x$ac_cv_func__log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10F 1
_ACEOF
@@ -62879,7 +63053,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5
$as_echo_n "checking for modff declaration... " >&6; }
if test x${glibcxx_cv_func_modff_use+set} != xset; then
- if test "${glibcxx_cv_func_modff_use+set}" = set; then :
+ if ${glibcxx_cv_func_modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62924,7 +63098,7 @@ $as_echo "$glibcxx_cv_func_modff_use" >&6; }
for ac_func in modff
do :
ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff"
-if test "x$ac_cv_func_modff" = x""yes; then :
+if test "x$ac_cv_func_modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFF 1
_ACEOF
@@ -62937,7 +63111,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5
$as_echo_n "checking for _modff declaration... " >&6; }
if test x${glibcxx_cv_func__modff_use+set} != xset; then
- if test "${glibcxx_cv_func__modff_use+set}" = set; then :
+ if ${glibcxx_cv_func__modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -62982,7 +63156,7 @@ $as_echo "$glibcxx_cv_func__modff_use" >&6; }
for ac_func in _modff
do :
ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff"
-if test "x$ac_cv_func__modff" = x""yes; then :
+if test "x$ac_cv_func__modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFF 1
_ACEOF
@@ -63000,7 +63174,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5
$as_echo_n "checking for modf declaration... " >&6; }
if test x${glibcxx_cv_func_modf_use+set} != xset; then
- if test "${glibcxx_cv_func_modf_use+set}" = set; then :
+ if ${glibcxx_cv_func_modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63045,7 +63219,7 @@ $as_echo "$glibcxx_cv_func_modf_use" >&6; }
for ac_func in modf
do :
ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf"
-if test "x$ac_cv_func_modf" = x""yes; then :
+if test "x$ac_cv_func_modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODF 1
_ACEOF
@@ -63058,7 +63232,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5
$as_echo_n "checking for _modf declaration... " >&6; }
if test x${glibcxx_cv_func__modf_use+set} != xset; then
- if test "${glibcxx_cv_func__modf_use+set}" = set; then :
+ if ${glibcxx_cv_func__modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63103,7 +63277,7 @@ $as_echo "$glibcxx_cv_func__modf_use" >&6; }
for ac_func in _modf
do :
ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf"
-if test "x$ac_cv_func__modf" = x""yes; then :
+if test "x$ac_cv_func__modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODF 1
_ACEOF
@@ -63121,7 +63295,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5
$as_echo_n "checking for powf declaration... " >&6; }
if test x${glibcxx_cv_func_powf_use+set} != xset; then
- if test "${glibcxx_cv_func_powf_use+set}" = set; then :
+ if ${glibcxx_cv_func_powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63166,7 +63340,7 @@ $as_echo "$glibcxx_cv_func_powf_use" >&6; }
for ac_func in powf
do :
ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf"
-if test "x$ac_cv_func_powf" = x""yes; then :
+if test "x$ac_cv_func_powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWF 1
_ACEOF
@@ -63179,7 +63353,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5
$as_echo_n "checking for _powf declaration... " >&6; }
if test x${glibcxx_cv_func__powf_use+set} != xset; then
- if test "${glibcxx_cv_func__powf_use+set}" = set; then :
+ if ${glibcxx_cv_func__powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63224,7 +63398,7 @@ $as_echo "$glibcxx_cv_func__powf_use" >&6; }
for ac_func in _powf
do :
ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf"
-if test "x$ac_cv_func__powf" = x""yes; then :
+if test "x$ac_cv_func__powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWF 1
_ACEOF
@@ -63242,7 +63416,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5
$as_echo_n "checking for sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63291,7 +63465,7 @@ $as_echo "$glibcxx_cv_func_sqrtf_use" >&6; }
for ac_func in sqrtf
do :
ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf"
-if test "x$ac_cv_func_sqrtf" = x""yes; then :
+if test "x$ac_cv_func_sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTF 1
_ACEOF
@@ -63304,7 +63478,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5
$as_echo_n "checking for _sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63353,7 +63527,7 @@ $as_echo "$glibcxx_cv_func__sqrtf_use" >&6; }
for ac_func in _sqrtf
do :
ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf"
-if test "x$ac_cv_func__sqrtf" = x""yes; then :
+if test "x$ac_cv_func__sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTF 1
_ACEOF
@@ -63371,7 +63545,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5
$as_echo_n "checking for sincosf declaration... " >&6; }
if test x${glibcxx_cv_func_sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63416,7 +63590,7 @@ $as_echo "$glibcxx_cv_func_sincosf_use" >&6; }
for ac_func in sincosf
do :
ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf"
-if test "x$ac_cv_func_sincosf" = x""yes; then :
+if test "x$ac_cv_func_sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSF 1
_ACEOF
@@ -63429,7 +63603,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5
$as_echo_n "checking for _sincosf declaration... " >&6; }
if test x${glibcxx_cv_func__sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63474,7 +63648,7 @@ $as_echo "$glibcxx_cv_func__sincosf_use" >&6; }
for ac_func in _sincosf
do :
ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf"
-if test "x$ac_cv_func__sincosf" = x""yes; then :
+if test "x$ac_cv_func__sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSF 1
_ACEOF
@@ -63492,7 +63666,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5
$as_echo_n "checking for finitef declaration... " >&6; }
if test x${glibcxx_cv_func_finitef_use+set} != xset; then
- if test "${glibcxx_cv_func_finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63541,7 +63715,7 @@ $as_echo "$glibcxx_cv_func_finitef_use" >&6; }
for ac_func in finitef
do :
ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef"
-if test "x$ac_cv_func_finitef" = x""yes; then :
+if test "x$ac_cv_func_finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEF 1
_ACEOF
@@ -63554,7 +63728,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5
$as_echo_n "checking for _finitef declaration... " >&6; }
if test x${glibcxx_cv_func__finitef_use+set} != xset; then
- if test "${glibcxx_cv_func__finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63603,7 +63777,7 @@ $as_echo "$glibcxx_cv_func__finitef_use" >&6; }
for ac_func in _finitef
do :
ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef"
-if test "x$ac_cv_func__finitef" = x""yes; then :
+if test "x$ac_cv_func__finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEF 1
_ACEOF
@@ -63620,7 +63794,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5
$as_echo_n "checking for long double trig functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63663,8 +63837,7 @@ $as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -63675,7 +63848,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5
$as_echo_n "checking for _long double trig functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63718,8 +63891,7 @@ $as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -63736,7 +63908,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5
$as_echo_n "checking for long double round functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63779,8 +63951,7 @@ $as_echo "$glibcxx_cv_func_long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -63791,7 +63962,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5
$as_echo_n "checking for _long double round functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63834,8 +64005,7 @@ $as_echo "$glibcxx_cv_func__long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -63854,7 +64024,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5
$as_echo_n "checking for isnanl declaration... " >&6; }
if test x${glibcxx_cv_func_isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63903,7 +64073,7 @@ $as_echo "$glibcxx_cv_func_isnanl_use" >&6; }
for ac_func in isnanl
do :
ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl"
-if test "x$ac_cv_func_isnanl" = x""yes; then :
+if test "x$ac_cv_func_isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANL 1
_ACEOF
@@ -63916,7 +64086,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5
$as_echo_n "checking for _isnanl declaration... " >&6; }
if test x${glibcxx_cv_func__isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -63965,7 +64135,7 @@ $as_echo "$glibcxx_cv_func__isnanl_use" >&6; }
for ac_func in _isnanl
do :
ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl"
-if test "x$ac_cv_func__isnanl" = x""yes; then :
+if test "x$ac_cv_func__isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANL 1
_ACEOF
@@ -63983,7 +64153,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5
$as_echo_n "checking for isinfl declaration... " >&6; }
if test x${glibcxx_cv_func_isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func_isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64032,7 +64202,7 @@ $as_echo "$glibcxx_cv_func_isinfl_use" >&6; }
for ac_func in isinfl
do :
ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl"
-if test "x$ac_cv_func_isinfl" = x""yes; then :
+if test "x$ac_cv_func_isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFL 1
_ACEOF
@@ -64045,7 +64215,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5
$as_echo_n "checking for _isinfl declaration... " >&6; }
if test x${glibcxx_cv_func__isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func__isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64094,7 +64264,7 @@ $as_echo "$glibcxx_cv_func__isinfl_use" >&6; }
for ac_func in _isinfl
do :
ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl"
-if test "x$ac_cv_func__isinfl" = x""yes; then :
+if test "x$ac_cv_func__isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFL 1
_ACEOF
@@ -64112,7 +64282,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5
$as_echo_n "checking for atan2l declaration... " >&6; }
if test x${glibcxx_cv_func_atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64157,7 +64327,7 @@ $as_echo "$glibcxx_cv_func_atan2l_use" >&6; }
for ac_func in atan2l
do :
ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l"
-if test "x$ac_cv_func_atan2l" = x""yes; then :
+if test "x$ac_cv_func_atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
_ACEOF
@@ -64170,7 +64340,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5
$as_echo_n "checking for _atan2l declaration... " >&6; }
if test x${glibcxx_cv_func__atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64215,7 +64385,7 @@ $as_echo "$glibcxx_cv_func__atan2l_use" >&6; }
for ac_func in _atan2l
do :
ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l"
-if test "x$ac_cv_func__atan2l" = x""yes; then :
+if test "x$ac_cv_func__atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2L 1
_ACEOF
@@ -64233,7 +64403,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5
$as_echo_n "checking for expl declaration... " >&6; }
if test x${glibcxx_cv_func_expl_use+set} != xset; then
- if test "${glibcxx_cv_func_expl_use+set}" = set; then :
+ if ${glibcxx_cv_func_expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64282,7 +64452,7 @@ $as_echo "$glibcxx_cv_func_expl_use" >&6; }
for ac_func in expl
do :
ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl"
-if test "x$ac_cv_func_expl" = x""yes; then :
+if test "x$ac_cv_func_expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
_ACEOF
@@ -64295,7 +64465,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5
$as_echo_n "checking for _expl declaration... " >&6; }
if test x${glibcxx_cv_func__expl_use+set} != xset; then
- if test "${glibcxx_cv_func__expl_use+set}" = set; then :
+ if ${glibcxx_cv_func__expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64344,7 +64514,7 @@ $as_echo "$glibcxx_cv_func__expl_use" >&6; }
for ac_func in _expl
do :
ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl"
-if test "x$ac_cv_func__expl" = x""yes; then :
+if test "x$ac_cv_func__expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPL 1
_ACEOF
@@ -64362,7 +64532,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5
$as_echo_n "checking for fabsl declaration... " >&6; }
if test x${glibcxx_cv_func_fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64411,7 +64581,7 @@ $as_echo "$glibcxx_cv_func_fabsl_use" >&6; }
for ac_func in fabsl
do :
ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl"
-if test "x$ac_cv_func_fabsl" = x""yes; then :
+if test "x$ac_cv_func_fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSL 1
_ACEOF
@@ -64424,7 +64594,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5
$as_echo_n "checking for _fabsl declaration... " >&6; }
if test x${glibcxx_cv_func__fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64473,7 +64643,7 @@ $as_echo "$glibcxx_cv_func__fabsl_use" >&6; }
for ac_func in _fabsl
do :
ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl"
-if test "x$ac_cv_func__fabsl" = x""yes; then :
+if test "x$ac_cv_func__fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSL 1
_ACEOF
@@ -64491,7 +64661,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5
$as_echo_n "checking for fmodl declaration... " >&6; }
if test x${glibcxx_cv_func_fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64536,7 +64706,7 @@ $as_echo "$glibcxx_cv_func_fmodl_use" >&6; }
for ac_func in fmodl
do :
ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl"
-if test "x$ac_cv_func_fmodl" = x""yes; then :
+if test "x$ac_cv_func_fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
_ACEOF
@@ -64549,7 +64719,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5
$as_echo_n "checking for _fmodl declaration... " >&6; }
if test x${glibcxx_cv_func__fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64594,7 +64764,7 @@ $as_echo "$glibcxx_cv_func__fmodl_use" >&6; }
for ac_func in _fmodl
do :
ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl"
-if test "x$ac_cv_func__fmodl" = x""yes; then :
+if test "x$ac_cv_func__fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODL 1
_ACEOF
@@ -64612,7 +64782,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5
$as_echo_n "checking for frexpl declaration... " >&6; }
if test x${glibcxx_cv_func_frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64657,7 +64827,7 @@ $as_echo "$glibcxx_cv_func_frexpl_use" >&6; }
for ac_func in frexpl
do :
ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl"
-if test "x$ac_cv_func_frexpl" = x""yes; then :
+if test "x$ac_cv_func_frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPL 1
_ACEOF
@@ -64670,7 +64840,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5
$as_echo_n "checking for _frexpl declaration... " >&6; }
if test x${glibcxx_cv_func__frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64715,7 +64885,7 @@ $as_echo "$glibcxx_cv_func__frexpl_use" >&6; }
for ac_func in _frexpl
do :
ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl"
-if test "x$ac_cv_func__frexpl" = x""yes; then :
+if test "x$ac_cv_func__frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPL 1
_ACEOF
@@ -64733,7 +64903,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5
$as_echo_n "checking for hypotl declaration... " >&6; }
if test x${glibcxx_cv_func_hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64778,7 +64948,7 @@ $as_echo "$glibcxx_cv_func_hypotl_use" >&6; }
for ac_func in hypotl
do :
ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl"
-if test "x$ac_cv_func_hypotl" = x""yes; then :
+if test "x$ac_cv_func_hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTL 1
_ACEOF
@@ -64791,7 +64961,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5
$as_echo_n "checking for _hypotl declaration... " >&6; }
if test x${glibcxx_cv_func__hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64836,7 +65006,7 @@ $as_echo "$glibcxx_cv_func__hypotl_use" >&6; }
for ac_func in _hypotl
do :
ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl"
-if test "x$ac_cv_func__hypotl" = x""yes; then :
+if test "x$ac_cv_func__hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTL 1
_ACEOF
@@ -64854,7 +65024,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5
$as_echo_n "checking for ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64899,7 +65069,7 @@ $as_echo "$glibcxx_cv_func_ldexpl_use" >&6; }
for ac_func in ldexpl
do :
ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl"
-if test "x$ac_cv_func_ldexpl" = x""yes; then :
+if test "x$ac_cv_func_ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPL 1
_ACEOF
@@ -64912,7 +65082,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5
$as_echo_n "checking for _ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -64957,7 +65127,7 @@ $as_echo "$glibcxx_cv_func__ldexpl_use" >&6; }
for ac_func in _ldexpl
do :
ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl"
-if test "x$ac_cv_func__ldexpl" = x""yes; then :
+if test "x$ac_cv_func__ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPL 1
_ACEOF
@@ -64975,7 +65145,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5
$as_echo_n "checking for logl declaration... " >&6; }
if test x${glibcxx_cv_func_logl_use+set} != xset; then
- if test "${glibcxx_cv_func_logl_use+set}" = set; then :
+ if ${glibcxx_cv_func_logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65024,7 +65194,7 @@ $as_echo "$glibcxx_cv_func_logl_use" >&6; }
for ac_func in logl
do :
ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl"
-if test "x$ac_cv_func_logl" = x""yes; then :
+if test "x$ac_cv_func_logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
_ACEOF
@@ -65037,7 +65207,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5
$as_echo_n "checking for _logl declaration... " >&6; }
if test x${glibcxx_cv_func__logl_use+set} != xset; then
- if test "${glibcxx_cv_func__logl_use+set}" = set; then :
+ if ${glibcxx_cv_func__logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65086,7 +65256,7 @@ $as_echo "$glibcxx_cv_func__logl_use" >&6; }
for ac_func in _logl
do :
ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl"
-if test "x$ac_cv_func__logl" = x""yes; then :
+if test "x$ac_cv_func__logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGL 1
_ACEOF
@@ -65104,7 +65274,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5
$as_echo_n "checking for log10l declaration... " >&6; }
if test x${glibcxx_cv_func_log10l_use+set} != xset; then
- if test "${glibcxx_cv_func_log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65153,7 +65323,7 @@ $as_echo "$glibcxx_cv_func_log10l_use" >&6; }
for ac_func in log10l
do :
ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l"
-if test "x$ac_cv_func_log10l" = x""yes; then :
+if test "x$ac_cv_func_log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
_ACEOF
@@ -65166,7 +65336,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5
$as_echo_n "checking for _log10l declaration... " >&6; }
if test x${glibcxx_cv_func__log10l_use+set} != xset; then
- if test "${glibcxx_cv_func__log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65215,7 +65385,7 @@ $as_echo "$glibcxx_cv_func__log10l_use" >&6; }
for ac_func in _log10l
do :
ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l"
-if test "x$ac_cv_func__log10l" = x""yes; then :
+if test "x$ac_cv_func__log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10L 1
_ACEOF
@@ -65233,7 +65403,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5
$as_echo_n "checking for modfl declaration... " >&6; }
if test x${glibcxx_cv_func_modfl_use+set} != xset; then
- if test "${glibcxx_cv_func_modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65278,7 +65448,7 @@ $as_echo "$glibcxx_cv_func_modfl_use" >&6; }
for ac_func in modfl
do :
ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl"
-if test "x$ac_cv_func_modfl" = x""yes; then :
+if test "x$ac_cv_func_modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFL 1
_ACEOF
@@ -65291,7 +65461,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5
$as_echo_n "checking for _modfl declaration... " >&6; }
if test x${glibcxx_cv_func__modfl_use+set} != xset; then
- if test "${glibcxx_cv_func__modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65336,7 +65506,7 @@ $as_echo "$glibcxx_cv_func__modfl_use" >&6; }
for ac_func in _modfl
do :
ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl"
-if test "x$ac_cv_func__modfl" = x""yes; then :
+if test "x$ac_cv_func__modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFL 1
_ACEOF
@@ -65354,7 +65524,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5
$as_echo_n "checking for powl declaration... " >&6; }
if test x${glibcxx_cv_func_powl_use+set} != xset; then
- if test "${glibcxx_cv_func_powl_use+set}" = set; then :
+ if ${glibcxx_cv_func_powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65399,7 +65569,7 @@ $as_echo "$glibcxx_cv_func_powl_use" >&6; }
for ac_func in powl
do :
ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl"
-if test "x$ac_cv_func_powl" = x""yes; then :
+if test "x$ac_cv_func_powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
_ACEOF
@@ -65412,7 +65582,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5
$as_echo_n "checking for _powl declaration... " >&6; }
if test x${glibcxx_cv_func__powl_use+set} != xset; then
- if test "${glibcxx_cv_func__powl_use+set}" = set; then :
+ if ${glibcxx_cv_func__powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65457,7 +65627,7 @@ $as_echo "$glibcxx_cv_func__powl_use" >&6; }
for ac_func in _powl
do :
ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl"
-if test "x$ac_cv_func__powl" = x""yes; then :
+if test "x$ac_cv_func__powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWL 1
_ACEOF
@@ -65475,7 +65645,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5
$as_echo_n "checking for sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65524,7 +65694,7 @@ $as_echo "$glibcxx_cv_func_sqrtl_use" >&6; }
for ac_func in sqrtl
do :
ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl"
-if test "x$ac_cv_func_sqrtl" = x""yes; then :
+if test "x$ac_cv_func_sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
_ACEOF
@@ -65537,7 +65707,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5
$as_echo_n "checking for _sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65586,7 +65756,7 @@ $as_echo "$glibcxx_cv_func__sqrtl_use" >&6; }
for ac_func in _sqrtl
do :
ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl"
-if test "x$ac_cv_func__sqrtl" = x""yes; then :
+if test "x$ac_cv_func__sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTL 1
_ACEOF
@@ -65604,7 +65774,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5
$as_echo_n "checking for sincosl declaration... " >&6; }
if test x${glibcxx_cv_func_sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65649,7 +65819,7 @@ $as_echo "$glibcxx_cv_func_sincosl_use" >&6; }
for ac_func in sincosl
do :
ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl"
-if test "x$ac_cv_func_sincosl" = x""yes; then :
+if test "x$ac_cv_func_sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSL 1
_ACEOF
@@ -65662,7 +65832,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5
$as_echo_n "checking for _sincosl declaration... " >&6; }
if test x${glibcxx_cv_func__sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65707,7 +65877,7 @@ $as_echo "$glibcxx_cv_func__sincosl_use" >&6; }
for ac_func in _sincosl
do :
ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl"
-if test "x$ac_cv_func__sincosl" = x""yes; then :
+if test "x$ac_cv_func__sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSL 1
_ACEOF
@@ -65725,7 +65895,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5
$as_echo_n "checking for finitel declaration... " >&6; }
if test x${glibcxx_cv_func_finitel_use+set} != xset; then
- if test "${glibcxx_cv_func_finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65774,7 +65944,7 @@ $as_echo "$glibcxx_cv_func_finitel_use" >&6; }
for ac_func in finitel
do :
ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel"
-if test "x$ac_cv_func_finitel" = x""yes; then :
+if test "x$ac_cv_func_finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEL 1
_ACEOF
@@ -65787,7 +65957,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5
$as_echo_n "checking for _finitel declaration... " >&6; }
if test x${glibcxx_cv_func__finitel_use+set} != xset; then
- if test "${glibcxx_cv_func__finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65836,7 +66006,7 @@ $as_echo "$glibcxx_cv_func__finitel_use" >&6; }
for ac_func in _finitel
do :
ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel"
-if test "x$ac_cv_func__finitel" = x""yes; then :
+if test "x$ac_cv_func__finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEL 1
_ACEOF
@@ -65862,7 +66032,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5
$as_echo_n "checking for at_quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_at_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65906,7 +66076,7 @@ $as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; }
for ac_func in at_quick_exit
do :
ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit"
-if test "x$ac_cv_func_at_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_at_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_AT_QUICK_EXIT 1
_ACEOF
@@ -65920,7 +66090,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5
$as_echo_n "checking for quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -65964,7 +66134,7 @@ $as_echo "$glibcxx_cv_func_quick_exit_use" >&6; }
for ac_func in quick_exit
do :
ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit"
-if test "x$ac_cv_func_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QUICK_EXIT 1
_ACEOF
@@ -65978,7 +66148,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5
$as_echo_n "checking for strtold declaration... " >&6; }
if test x${glibcxx_cv_func_strtold_use+set} != xset; then
- if test "${glibcxx_cv_func_strtold_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtold_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -66022,7 +66192,7 @@ $as_echo "$glibcxx_cv_func_strtold_use" >&6; }
for ac_func in strtold
do :
ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold"
-if test "x$ac_cv_func_strtold" = x""yes; then :
+if test "x$ac_cv_func_strtold" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
@@ -66038,7 +66208,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5
$as_echo_n "checking for strtof declaration... " >&6; }
if test x${glibcxx_cv_func_strtof_use+set} != xset; then
- if test "${glibcxx_cv_func_strtof_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtof_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -66082,7 +66252,7 @@ $as_echo "$glibcxx_cv_func_strtof_use" >&6; }
for ac_func in strtof
do :
ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof"
-if test "x$ac_cv_func_strtof" = x""yes; then :
+if test "x$ac_cv_func_strtof" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOF 1
_ACEOF
@@ -66101,8 +66271,7 @@ done
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -66113,7 +66282,7 @@ done
for ac_func in _wfopen
do :
ac_fn_c_check_func "$LINENO" "_wfopen" "ac_cv_func__wfopen"
-if test "x$ac_cv_func__wfopen" = x""yes; then :
+if test "x$ac_cv_func__wfopen" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__WFOPEN 1
_ACEOF
@@ -66194,7 +66363,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -66292,8 +66461,7 @@ $as_echo "$ac_ld_relro" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -66374,7 +66542,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -66594,7 +66762,7 @@ $as_echo "$glibcxx_gnu_ld_version" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5
$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; }
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -66671,13 +66839,13 @@ $as_echo "$ac_ld_relro" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -66708,7 +66876,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
libm="-lm"
fi
@@ -66720,7 +66888,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5
$as_echo_n "checking for isinf declaration... " >&6; }
if test x${glibcxx_cv_func_isinf_use+set} != xset; then
- if test "${glibcxx_cv_func_isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -66769,7 +66937,7 @@ $as_echo "$glibcxx_cv_func_isinf_use" >&6; }
for ac_func in isinf
do :
ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf"
-if test "x$ac_cv_func_isinf" = x""yes; then :
+if test "x$ac_cv_func_isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINF 1
_ACEOF
@@ -66782,7 +66950,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5
$as_echo_n "checking for _isinf declaration... " >&6; }
if test x${glibcxx_cv_func__isinf_use+set} != xset; then
- if test "${glibcxx_cv_func__isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -66831,7 +66999,7 @@ $as_echo "$glibcxx_cv_func__isinf_use" >&6; }
for ac_func in _isinf
do :
ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf"
-if test "x$ac_cv_func__isinf" = x""yes; then :
+if test "x$ac_cv_func__isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINF 1
_ACEOF
@@ -66849,7 +67017,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5
$as_echo_n "checking for isnan declaration... " >&6; }
if test x${glibcxx_cv_func_isnan_use+set} != xset; then
- if test "${glibcxx_cv_func_isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -66898,7 +67066,7 @@ $as_echo "$glibcxx_cv_func_isnan_use" >&6; }
for ac_func in isnan
do :
ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan"
-if test "x$ac_cv_func_isnan" = x""yes; then :
+if test "x$ac_cv_func_isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNAN 1
_ACEOF
@@ -66911,7 +67079,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5
$as_echo_n "checking for _isnan declaration... " >&6; }
if test x${glibcxx_cv_func__isnan_use+set} != xset; then
- if test "${glibcxx_cv_func__isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -66960,7 +67128,7 @@ $as_echo "$glibcxx_cv_func__isnan_use" >&6; }
for ac_func in _isnan
do :
ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan"
-if test "x$ac_cv_func__isnan" = x""yes; then :
+if test "x$ac_cv_func__isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNAN 1
_ACEOF
@@ -66978,7 +67146,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5
$as_echo_n "checking for finite declaration... " >&6; }
if test x${glibcxx_cv_func_finite_use+set} != xset; then
- if test "${glibcxx_cv_func_finite_use+set}" = set; then :
+ if ${glibcxx_cv_func_finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67027,7 +67195,7 @@ $as_echo "$glibcxx_cv_func_finite_use" >&6; }
for ac_func in finite
do :
ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite"
-if test "x$ac_cv_func_finite" = x""yes; then :
+if test "x$ac_cv_func_finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITE 1
_ACEOF
@@ -67040,7 +67208,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5
$as_echo_n "checking for _finite declaration... " >&6; }
if test x${glibcxx_cv_func__finite_use+set} != xset; then
- if test "${glibcxx_cv_func__finite_use+set}" = set; then :
+ if ${glibcxx_cv_func__finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67089,7 +67257,7 @@ $as_echo "$glibcxx_cv_func__finite_use" >&6; }
for ac_func in _finite
do :
ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite"
-if test "x$ac_cv_func__finite" = x""yes; then :
+if test "x$ac_cv_func__finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITE 1
_ACEOF
@@ -67107,7 +67275,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5
$as_echo_n "checking for sincos declaration... " >&6; }
if test x${glibcxx_cv_func_sincos_use+set} != xset; then
- if test "${glibcxx_cv_func_sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67152,7 +67320,7 @@ $as_echo "$glibcxx_cv_func_sincos_use" >&6; }
for ac_func in sincos
do :
ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos"
-if test "x$ac_cv_func_sincos" = x""yes; then :
+if test "x$ac_cv_func_sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOS 1
_ACEOF
@@ -67165,7 +67333,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5
$as_echo_n "checking for _sincos declaration... " >&6; }
if test x${glibcxx_cv_func__sincos_use+set} != xset; then
- if test "${glibcxx_cv_func__sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67210,7 +67378,7 @@ $as_echo "$glibcxx_cv_func__sincos_use" >&6; }
for ac_func in _sincos
do :
ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos"
-if test "x$ac_cv_func__sincos" = x""yes; then :
+if test "x$ac_cv_func__sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOS 1
_ACEOF
@@ -67228,7 +67396,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5
$as_echo_n "checking for fpclass declaration... " >&6; }
if test x${glibcxx_cv_func_fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67277,7 +67445,7 @@ $as_echo "$glibcxx_cv_func_fpclass_use" >&6; }
for ac_func in fpclass
do :
ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass"
-if test "x$ac_cv_func_fpclass" = x""yes; then :
+if test "x$ac_cv_func_fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FPCLASS 1
_ACEOF
@@ -67290,7 +67458,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5
$as_echo_n "checking for _fpclass declaration... " >&6; }
if test x${glibcxx_cv_func__fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67339,7 +67507,7 @@ $as_echo "$glibcxx_cv_func__fpclass_use" >&6; }
for ac_func in _fpclass
do :
ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass"
-if test "x$ac_cv_func__fpclass" = x""yes; then :
+if test "x$ac_cv_func__fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FPCLASS 1
_ACEOF
@@ -67357,7 +67525,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5
$as_echo_n "checking for qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67406,7 +67574,7 @@ $as_echo "$glibcxx_cv_func_qfpclass_use" >&6; }
for ac_func in qfpclass
do :
ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass"
-if test "x$ac_cv_func_qfpclass" = x""yes; then :
+if test "x$ac_cv_func_qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QFPCLASS 1
_ACEOF
@@ -67419,7 +67587,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5
$as_echo_n "checking for _qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67468,7 +67636,7 @@ $as_echo "$glibcxx_cv_func__qfpclass_use" >&6; }
for ac_func in _qfpclass
do :
ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass"
-if test "x$ac_cv_func__qfpclass" = x""yes; then :
+if test "x$ac_cv_func__qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__QFPCLASS 1
_ACEOF
@@ -67486,7 +67654,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5
$as_echo_n "checking for hypot declaration... " >&6; }
if test x${glibcxx_cv_func_hypot_use+set} != xset; then
- if test "${glibcxx_cv_func_hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67531,7 +67699,7 @@ $as_echo "$glibcxx_cv_func_hypot_use" >&6; }
for ac_func in hypot
do :
ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot"
-if test "x$ac_cv_func_hypot" = x""yes; then :
+if test "x$ac_cv_func_hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOT 1
_ACEOF
@@ -67544,7 +67712,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5
$as_echo_n "checking for _hypot declaration... " >&6; }
if test x${glibcxx_cv_func__hypot_use+set} != xset; then
- if test "${glibcxx_cv_func__hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67589,7 +67757,7 @@ $as_echo "$glibcxx_cv_func__hypot_use" >&6; }
for ac_func in _hypot
do :
ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot"
-if test "x$ac_cv_func__hypot" = x""yes; then :
+if test "x$ac_cv_func__hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOT 1
_ACEOF
@@ -67606,7 +67774,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5
$as_echo_n "checking for float trig functions... " >&6; }
- if test "${glibcxx_cv_func_float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67649,8 +67817,7 @@ $as_echo "$glibcxx_cv_func_float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -67661,7 +67828,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5
$as_echo_n "checking for _float trig functions... " >&6; }
- if test "${glibcxx_cv_func__float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67704,8 +67871,7 @@ $as_echo "$glibcxx_cv_func__float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -67722,7 +67888,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5
$as_echo_n "checking for float round functions... " >&6; }
- if test "${glibcxx_cv_func_float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67765,8 +67931,7 @@ $as_echo "$glibcxx_cv_func_float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -67777,7 +67942,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5
$as_echo_n "checking for _float round functions... " >&6; }
- if test "${glibcxx_cv_func__float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67820,8 +67985,7 @@ $as_echo "$glibcxx_cv_func__float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -67840,7 +68004,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5
$as_echo_n "checking for expf declaration... " >&6; }
if test x${glibcxx_cv_func_expf_use+set} != xset; then
- if test "${glibcxx_cv_func_expf_use+set}" = set; then :
+ if ${glibcxx_cv_func_expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67889,7 +68053,7 @@ $as_echo "$glibcxx_cv_func_expf_use" >&6; }
for ac_func in expf
do :
ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf"
-if test "x$ac_cv_func_expf" = x""yes; then :
+if test "x$ac_cv_func_expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPF 1
_ACEOF
@@ -67902,7 +68066,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5
$as_echo_n "checking for _expf declaration... " >&6; }
if test x${glibcxx_cv_func__expf_use+set} != xset; then
- if test "${glibcxx_cv_func__expf_use+set}" = set; then :
+ if ${glibcxx_cv_func__expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -67951,7 +68115,7 @@ $as_echo "$glibcxx_cv_func__expf_use" >&6; }
for ac_func in _expf
do :
ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf"
-if test "x$ac_cv_func__expf" = x""yes; then :
+if test "x$ac_cv_func__expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPF 1
_ACEOF
@@ -67969,7 +68133,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5
$as_echo_n "checking for isnanf declaration... " >&6; }
if test x${glibcxx_cv_func_isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68018,7 +68182,7 @@ $as_echo "$glibcxx_cv_func_isnanf_use" >&6; }
for ac_func in isnanf
do :
ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf"
-if test "x$ac_cv_func_isnanf" = x""yes; then :
+if test "x$ac_cv_func_isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANF 1
_ACEOF
@@ -68031,7 +68195,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5
$as_echo_n "checking for _isnanf declaration... " >&6; }
if test x${glibcxx_cv_func__isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68080,7 +68244,7 @@ $as_echo "$glibcxx_cv_func__isnanf_use" >&6; }
for ac_func in _isnanf
do :
ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf"
-if test "x$ac_cv_func__isnanf" = x""yes; then :
+if test "x$ac_cv_func__isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANF 1
_ACEOF
@@ -68098,7 +68262,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5
$as_echo_n "checking for isinff declaration... " >&6; }
if test x${glibcxx_cv_func_isinff_use+set} != xset; then
- if test "${glibcxx_cv_func_isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68147,7 +68311,7 @@ $as_echo "$glibcxx_cv_func_isinff_use" >&6; }
for ac_func in isinff
do :
ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff"
-if test "x$ac_cv_func_isinff" = x""yes; then :
+if test "x$ac_cv_func_isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFF 1
_ACEOF
@@ -68160,7 +68324,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5
$as_echo_n "checking for _isinff declaration... " >&6; }
if test x${glibcxx_cv_func__isinff_use+set} != xset; then
- if test "${glibcxx_cv_func__isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68209,7 +68373,7 @@ $as_echo "$glibcxx_cv_func__isinff_use" >&6; }
for ac_func in _isinff
do :
ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff"
-if test "x$ac_cv_func__isinff" = x""yes; then :
+if test "x$ac_cv_func__isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFF 1
_ACEOF
@@ -68227,7 +68391,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5
$as_echo_n "checking for atan2f declaration... " >&6; }
if test x${glibcxx_cv_func_atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68272,7 +68436,7 @@ $as_echo "$glibcxx_cv_func_atan2f_use" >&6; }
for ac_func in atan2f
do :
ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f"
-if test "x$ac_cv_func_atan2f" = x""yes; then :
+if test "x$ac_cv_func_atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2F 1
_ACEOF
@@ -68285,7 +68449,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5
$as_echo_n "checking for _atan2f declaration... " >&6; }
if test x${glibcxx_cv_func__atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68330,7 +68494,7 @@ $as_echo "$glibcxx_cv_func__atan2f_use" >&6; }
for ac_func in _atan2f
do :
ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f"
-if test "x$ac_cv_func__atan2f" = x""yes; then :
+if test "x$ac_cv_func__atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2F 1
_ACEOF
@@ -68348,7 +68512,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5
$as_echo_n "checking for fabsf declaration... " >&6; }
if test x${glibcxx_cv_func_fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68397,7 +68561,7 @@ $as_echo "$glibcxx_cv_func_fabsf_use" >&6; }
for ac_func in fabsf
do :
ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf"
-if test "x$ac_cv_func_fabsf" = x""yes; then :
+if test "x$ac_cv_func_fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSF 1
_ACEOF
@@ -68410,7 +68574,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5
$as_echo_n "checking for _fabsf declaration... " >&6; }
if test x${glibcxx_cv_func__fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68459,7 +68623,7 @@ $as_echo "$glibcxx_cv_func__fabsf_use" >&6; }
for ac_func in _fabsf
do :
ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf"
-if test "x$ac_cv_func__fabsf" = x""yes; then :
+if test "x$ac_cv_func__fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSF 1
_ACEOF
@@ -68477,7 +68641,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5
$as_echo_n "checking for fmodf declaration... " >&6; }
if test x${glibcxx_cv_func_fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68522,7 +68686,7 @@ $as_echo "$glibcxx_cv_func_fmodf_use" >&6; }
for ac_func in fmodf
do :
ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf"
-if test "x$ac_cv_func_fmodf" = x""yes; then :
+if test "x$ac_cv_func_fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODF 1
_ACEOF
@@ -68535,7 +68699,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5
$as_echo_n "checking for _fmodf declaration... " >&6; }
if test x${glibcxx_cv_func__fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68580,7 +68744,7 @@ $as_echo "$glibcxx_cv_func__fmodf_use" >&6; }
for ac_func in _fmodf
do :
ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf"
-if test "x$ac_cv_func__fmodf" = x""yes; then :
+if test "x$ac_cv_func__fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODF 1
_ACEOF
@@ -68598,7 +68762,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5
$as_echo_n "checking for frexpf declaration... " >&6; }
if test x${glibcxx_cv_func_frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68643,7 +68807,7 @@ $as_echo "$glibcxx_cv_func_frexpf_use" >&6; }
for ac_func in frexpf
do :
ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf"
-if test "x$ac_cv_func_frexpf" = x""yes; then :
+if test "x$ac_cv_func_frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPF 1
_ACEOF
@@ -68656,7 +68820,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5
$as_echo_n "checking for _frexpf declaration... " >&6; }
if test x${glibcxx_cv_func__frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68701,7 +68865,7 @@ $as_echo "$glibcxx_cv_func__frexpf_use" >&6; }
for ac_func in _frexpf
do :
ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf"
-if test "x$ac_cv_func__frexpf" = x""yes; then :
+if test "x$ac_cv_func__frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPF 1
_ACEOF
@@ -68719,7 +68883,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5
$as_echo_n "checking for hypotf declaration... " >&6; }
if test x${glibcxx_cv_func_hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68764,7 +68928,7 @@ $as_echo "$glibcxx_cv_func_hypotf_use" >&6; }
for ac_func in hypotf
do :
ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf"
-if test "x$ac_cv_func_hypotf" = x""yes; then :
+if test "x$ac_cv_func_hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTF 1
_ACEOF
@@ -68777,7 +68941,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5
$as_echo_n "checking for _hypotf declaration... " >&6; }
if test x${glibcxx_cv_func__hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68822,7 +68986,7 @@ $as_echo "$glibcxx_cv_func__hypotf_use" >&6; }
for ac_func in _hypotf
do :
ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf"
-if test "x$ac_cv_func__hypotf" = x""yes; then :
+if test "x$ac_cv_func__hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTF 1
_ACEOF
@@ -68840,7 +69004,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5
$as_echo_n "checking for ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68885,7 +69049,7 @@ $as_echo "$glibcxx_cv_func_ldexpf_use" >&6; }
for ac_func in ldexpf
do :
ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf"
-if test "x$ac_cv_func_ldexpf" = x""yes; then :
+if test "x$ac_cv_func_ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPF 1
_ACEOF
@@ -68898,7 +69062,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5
$as_echo_n "checking for _ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -68943,7 +69107,7 @@ $as_echo "$glibcxx_cv_func__ldexpf_use" >&6; }
for ac_func in _ldexpf
do :
ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf"
-if test "x$ac_cv_func__ldexpf" = x""yes; then :
+if test "x$ac_cv_func__ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPF 1
_ACEOF
@@ -68961,7 +69125,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5
$as_echo_n "checking for logf declaration... " >&6; }
if test x${glibcxx_cv_func_logf_use+set} != xset; then
- if test "${glibcxx_cv_func_logf_use+set}" = set; then :
+ if ${glibcxx_cv_func_logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69010,7 +69174,7 @@ $as_echo "$glibcxx_cv_func_logf_use" >&6; }
for ac_func in logf
do :
ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf"
-if test "x$ac_cv_func_logf" = x""yes; then :
+if test "x$ac_cv_func_logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGF 1
_ACEOF
@@ -69023,7 +69187,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5
$as_echo_n "checking for _logf declaration... " >&6; }
if test x${glibcxx_cv_func__logf_use+set} != xset; then
- if test "${glibcxx_cv_func__logf_use+set}" = set; then :
+ if ${glibcxx_cv_func__logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69072,7 +69236,7 @@ $as_echo "$glibcxx_cv_func__logf_use" >&6; }
for ac_func in _logf
do :
ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf"
-if test "x$ac_cv_func__logf" = x""yes; then :
+if test "x$ac_cv_func__logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGF 1
_ACEOF
@@ -69090,7 +69254,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5
$as_echo_n "checking for log10f declaration... " >&6; }
if test x${glibcxx_cv_func_log10f_use+set} != xset; then
- if test "${glibcxx_cv_func_log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69139,7 +69303,7 @@ $as_echo "$glibcxx_cv_func_log10f_use" >&6; }
for ac_func in log10f
do :
ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f"
-if test "x$ac_cv_func_log10f" = x""yes; then :
+if test "x$ac_cv_func_log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10F 1
_ACEOF
@@ -69152,7 +69316,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5
$as_echo_n "checking for _log10f declaration... " >&6; }
if test x${glibcxx_cv_func__log10f_use+set} != xset; then
- if test "${glibcxx_cv_func__log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69201,7 +69365,7 @@ $as_echo "$glibcxx_cv_func__log10f_use" >&6; }
for ac_func in _log10f
do :
ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f"
-if test "x$ac_cv_func__log10f" = x""yes; then :
+if test "x$ac_cv_func__log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10F 1
_ACEOF
@@ -69219,7 +69383,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5
$as_echo_n "checking for modff declaration... " >&6; }
if test x${glibcxx_cv_func_modff_use+set} != xset; then
- if test "${glibcxx_cv_func_modff_use+set}" = set; then :
+ if ${glibcxx_cv_func_modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69264,7 +69428,7 @@ $as_echo "$glibcxx_cv_func_modff_use" >&6; }
for ac_func in modff
do :
ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff"
-if test "x$ac_cv_func_modff" = x""yes; then :
+if test "x$ac_cv_func_modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFF 1
_ACEOF
@@ -69277,7 +69441,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5
$as_echo_n "checking for _modff declaration... " >&6; }
if test x${glibcxx_cv_func__modff_use+set} != xset; then
- if test "${glibcxx_cv_func__modff_use+set}" = set; then :
+ if ${glibcxx_cv_func__modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69322,7 +69486,7 @@ $as_echo "$glibcxx_cv_func__modff_use" >&6; }
for ac_func in _modff
do :
ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff"
-if test "x$ac_cv_func__modff" = x""yes; then :
+if test "x$ac_cv_func__modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFF 1
_ACEOF
@@ -69340,7 +69504,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5
$as_echo_n "checking for modf declaration... " >&6; }
if test x${glibcxx_cv_func_modf_use+set} != xset; then
- if test "${glibcxx_cv_func_modf_use+set}" = set; then :
+ if ${glibcxx_cv_func_modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69385,7 +69549,7 @@ $as_echo "$glibcxx_cv_func_modf_use" >&6; }
for ac_func in modf
do :
ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf"
-if test "x$ac_cv_func_modf" = x""yes; then :
+if test "x$ac_cv_func_modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODF 1
_ACEOF
@@ -69398,7 +69562,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5
$as_echo_n "checking for _modf declaration... " >&6; }
if test x${glibcxx_cv_func__modf_use+set} != xset; then
- if test "${glibcxx_cv_func__modf_use+set}" = set; then :
+ if ${glibcxx_cv_func__modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69443,7 +69607,7 @@ $as_echo "$glibcxx_cv_func__modf_use" >&6; }
for ac_func in _modf
do :
ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf"
-if test "x$ac_cv_func__modf" = x""yes; then :
+if test "x$ac_cv_func__modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODF 1
_ACEOF
@@ -69461,7 +69625,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5
$as_echo_n "checking for powf declaration... " >&6; }
if test x${glibcxx_cv_func_powf_use+set} != xset; then
- if test "${glibcxx_cv_func_powf_use+set}" = set; then :
+ if ${glibcxx_cv_func_powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69506,7 +69670,7 @@ $as_echo "$glibcxx_cv_func_powf_use" >&6; }
for ac_func in powf
do :
ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf"
-if test "x$ac_cv_func_powf" = x""yes; then :
+if test "x$ac_cv_func_powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWF 1
_ACEOF
@@ -69519,7 +69683,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5
$as_echo_n "checking for _powf declaration... " >&6; }
if test x${glibcxx_cv_func__powf_use+set} != xset; then
- if test "${glibcxx_cv_func__powf_use+set}" = set; then :
+ if ${glibcxx_cv_func__powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69564,7 +69728,7 @@ $as_echo "$glibcxx_cv_func__powf_use" >&6; }
for ac_func in _powf
do :
ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf"
-if test "x$ac_cv_func__powf" = x""yes; then :
+if test "x$ac_cv_func__powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWF 1
_ACEOF
@@ -69582,7 +69746,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5
$as_echo_n "checking for sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69631,7 +69795,7 @@ $as_echo "$glibcxx_cv_func_sqrtf_use" >&6; }
for ac_func in sqrtf
do :
ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf"
-if test "x$ac_cv_func_sqrtf" = x""yes; then :
+if test "x$ac_cv_func_sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTF 1
_ACEOF
@@ -69644,7 +69808,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5
$as_echo_n "checking for _sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69693,7 +69857,7 @@ $as_echo "$glibcxx_cv_func__sqrtf_use" >&6; }
for ac_func in _sqrtf
do :
ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf"
-if test "x$ac_cv_func__sqrtf" = x""yes; then :
+if test "x$ac_cv_func__sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTF 1
_ACEOF
@@ -69711,7 +69875,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5
$as_echo_n "checking for sincosf declaration... " >&6; }
if test x${glibcxx_cv_func_sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69756,7 +69920,7 @@ $as_echo "$glibcxx_cv_func_sincosf_use" >&6; }
for ac_func in sincosf
do :
ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf"
-if test "x$ac_cv_func_sincosf" = x""yes; then :
+if test "x$ac_cv_func_sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSF 1
_ACEOF
@@ -69769,7 +69933,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5
$as_echo_n "checking for _sincosf declaration... " >&6; }
if test x${glibcxx_cv_func__sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69814,7 +69978,7 @@ $as_echo "$glibcxx_cv_func__sincosf_use" >&6; }
for ac_func in _sincosf
do :
ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf"
-if test "x$ac_cv_func__sincosf" = x""yes; then :
+if test "x$ac_cv_func__sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSF 1
_ACEOF
@@ -69832,7 +69996,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5
$as_echo_n "checking for finitef declaration... " >&6; }
if test x${glibcxx_cv_func_finitef_use+set} != xset; then
- if test "${glibcxx_cv_func_finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69881,7 +70045,7 @@ $as_echo "$glibcxx_cv_func_finitef_use" >&6; }
for ac_func in finitef
do :
ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef"
-if test "x$ac_cv_func_finitef" = x""yes; then :
+if test "x$ac_cv_func_finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEF 1
_ACEOF
@@ -69894,7 +70058,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5
$as_echo_n "checking for _finitef declaration... " >&6; }
if test x${glibcxx_cv_func__finitef_use+set} != xset; then
- if test "${glibcxx_cv_func__finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -69943,7 +70107,7 @@ $as_echo "$glibcxx_cv_func__finitef_use" >&6; }
for ac_func in _finitef
do :
ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef"
-if test "x$ac_cv_func__finitef" = x""yes; then :
+if test "x$ac_cv_func__finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEF 1
_ACEOF
@@ -69960,7 +70124,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5
$as_echo_n "checking for long double trig functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70003,8 +70167,7 @@ $as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -70015,7 +70178,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5
$as_echo_n "checking for _long double trig functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70058,8 +70221,7 @@ $as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -70076,7 +70238,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5
$as_echo_n "checking for long double round functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70119,8 +70281,7 @@ $as_echo "$glibcxx_cv_func_long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -70131,7 +70292,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5
$as_echo_n "checking for _long double round functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70174,8 +70335,7 @@ $as_echo "$glibcxx_cv_func__long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -70194,7 +70354,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5
$as_echo_n "checking for isnanl declaration... " >&6; }
if test x${glibcxx_cv_func_isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70243,7 +70403,7 @@ $as_echo "$glibcxx_cv_func_isnanl_use" >&6; }
for ac_func in isnanl
do :
ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl"
-if test "x$ac_cv_func_isnanl" = x""yes; then :
+if test "x$ac_cv_func_isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANL 1
_ACEOF
@@ -70256,7 +70416,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5
$as_echo_n "checking for _isnanl declaration... " >&6; }
if test x${glibcxx_cv_func__isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70305,7 +70465,7 @@ $as_echo "$glibcxx_cv_func__isnanl_use" >&6; }
for ac_func in _isnanl
do :
ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl"
-if test "x$ac_cv_func__isnanl" = x""yes; then :
+if test "x$ac_cv_func__isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANL 1
_ACEOF
@@ -70323,7 +70483,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5
$as_echo_n "checking for isinfl declaration... " >&6; }
if test x${glibcxx_cv_func_isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func_isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70372,7 +70532,7 @@ $as_echo "$glibcxx_cv_func_isinfl_use" >&6; }
for ac_func in isinfl
do :
ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl"
-if test "x$ac_cv_func_isinfl" = x""yes; then :
+if test "x$ac_cv_func_isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFL 1
_ACEOF
@@ -70385,7 +70545,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5
$as_echo_n "checking for _isinfl declaration... " >&6; }
if test x${glibcxx_cv_func__isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func__isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70434,7 +70594,7 @@ $as_echo "$glibcxx_cv_func__isinfl_use" >&6; }
for ac_func in _isinfl
do :
ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl"
-if test "x$ac_cv_func__isinfl" = x""yes; then :
+if test "x$ac_cv_func__isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFL 1
_ACEOF
@@ -70452,7 +70612,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5
$as_echo_n "checking for atan2l declaration... " >&6; }
if test x${glibcxx_cv_func_atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70497,7 +70657,7 @@ $as_echo "$glibcxx_cv_func_atan2l_use" >&6; }
for ac_func in atan2l
do :
ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l"
-if test "x$ac_cv_func_atan2l" = x""yes; then :
+if test "x$ac_cv_func_atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
_ACEOF
@@ -70510,7 +70670,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5
$as_echo_n "checking for _atan2l declaration... " >&6; }
if test x${glibcxx_cv_func__atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70555,7 +70715,7 @@ $as_echo "$glibcxx_cv_func__atan2l_use" >&6; }
for ac_func in _atan2l
do :
ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l"
-if test "x$ac_cv_func__atan2l" = x""yes; then :
+if test "x$ac_cv_func__atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2L 1
_ACEOF
@@ -70573,7 +70733,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5
$as_echo_n "checking for expl declaration... " >&6; }
if test x${glibcxx_cv_func_expl_use+set} != xset; then
- if test "${glibcxx_cv_func_expl_use+set}" = set; then :
+ if ${glibcxx_cv_func_expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70622,7 +70782,7 @@ $as_echo "$glibcxx_cv_func_expl_use" >&6; }
for ac_func in expl
do :
ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl"
-if test "x$ac_cv_func_expl" = x""yes; then :
+if test "x$ac_cv_func_expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
_ACEOF
@@ -70635,7 +70795,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5
$as_echo_n "checking for _expl declaration... " >&6; }
if test x${glibcxx_cv_func__expl_use+set} != xset; then
- if test "${glibcxx_cv_func__expl_use+set}" = set; then :
+ if ${glibcxx_cv_func__expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70684,7 +70844,7 @@ $as_echo "$glibcxx_cv_func__expl_use" >&6; }
for ac_func in _expl
do :
ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl"
-if test "x$ac_cv_func__expl" = x""yes; then :
+if test "x$ac_cv_func__expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPL 1
_ACEOF
@@ -70702,7 +70862,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5
$as_echo_n "checking for fabsl declaration... " >&6; }
if test x${glibcxx_cv_func_fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70751,7 +70911,7 @@ $as_echo "$glibcxx_cv_func_fabsl_use" >&6; }
for ac_func in fabsl
do :
ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl"
-if test "x$ac_cv_func_fabsl" = x""yes; then :
+if test "x$ac_cv_func_fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSL 1
_ACEOF
@@ -70764,7 +70924,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5
$as_echo_n "checking for _fabsl declaration... " >&6; }
if test x${glibcxx_cv_func__fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70813,7 +70973,7 @@ $as_echo "$glibcxx_cv_func__fabsl_use" >&6; }
for ac_func in _fabsl
do :
ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl"
-if test "x$ac_cv_func__fabsl" = x""yes; then :
+if test "x$ac_cv_func__fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSL 1
_ACEOF
@@ -70831,7 +70991,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5
$as_echo_n "checking for fmodl declaration... " >&6; }
if test x${glibcxx_cv_func_fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70876,7 +71036,7 @@ $as_echo "$glibcxx_cv_func_fmodl_use" >&6; }
for ac_func in fmodl
do :
ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl"
-if test "x$ac_cv_func_fmodl" = x""yes; then :
+if test "x$ac_cv_func_fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
_ACEOF
@@ -70889,7 +71049,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5
$as_echo_n "checking for _fmodl declaration... " >&6; }
if test x${glibcxx_cv_func__fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70934,7 +71094,7 @@ $as_echo "$glibcxx_cv_func__fmodl_use" >&6; }
for ac_func in _fmodl
do :
ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl"
-if test "x$ac_cv_func__fmodl" = x""yes; then :
+if test "x$ac_cv_func__fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODL 1
_ACEOF
@@ -70952,7 +71112,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5
$as_echo_n "checking for frexpl declaration... " >&6; }
if test x${glibcxx_cv_func_frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -70997,7 +71157,7 @@ $as_echo "$glibcxx_cv_func_frexpl_use" >&6; }
for ac_func in frexpl
do :
ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl"
-if test "x$ac_cv_func_frexpl" = x""yes; then :
+if test "x$ac_cv_func_frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPL 1
_ACEOF
@@ -71010,7 +71170,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5
$as_echo_n "checking for _frexpl declaration... " >&6; }
if test x${glibcxx_cv_func__frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71055,7 +71215,7 @@ $as_echo "$glibcxx_cv_func__frexpl_use" >&6; }
for ac_func in _frexpl
do :
ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl"
-if test "x$ac_cv_func__frexpl" = x""yes; then :
+if test "x$ac_cv_func__frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPL 1
_ACEOF
@@ -71073,7 +71233,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5
$as_echo_n "checking for hypotl declaration... " >&6; }
if test x${glibcxx_cv_func_hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71118,7 +71278,7 @@ $as_echo "$glibcxx_cv_func_hypotl_use" >&6; }
for ac_func in hypotl
do :
ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl"
-if test "x$ac_cv_func_hypotl" = x""yes; then :
+if test "x$ac_cv_func_hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTL 1
_ACEOF
@@ -71131,7 +71291,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5
$as_echo_n "checking for _hypotl declaration... " >&6; }
if test x${glibcxx_cv_func__hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71176,7 +71336,7 @@ $as_echo "$glibcxx_cv_func__hypotl_use" >&6; }
for ac_func in _hypotl
do :
ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl"
-if test "x$ac_cv_func__hypotl" = x""yes; then :
+if test "x$ac_cv_func__hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTL 1
_ACEOF
@@ -71194,7 +71354,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5
$as_echo_n "checking for ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71239,7 +71399,7 @@ $as_echo "$glibcxx_cv_func_ldexpl_use" >&6; }
for ac_func in ldexpl
do :
ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl"
-if test "x$ac_cv_func_ldexpl" = x""yes; then :
+if test "x$ac_cv_func_ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPL 1
_ACEOF
@@ -71252,7 +71412,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5
$as_echo_n "checking for _ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71297,7 +71457,7 @@ $as_echo "$glibcxx_cv_func__ldexpl_use" >&6; }
for ac_func in _ldexpl
do :
ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl"
-if test "x$ac_cv_func__ldexpl" = x""yes; then :
+if test "x$ac_cv_func__ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPL 1
_ACEOF
@@ -71315,7 +71475,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5
$as_echo_n "checking for logl declaration... " >&6; }
if test x${glibcxx_cv_func_logl_use+set} != xset; then
- if test "${glibcxx_cv_func_logl_use+set}" = set; then :
+ if ${glibcxx_cv_func_logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71364,7 +71524,7 @@ $as_echo "$glibcxx_cv_func_logl_use" >&6; }
for ac_func in logl
do :
ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl"
-if test "x$ac_cv_func_logl" = x""yes; then :
+if test "x$ac_cv_func_logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
_ACEOF
@@ -71377,7 +71537,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5
$as_echo_n "checking for _logl declaration... " >&6; }
if test x${glibcxx_cv_func__logl_use+set} != xset; then
- if test "${glibcxx_cv_func__logl_use+set}" = set; then :
+ if ${glibcxx_cv_func__logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71426,7 +71586,7 @@ $as_echo "$glibcxx_cv_func__logl_use" >&6; }
for ac_func in _logl
do :
ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl"
-if test "x$ac_cv_func__logl" = x""yes; then :
+if test "x$ac_cv_func__logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGL 1
_ACEOF
@@ -71444,7 +71604,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5
$as_echo_n "checking for log10l declaration... " >&6; }
if test x${glibcxx_cv_func_log10l_use+set} != xset; then
- if test "${glibcxx_cv_func_log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71493,7 +71653,7 @@ $as_echo "$glibcxx_cv_func_log10l_use" >&6; }
for ac_func in log10l
do :
ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l"
-if test "x$ac_cv_func_log10l" = x""yes; then :
+if test "x$ac_cv_func_log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
_ACEOF
@@ -71506,7 +71666,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5
$as_echo_n "checking for _log10l declaration... " >&6; }
if test x${glibcxx_cv_func__log10l_use+set} != xset; then
- if test "${glibcxx_cv_func__log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71555,7 +71715,7 @@ $as_echo "$glibcxx_cv_func__log10l_use" >&6; }
for ac_func in _log10l
do :
ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l"
-if test "x$ac_cv_func__log10l" = x""yes; then :
+if test "x$ac_cv_func__log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10L 1
_ACEOF
@@ -71573,7 +71733,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5
$as_echo_n "checking for modfl declaration... " >&6; }
if test x${glibcxx_cv_func_modfl_use+set} != xset; then
- if test "${glibcxx_cv_func_modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71618,7 +71778,7 @@ $as_echo "$glibcxx_cv_func_modfl_use" >&6; }
for ac_func in modfl
do :
ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl"
-if test "x$ac_cv_func_modfl" = x""yes; then :
+if test "x$ac_cv_func_modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFL 1
_ACEOF
@@ -71631,7 +71791,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5
$as_echo_n "checking for _modfl declaration... " >&6; }
if test x${glibcxx_cv_func__modfl_use+set} != xset; then
- if test "${glibcxx_cv_func__modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71676,7 +71836,7 @@ $as_echo "$glibcxx_cv_func__modfl_use" >&6; }
for ac_func in _modfl
do :
ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl"
-if test "x$ac_cv_func__modfl" = x""yes; then :
+if test "x$ac_cv_func__modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFL 1
_ACEOF
@@ -71694,7 +71854,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5
$as_echo_n "checking for powl declaration... " >&6; }
if test x${glibcxx_cv_func_powl_use+set} != xset; then
- if test "${glibcxx_cv_func_powl_use+set}" = set; then :
+ if ${glibcxx_cv_func_powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71739,7 +71899,7 @@ $as_echo "$glibcxx_cv_func_powl_use" >&6; }
for ac_func in powl
do :
ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl"
-if test "x$ac_cv_func_powl" = x""yes; then :
+if test "x$ac_cv_func_powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
_ACEOF
@@ -71752,7 +71912,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5
$as_echo_n "checking for _powl declaration... " >&6; }
if test x${glibcxx_cv_func__powl_use+set} != xset; then
- if test "${glibcxx_cv_func__powl_use+set}" = set; then :
+ if ${glibcxx_cv_func__powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71797,7 +71957,7 @@ $as_echo "$glibcxx_cv_func__powl_use" >&6; }
for ac_func in _powl
do :
ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl"
-if test "x$ac_cv_func__powl" = x""yes; then :
+if test "x$ac_cv_func__powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWL 1
_ACEOF
@@ -71815,7 +71975,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5
$as_echo_n "checking for sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71864,7 +72024,7 @@ $as_echo "$glibcxx_cv_func_sqrtl_use" >&6; }
for ac_func in sqrtl
do :
ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl"
-if test "x$ac_cv_func_sqrtl" = x""yes; then :
+if test "x$ac_cv_func_sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
_ACEOF
@@ -71877,7 +72037,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5
$as_echo_n "checking for _sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71926,7 +72086,7 @@ $as_echo "$glibcxx_cv_func__sqrtl_use" >&6; }
for ac_func in _sqrtl
do :
ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl"
-if test "x$ac_cv_func__sqrtl" = x""yes; then :
+if test "x$ac_cv_func__sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTL 1
_ACEOF
@@ -71944,7 +72104,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5
$as_echo_n "checking for sincosl declaration... " >&6; }
if test x${glibcxx_cv_func_sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -71989,7 +72149,7 @@ $as_echo "$glibcxx_cv_func_sincosl_use" >&6; }
for ac_func in sincosl
do :
ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl"
-if test "x$ac_cv_func_sincosl" = x""yes; then :
+if test "x$ac_cv_func_sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSL 1
_ACEOF
@@ -72002,7 +72162,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5
$as_echo_n "checking for _sincosl declaration... " >&6; }
if test x${glibcxx_cv_func__sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72047,7 +72207,7 @@ $as_echo "$glibcxx_cv_func__sincosl_use" >&6; }
for ac_func in _sincosl
do :
ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl"
-if test "x$ac_cv_func__sincosl" = x""yes; then :
+if test "x$ac_cv_func__sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSL 1
_ACEOF
@@ -72065,7 +72225,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5
$as_echo_n "checking for finitel declaration... " >&6; }
if test x${glibcxx_cv_func_finitel_use+set} != xset; then
- if test "${glibcxx_cv_func_finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72114,7 +72274,7 @@ $as_echo "$glibcxx_cv_func_finitel_use" >&6; }
for ac_func in finitel
do :
ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel"
-if test "x$ac_cv_func_finitel" = x""yes; then :
+if test "x$ac_cv_func_finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEL 1
_ACEOF
@@ -72127,7 +72287,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5
$as_echo_n "checking for _finitel declaration... " >&6; }
if test x${glibcxx_cv_func__finitel_use+set} != xset; then
- if test "${glibcxx_cv_func__finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72176,7 +72336,7 @@ $as_echo "$glibcxx_cv_func__finitel_use" >&6; }
for ac_func in _finitel
do :
ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel"
-if test "x$ac_cv_func__finitel" = x""yes; then :
+if test "x$ac_cv_func__finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEL 1
_ACEOF
@@ -72202,7 +72362,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5
$as_echo_n "checking for at_quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_at_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72246,7 +72406,7 @@ $as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; }
for ac_func in at_quick_exit
do :
ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit"
-if test "x$ac_cv_func_at_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_at_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_AT_QUICK_EXIT 1
_ACEOF
@@ -72260,7 +72420,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5
$as_echo_n "checking for quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72304,7 +72464,7 @@ $as_echo "$glibcxx_cv_func_quick_exit_use" >&6; }
for ac_func in quick_exit
do :
ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit"
-if test "x$ac_cv_func_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QUICK_EXIT 1
_ACEOF
@@ -72318,7 +72478,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5
$as_echo_n "checking for strtold declaration... " >&6; }
if test x${glibcxx_cv_func_strtold_use+set} != xset; then
- if test "${glibcxx_cv_func_strtold_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtold_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72362,7 +72522,7 @@ $as_echo "$glibcxx_cv_func_strtold_use" >&6; }
for ac_func in strtold
do :
ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold"
-if test "x$ac_cv_func_strtold" = x""yes; then :
+if test "x$ac_cv_func_strtold" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
@@ -72378,7 +72538,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5
$as_echo_n "checking for strtof declaration... " >&6; }
if test x${glibcxx_cv_func_strtof_use+set} != xset; then
- if test "${glibcxx_cv_func_strtof_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtof_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72422,7 +72582,7 @@ $as_echo "$glibcxx_cv_func_strtof_use" >&6; }
for ac_func in strtof
do :
ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof"
-if test "x$ac_cv_func_strtof" = x""yes; then :
+if test "x$ac_cv_func_strtof" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOF 1
_ACEOF
@@ -72483,13 +72643,13 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5
$as_echo_n "checking for sin in -lm... " >&6; }
-if test "${ac_cv_lib_m_sin+set}" = set; then :
+if ${ac_cv_lib_m_sin+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -72520,7 +72680,7 @@ LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5
$as_echo "$ac_cv_lib_m_sin" >&6; }
-if test "x$ac_cv_lib_m_sin" = x""yes; then :
+if test "x$ac_cv_lib_m_sin" = xyes; then :
libm="-lm"
fi
@@ -72532,7 +72692,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5
$as_echo_n "checking for isinf declaration... " >&6; }
if test x${glibcxx_cv_func_isinf_use+set} != xset; then
- if test "${glibcxx_cv_func_isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72581,7 +72741,7 @@ $as_echo "$glibcxx_cv_func_isinf_use" >&6; }
for ac_func in isinf
do :
ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf"
-if test "x$ac_cv_func_isinf" = x""yes; then :
+if test "x$ac_cv_func_isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINF 1
_ACEOF
@@ -72594,7 +72754,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5
$as_echo_n "checking for _isinf declaration... " >&6; }
if test x${glibcxx_cv_func__isinf_use+set} != xset; then
- if test "${glibcxx_cv_func__isinf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72643,7 +72803,7 @@ $as_echo "$glibcxx_cv_func__isinf_use" >&6; }
for ac_func in _isinf
do :
ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf"
-if test "x$ac_cv_func__isinf" = x""yes; then :
+if test "x$ac_cv_func__isinf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINF 1
_ACEOF
@@ -72661,7 +72821,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5
$as_echo_n "checking for isnan declaration... " >&6; }
if test x${glibcxx_cv_func_isnan_use+set} != xset; then
- if test "${glibcxx_cv_func_isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72710,7 +72870,7 @@ $as_echo "$glibcxx_cv_func_isnan_use" >&6; }
for ac_func in isnan
do :
ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan"
-if test "x$ac_cv_func_isnan" = x""yes; then :
+if test "x$ac_cv_func_isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNAN 1
_ACEOF
@@ -72723,7 +72883,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5
$as_echo_n "checking for _isnan declaration... " >&6; }
if test x${glibcxx_cv_func__isnan_use+set} != xset; then
- if test "${glibcxx_cv_func__isnan_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnan_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72772,7 +72932,7 @@ $as_echo "$glibcxx_cv_func__isnan_use" >&6; }
for ac_func in _isnan
do :
ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan"
-if test "x$ac_cv_func__isnan" = x""yes; then :
+if test "x$ac_cv_func__isnan" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNAN 1
_ACEOF
@@ -72790,7 +72950,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5
$as_echo_n "checking for finite declaration... " >&6; }
if test x${glibcxx_cv_func_finite_use+set} != xset; then
- if test "${glibcxx_cv_func_finite_use+set}" = set; then :
+ if ${glibcxx_cv_func_finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72839,7 +72999,7 @@ $as_echo "$glibcxx_cv_func_finite_use" >&6; }
for ac_func in finite
do :
ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite"
-if test "x$ac_cv_func_finite" = x""yes; then :
+if test "x$ac_cv_func_finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITE 1
_ACEOF
@@ -72852,7 +73012,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5
$as_echo_n "checking for _finite declaration... " >&6; }
if test x${glibcxx_cv_func__finite_use+set} != xset; then
- if test "${glibcxx_cv_func__finite_use+set}" = set; then :
+ if ${glibcxx_cv_func__finite_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72901,7 +73061,7 @@ $as_echo "$glibcxx_cv_func__finite_use" >&6; }
for ac_func in _finite
do :
ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite"
-if test "x$ac_cv_func__finite" = x""yes; then :
+if test "x$ac_cv_func__finite" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITE 1
_ACEOF
@@ -72919,7 +73079,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5
$as_echo_n "checking for sincos declaration... " >&6; }
if test x${glibcxx_cv_func_sincos_use+set} != xset; then
- if test "${glibcxx_cv_func_sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -72964,7 +73124,7 @@ $as_echo "$glibcxx_cv_func_sincos_use" >&6; }
for ac_func in sincos
do :
ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos"
-if test "x$ac_cv_func_sincos" = x""yes; then :
+if test "x$ac_cv_func_sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOS 1
_ACEOF
@@ -72977,7 +73137,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5
$as_echo_n "checking for _sincos declaration... " >&6; }
if test x${glibcxx_cv_func__sincos_use+set} != xset; then
- if test "${glibcxx_cv_func__sincos_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincos_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73022,7 +73182,7 @@ $as_echo "$glibcxx_cv_func__sincos_use" >&6; }
for ac_func in _sincos
do :
ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos"
-if test "x$ac_cv_func__sincos" = x""yes; then :
+if test "x$ac_cv_func__sincos" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOS 1
_ACEOF
@@ -73040,7 +73200,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5
$as_echo_n "checking for fpclass declaration... " >&6; }
if test x${glibcxx_cv_func_fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73089,7 +73249,7 @@ $as_echo "$glibcxx_cv_func_fpclass_use" >&6; }
for ac_func in fpclass
do :
ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass"
-if test "x$ac_cv_func_fpclass" = x""yes; then :
+if test "x$ac_cv_func_fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FPCLASS 1
_ACEOF
@@ -73102,7 +73262,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5
$as_echo_n "checking for _fpclass declaration... " >&6; }
if test x${glibcxx_cv_func__fpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__fpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__fpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73151,7 +73311,7 @@ $as_echo "$glibcxx_cv_func__fpclass_use" >&6; }
for ac_func in _fpclass
do :
ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass"
-if test "x$ac_cv_func__fpclass" = x""yes; then :
+if test "x$ac_cv_func__fpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FPCLASS 1
_ACEOF
@@ -73169,7 +73329,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5
$as_echo_n "checking for qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func_qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func_qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73218,7 +73378,7 @@ $as_echo "$glibcxx_cv_func_qfpclass_use" >&6; }
for ac_func in qfpclass
do :
ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass"
-if test "x$ac_cv_func_qfpclass" = x""yes; then :
+if test "x$ac_cv_func_qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QFPCLASS 1
_ACEOF
@@ -73231,7 +73391,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5
$as_echo_n "checking for _qfpclass declaration... " >&6; }
if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then
- if test "${glibcxx_cv_func__qfpclass_use+set}" = set; then :
+ if ${glibcxx_cv_func__qfpclass_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73280,7 +73440,7 @@ $as_echo "$glibcxx_cv_func__qfpclass_use" >&6; }
for ac_func in _qfpclass
do :
ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass"
-if test "x$ac_cv_func__qfpclass" = x""yes; then :
+if test "x$ac_cv_func__qfpclass" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__QFPCLASS 1
_ACEOF
@@ -73298,7 +73458,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5
$as_echo_n "checking for hypot declaration... " >&6; }
if test x${glibcxx_cv_func_hypot_use+set} != xset; then
- if test "${glibcxx_cv_func_hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73343,7 +73503,7 @@ $as_echo "$glibcxx_cv_func_hypot_use" >&6; }
for ac_func in hypot
do :
ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot"
-if test "x$ac_cv_func_hypot" = x""yes; then :
+if test "x$ac_cv_func_hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOT 1
_ACEOF
@@ -73356,7 +73516,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5
$as_echo_n "checking for _hypot declaration... " >&6; }
if test x${glibcxx_cv_func__hypot_use+set} != xset; then
- if test "${glibcxx_cv_func__hypot_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypot_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73401,7 +73561,7 @@ $as_echo "$glibcxx_cv_func__hypot_use" >&6; }
for ac_func in _hypot
do :
ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot"
-if test "x$ac_cv_func__hypot" = x""yes; then :
+if test "x$ac_cv_func__hypot" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOT 1
_ACEOF
@@ -73418,7 +73578,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5
$as_echo_n "checking for float trig functions... " >&6; }
- if test "${glibcxx_cv_func_float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73461,8 +73621,7 @@ $as_echo "$glibcxx_cv_func_float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -73473,7 +73632,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5
$as_echo_n "checking for _float trig functions... " >&6; }
- if test "${glibcxx_cv_func__float_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73516,8 +73675,7 @@ $as_echo "$glibcxx_cv_func__float_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -73534,7 +73692,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5
$as_echo_n "checking for float round functions... " >&6; }
- if test "${glibcxx_cv_func_float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73577,8 +73735,7 @@ $as_echo "$glibcxx_cv_func_float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -73589,7 +73746,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5
$as_echo_n "checking for _float round functions... " >&6; }
- if test "${glibcxx_cv_func__float_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__float_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73632,8 +73789,7 @@ $as_echo "$glibcxx_cv_func__float_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -73652,7 +73808,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5
$as_echo_n "checking for expf declaration... " >&6; }
if test x${glibcxx_cv_func_expf_use+set} != xset; then
- if test "${glibcxx_cv_func_expf_use+set}" = set; then :
+ if ${glibcxx_cv_func_expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73701,7 +73857,7 @@ $as_echo "$glibcxx_cv_func_expf_use" >&6; }
for ac_func in expf
do :
ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf"
-if test "x$ac_cv_func_expf" = x""yes; then :
+if test "x$ac_cv_func_expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPF 1
_ACEOF
@@ -73714,7 +73870,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5
$as_echo_n "checking for _expf declaration... " >&6; }
if test x${glibcxx_cv_func__expf_use+set} != xset; then
- if test "${glibcxx_cv_func__expf_use+set}" = set; then :
+ if ${glibcxx_cv_func__expf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73763,7 +73919,7 @@ $as_echo "$glibcxx_cv_func__expf_use" >&6; }
for ac_func in _expf
do :
ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf"
-if test "x$ac_cv_func__expf" = x""yes; then :
+if test "x$ac_cv_func__expf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPF 1
_ACEOF
@@ -73781,7 +73937,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5
$as_echo_n "checking for isnanf declaration... " >&6; }
if test x${glibcxx_cv_func_isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73830,7 +73986,7 @@ $as_echo "$glibcxx_cv_func_isnanf_use" >&6; }
for ac_func in isnanf
do :
ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf"
-if test "x$ac_cv_func_isnanf" = x""yes; then :
+if test "x$ac_cv_func_isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANF 1
_ACEOF
@@ -73843,7 +73999,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5
$as_echo_n "checking for _isnanf declaration... " >&6; }
if test x${glibcxx_cv_func__isnanf_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanf_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73892,7 +74048,7 @@ $as_echo "$glibcxx_cv_func__isnanf_use" >&6; }
for ac_func in _isnanf
do :
ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf"
-if test "x$ac_cv_func__isnanf" = x""yes; then :
+if test "x$ac_cv_func__isnanf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANF 1
_ACEOF
@@ -73910,7 +74066,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5
$as_echo_n "checking for isinff declaration... " >&6; }
if test x${glibcxx_cv_func_isinff_use+set} != xset; then
- if test "${glibcxx_cv_func_isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -73959,7 +74115,7 @@ $as_echo "$glibcxx_cv_func_isinff_use" >&6; }
for ac_func in isinff
do :
ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff"
-if test "x$ac_cv_func_isinff" = x""yes; then :
+if test "x$ac_cv_func_isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFF 1
_ACEOF
@@ -73972,7 +74128,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5
$as_echo_n "checking for _isinff declaration... " >&6; }
if test x${glibcxx_cv_func__isinff_use+set} != xset; then
- if test "${glibcxx_cv_func__isinff_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74021,7 +74177,7 @@ $as_echo "$glibcxx_cv_func__isinff_use" >&6; }
for ac_func in _isinff
do :
ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff"
-if test "x$ac_cv_func__isinff" = x""yes; then :
+if test "x$ac_cv_func__isinff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFF 1
_ACEOF
@@ -74039,7 +74195,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5
$as_echo_n "checking for atan2f declaration... " >&6; }
if test x${glibcxx_cv_func_atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74084,7 +74240,7 @@ $as_echo "$glibcxx_cv_func_atan2f_use" >&6; }
for ac_func in atan2f
do :
ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f"
-if test "x$ac_cv_func_atan2f" = x""yes; then :
+if test "x$ac_cv_func_atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2F 1
_ACEOF
@@ -74097,7 +74253,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5
$as_echo_n "checking for _atan2f declaration... " >&6; }
if test x${glibcxx_cv_func__atan2f_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2f_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74142,7 +74298,7 @@ $as_echo "$glibcxx_cv_func__atan2f_use" >&6; }
for ac_func in _atan2f
do :
ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f"
-if test "x$ac_cv_func__atan2f" = x""yes; then :
+if test "x$ac_cv_func__atan2f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2F 1
_ACEOF
@@ -74160,7 +74316,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5
$as_echo_n "checking for fabsf declaration... " >&6; }
if test x${glibcxx_cv_func_fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74209,7 +74365,7 @@ $as_echo "$glibcxx_cv_func_fabsf_use" >&6; }
for ac_func in fabsf
do :
ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf"
-if test "x$ac_cv_func_fabsf" = x""yes; then :
+if test "x$ac_cv_func_fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSF 1
_ACEOF
@@ -74222,7 +74378,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5
$as_echo_n "checking for _fabsf declaration... " >&6; }
if test x${glibcxx_cv_func__fabsf_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74271,7 +74427,7 @@ $as_echo "$glibcxx_cv_func__fabsf_use" >&6; }
for ac_func in _fabsf
do :
ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf"
-if test "x$ac_cv_func__fabsf" = x""yes; then :
+if test "x$ac_cv_func__fabsf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSF 1
_ACEOF
@@ -74289,7 +74445,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5
$as_echo_n "checking for fmodf declaration... " >&6; }
if test x${glibcxx_cv_func_fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74334,7 +74490,7 @@ $as_echo "$glibcxx_cv_func_fmodf_use" >&6; }
for ac_func in fmodf
do :
ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf"
-if test "x$ac_cv_func_fmodf" = x""yes; then :
+if test "x$ac_cv_func_fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODF 1
_ACEOF
@@ -74347,7 +74503,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5
$as_echo_n "checking for _fmodf declaration... " >&6; }
if test x${glibcxx_cv_func__fmodf_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodf_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74392,7 +74548,7 @@ $as_echo "$glibcxx_cv_func__fmodf_use" >&6; }
for ac_func in _fmodf
do :
ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf"
-if test "x$ac_cv_func__fmodf" = x""yes; then :
+if test "x$ac_cv_func__fmodf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODF 1
_ACEOF
@@ -74410,7 +74566,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5
$as_echo_n "checking for frexpf declaration... " >&6; }
if test x${glibcxx_cv_func_frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74455,7 +74611,7 @@ $as_echo "$glibcxx_cv_func_frexpf_use" >&6; }
for ac_func in frexpf
do :
ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf"
-if test "x$ac_cv_func_frexpf" = x""yes; then :
+if test "x$ac_cv_func_frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPF 1
_ACEOF
@@ -74468,7 +74624,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5
$as_echo_n "checking for _frexpf declaration... " >&6; }
if test x${glibcxx_cv_func__frexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74513,7 +74669,7 @@ $as_echo "$glibcxx_cv_func__frexpf_use" >&6; }
for ac_func in _frexpf
do :
ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf"
-if test "x$ac_cv_func__frexpf" = x""yes; then :
+if test "x$ac_cv_func__frexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPF 1
_ACEOF
@@ -74531,7 +74687,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5
$as_echo_n "checking for hypotf declaration... " >&6; }
if test x${glibcxx_cv_func_hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74576,7 +74732,7 @@ $as_echo "$glibcxx_cv_func_hypotf_use" >&6; }
for ac_func in hypotf
do :
ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf"
-if test "x$ac_cv_func_hypotf" = x""yes; then :
+if test "x$ac_cv_func_hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTF 1
_ACEOF
@@ -74589,7 +74745,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5
$as_echo_n "checking for _hypotf declaration... " >&6; }
if test x${glibcxx_cv_func__hypotf_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotf_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74634,7 +74790,7 @@ $as_echo "$glibcxx_cv_func__hypotf_use" >&6; }
for ac_func in _hypotf
do :
ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf"
-if test "x$ac_cv_func__hypotf" = x""yes; then :
+if test "x$ac_cv_func__hypotf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTF 1
_ACEOF
@@ -74652,7 +74808,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5
$as_echo_n "checking for ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74697,7 +74853,7 @@ $as_echo "$glibcxx_cv_func_ldexpf_use" >&6; }
for ac_func in ldexpf
do :
ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf"
-if test "x$ac_cv_func_ldexpf" = x""yes; then :
+if test "x$ac_cv_func_ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPF 1
_ACEOF
@@ -74710,7 +74866,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5
$as_echo_n "checking for _ldexpf declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpf_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74755,7 +74911,7 @@ $as_echo "$glibcxx_cv_func__ldexpf_use" >&6; }
for ac_func in _ldexpf
do :
ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf"
-if test "x$ac_cv_func__ldexpf" = x""yes; then :
+if test "x$ac_cv_func__ldexpf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPF 1
_ACEOF
@@ -74773,7 +74929,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5
$as_echo_n "checking for logf declaration... " >&6; }
if test x${glibcxx_cv_func_logf_use+set} != xset; then
- if test "${glibcxx_cv_func_logf_use+set}" = set; then :
+ if ${glibcxx_cv_func_logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74822,7 +74978,7 @@ $as_echo "$glibcxx_cv_func_logf_use" >&6; }
for ac_func in logf
do :
ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf"
-if test "x$ac_cv_func_logf" = x""yes; then :
+if test "x$ac_cv_func_logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGF 1
_ACEOF
@@ -74835,7 +74991,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5
$as_echo_n "checking for _logf declaration... " >&6; }
if test x${glibcxx_cv_func__logf_use+set} != xset; then
- if test "${glibcxx_cv_func__logf_use+set}" = set; then :
+ if ${glibcxx_cv_func__logf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74884,7 +75040,7 @@ $as_echo "$glibcxx_cv_func__logf_use" >&6; }
for ac_func in _logf
do :
ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf"
-if test "x$ac_cv_func__logf" = x""yes; then :
+if test "x$ac_cv_func__logf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGF 1
_ACEOF
@@ -74902,7 +75058,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5
$as_echo_n "checking for log10f declaration... " >&6; }
if test x${glibcxx_cv_func_log10f_use+set} != xset; then
- if test "${glibcxx_cv_func_log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -74951,7 +75107,7 @@ $as_echo "$glibcxx_cv_func_log10f_use" >&6; }
for ac_func in log10f
do :
ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f"
-if test "x$ac_cv_func_log10f" = x""yes; then :
+if test "x$ac_cv_func_log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10F 1
_ACEOF
@@ -74964,7 +75120,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5
$as_echo_n "checking for _log10f declaration... " >&6; }
if test x${glibcxx_cv_func__log10f_use+set} != xset; then
- if test "${glibcxx_cv_func__log10f_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10f_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75013,7 +75169,7 @@ $as_echo "$glibcxx_cv_func__log10f_use" >&6; }
for ac_func in _log10f
do :
ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f"
-if test "x$ac_cv_func__log10f" = x""yes; then :
+if test "x$ac_cv_func__log10f" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10F 1
_ACEOF
@@ -75031,7 +75187,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5
$as_echo_n "checking for modff declaration... " >&6; }
if test x${glibcxx_cv_func_modff_use+set} != xset; then
- if test "${glibcxx_cv_func_modff_use+set}" = set; then :
+ if ${glibcxx_cv_func_modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75076,7 +75232,7 @@ $as_echo "$glibcxx_cv_func_modff_use" >&6; }
for ac_func in modff
do :
ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff"
-if test "x$ac_cv_func_modff" = x""yes; then :
+if test "x$ac_cv_func_modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFF 1
_ACEOF
@@ -75089,7 +75245,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5
$as_echo_n "checking for _modff declaration... " >&6; }
if test x${glibcxx_cv_func__modff_use+set} != xset; then
- if test "${glibcxx_cv_func__modff_use+set}" = set; then :
+ if ${glibcxx_cv_func__modff_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75134,7 +75290,7 @@ $as_echo "$glibcxx_cv_func__modff_use" >&6; }
for ac_func in _modff
do :
ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff"
-if test "x$ac_cv_func__modff" = x""yes; then :
+if test "x$ac_cv_func__modff" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFF 1
_ACEOF
@@ -75152,7 +75308,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5
$as_echo_n "checking for modf declaration... " >&6; }
if test x${glibcxx_cv_func_modf_use+set} != xset; then
- if test "${glibcxx_cv_func_modf_use+set}" = set; then :
+ if ${glibcxx_cv_func_modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75197,7 +75353,7 @@ $as_echo "$glibcxx_cv_func_modf_use" >&6; }
for ac_func in modf
do :
ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf"
-if test "x$ac_cv_func_modf" = x""yes; then :
+if test "x$ac_cv_func_modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODF 1
_ACEOF
@@ -75210,7 +75366,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5
$as_echo_n "checking for _modf declaration... " >&6; }
if test x${glibcxx_cv_func__modf_use+set} != xset; then
- if test "${glibcxx_cv_func__modf_use+set}" = set; then :
+ if ${glibcxx_cv_func__modf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75255,7 +75411,7 @@ $as_echo "$glibcxx_cv_func__modf_use" >&6; }
for ac_func in _modf
do :
ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf"
-if test "x$ac_cv_func__modf" = x""yes; then :
+if test "x$ac_cv_func__modf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODF 1
_ACEOF
@@ -75273,7 +75429,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5
$as_echo_n "checking for powf declaration... " >&6; }
if test x${glibcxx_cv_func_powf_use+set} != xset; then
- if test "${glibcxx_cv_func_powf_use+set}" = set; then :
+ if ${glibcxx_cv_func_powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75318,7 +75474,7 @@ $as_echo "$glibcxx_cv_func_powf_use" >&6; }
for ac_func in powf
do :
ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf"
-if test "x$ac_cv_func_powf" = x""yes; then :
+if test "x$ac_cv_func_powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWF 1
_ACEOF
@@ -75331,7 +75487,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5
$as_echo_n "checking for _powf declaration... " >&6; }
if test x${glibcxx_cv_func__powf_use+set} != xset; then
- if test "${glibcxx_cv_func__powf_use+set}" = set; then :
+ if ${glibcxx_cv_func__powf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75376,7 +75532,7 @@ $as_echo "$glibcxx_cv_func__powf_use" >&6; }
for ac_func in _powf
do :
ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf"
-if test "x$ac_cv_func__powf" = x""yes; then :
+if test "x$ac_cv_func__powf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWF 1
_ACEOF
@@ -75394,7 +75550,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5
$as_echo_n "checking for sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75443,7 +75599,7 @@ $as_echo "$glibcxx_cv_func_sqrtf_use" >&6; }
for ac_func in sqrtf
do :
ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf"
-if test "x$ac_cv_func_sqrtf" = x""yes; then :
+if test "x$ac_cv_func_sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTF 1
_ACEOF
@@ -75456,7 +75612,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5
$as_echo_n "checking for _sqrtf declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75505,7 +75661,7 @@ $as_echo "$glibcxx_cv_func__sqrtf_use" >&6; }
for ac_func in _sqrtf
do :
ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf"
-if test "x$ac_cv_func__sqrtf" = x""yes; then :
+if test "x$ac_cv_func__sqrtf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTF 1
_ACEOF
@@ -75523,7 +75679,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5
$as_echo_n "checking for sincosf declaration... " >&6; }
if test x${glibcxx_cv_func_sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75568,7 +75724,7 @@ $as_echo "$glibcxx_cv_func_sincosf_use" >&6; }
for ac_func in sincosf
do :
ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf"
-if test "x$ac_cv_func_sincosf" = x""yes; then :
+if test "x$ac_cv_func_sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSF 1
_ACEOF
@@ -75581,7 +75737,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5
$as_echo_n "checking for _sincosf declaration... " >&6; }
if test x${glibcxx_cv_func__sincosf_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosf_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosf_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75626,7 +75782,7 @@ $as_echo "$glibcxx_cv_func__sincosf_use" >&6; }
for ac_func in _sincosf
do :
ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf"
-if test "x$ac_cv_func__sincosf" = x""yes; then :
+if test "x$ac_cv_func__sincosf" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSF 1
_ACEOF
@@ -75644,7 +75800,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5
$as_echo_n "checking for finitef declaration... " >&6; }
if test x${glibcxx_cv_func_finitef_use+set} != xset; then
- if test "${glibcxx_cv_func_finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75693,7 +75849,7 @@ $as_echo "$glibcxx_cv_func_finitef_use" >&6; }
for ac_func in finitef
do :
ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef"
-if test "x$ac_cv_func_finitef" = x""yes; then :
+if test "x$ac_cv_func_finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEF 1
_ACEOF
@@ -75706,7 +75862,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5
$as_echo_n "checking for _finitef declaration... " >&6; }
if test x${glibcxx_cv_func__finitef_use+set} != xset; then
- if test "${glibcxx_cv_func__finitef_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitef_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75755,7 +75911,7 @@ $as_echo "$glibcxx_cv_func__finitef_use" >&6; }
for ac_func in _finitef
do :
ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef"
-if test "x$ac_cv_func__finitef" = x""yes; then :
+if test "x$ac_cv_func__finitef" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEF 1
_ACEOF
@@ -75772,7 +75928,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5
$as_echo_n "checking for long double trig functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75815,8 +75971,7 @@ $as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -75827,7 +75982,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5
$as_echo_n "checking for _long double trig functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_trig_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75870,8 +76025,7 @@ $as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -75888,7 +76042,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5
$as_echo_n "checking for long double round functions... " >&6; }
- if test "${glibcxx_cv_func_long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func_long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75931,8 +76085,7 @@ $as_echo "$glibcxx_cv_func_long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -75943,7 +76096,7 @@ done
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5
$as_echo_n "checking for _long double round functions... " >&6; }
- if test "${glibcxx_cv_func__long_double_round_use+set}" = set; then :
+ if ${glibcxx_cv_func__long_double_round_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -75986,8 +76139,7 @@ $as_echo "$glibcxx_cv_func__long_double_round_use" >&6; }
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-eval as_val=\$$as_ac_var
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
@@ -76006,7 +76158,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5
$as_echo_n "checking for isnanl declaration... " >&6; }
if test x${glibcxx_cv_func_isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func_isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76055,7 +76207,7 @@ $as_echo "$glibcxx_cv_func_isnanl_use" >&6; }
for ac_func in isnanl
do :
ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl"
-if test "x$ac_cv_func_isnanl" = x""yes; then :
+if test "x$ac_cv_func_isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISNANL 1
_ACEOF
@@ -76068,7 +76220,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5
$as_echo_n "checking for _isnanl declaration... " >&6; }
if test x${glibcxx_cv_func__isnanl_use+set} != xset; then
- if test "${glibcxx_cv_func__isnanl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isnanl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76117,7 +76269,7 @@ $as_echo "$glibcxx_cv_func__isnanl_use" >&6; }
for ac_func in _isnanl
do :
ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl"
-if test "x$ac_cv_func__isnanl" = x""yes; then :
+if test "x$ac_cv_func__isnanl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISNANL 1
_ACEOF
@@ -76135,7 +76287,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5
$as_echo_n "checking for isinfl declaration... " >&6; }
if test x${glibcxx_cv_func_isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func_isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76184,7 +76336,7 @@ $as_echo "$glibcxx_cv_func_isinfl_use" >&6; }
for ac_func in isinfl
do :
ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl"
-if test "x$ac_cv_func_isinfl" = x""yes; then :
+if test "x$ac_cv_func_isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ISINFL 1
_ACEOF
@@ -76197,7 +76349,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5
$as_echo_n "checking for _isinfl declaration... " >&6; }
if test x${glibcxx_cv_func__isinfl_use+set} != xset; then
- if test "${glibcxx_cv_func__isinfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__isinfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76246,7 +76398,7 @@ $as_echo "$glibcxx_cv_func__isinfl_use" >&6; }
for ac_func in _isinfl
do :
ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl"
-if test "x$ac_cv_func__isinfl" = x""yes; then :
+if test "x$ac_cv_func__isinfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ISINFL 1
_ACEOF
@@ -76264,7 +76416,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5
$as_echo_n "checking for atan2l declaration... " >&6; }
if test x${glibcxx_cv_func_atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func_atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func_atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76309,7 +76461,7 @@ $as_echo "$glibcxx_cv_func_atan2l_use" >&6; }
for ac_func in atan2l
do :
ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l"
-if test "x$ac_cv_func_atan2l" = x""yes; then :
+if test "x$ac_cv_func_atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
_ACEOF
@@ -76322,7 +76474,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5
$as_echo_n "checking for _atan2l declaration... " >&6; }
if test x${glibcxx_cv_func__atan2l_use+set} != xset; then
- if test "${glibcxx_cv_func__atan2l_use+set}" = set; then :
+ if ${glibcxx_cv_func__atan2l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76367,7 +76519,7 @@ $as_echo "$glibcxx_cv_func__atan2l_use" >&6; }
for ac_func in _atan2l
do :
ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l"
-if test "x$ac_cv_func__atan2l" = x""yes; then :
+if test "x$ac_cv_func__atan2l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__ATAN2L 1
_ACEOF
@@ -76385,7 +76537,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5
$as_echo_n "checking for expl declaration... " >&6; }
if test x${glibcxx_cv_func_expl_use+set} != xset; then
- if test "${glibcxx_cv_func_expl_use+set}" = set; then :
+ if ${glibcxx_cv_func_expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76434,7 +76586,7 @@ $as_echo "$glibcxx_cv_func_expl_use" >&6; }
for ac_func in expl
do :
ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl"
-if test "x$ac_cv_func_expl" = x""yes; then :
+if test "x$ac_cv_func_expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
_ACEOF
@@ -76447,7 +76599,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5
$as_echo_n "checking for _expl declaration... " >&6; }
if test x${glibcxx_cv_func__expl_use+set} != xset; then
- if test "${glibcxx_cv_func__expl_use+set}" = set; then :
+ if ${glibcxx_cv_func__expl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76496,7 +76648,7 @@ $as_echo "$glibcxx_cv_func__expl_use" >&6; }
for ac_func in _expl
do :
ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl"
-if test "x$ac_cv_func__expl" = x""yes; then :
+if test "x$ac_cv_func__expl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__EXPL 1
_ACEOF
@@ -76514,7 +76666,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5
$as_echo_n "checking for fabsl declaration... " >&6; }
if test x${glibcxx_cv_func_fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func_fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76563,7 +76715,7 @@ $as_echo "$glibcxx_cv_func_fabsl_use" >&6; }
for ac_func in fabsl
do :
ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl"
-if test "x$ac_cv_func_fabsl" = x""yes; then :
+if test "x$ac_cv_func_fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FABSL 1
_ACEOF
@@ -76576,7 +76728,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5
$as_echo_n "checking for _fabsl declaration... " >&6; }
if test x${glibcxx_cv_func__fabsl_use+set} != xset; then
- if test "${glibcxx_cv_func__fabsl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fabsl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76625,7 +76777,7 @@ $as_echo "$glibcxx_cv_func__fabsl_use" >&6; }
for ac_func in _fabsl
do :
ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl"
-if test "x$ac_cv_func__fabsl" = x""yes; then :
+if test "x$ac_cv_func__fabsl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FABSL 1
_ACEOF
@@ -76643,7 +76795,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5
$as_echo_n "checking for fmodl declaration... " >&6; }
if test x${glibcxx_cv_func_fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func_fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func_fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76688,7 +76840,7 @@ $as_echo "$glibcxx_cv_func_fmodl_use" >&6; }
for ac_func in fmodl
do :
ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl"
-if test "x$ac_cv_func_fmodl" = x""yes; then :
+if test "x$ac_cv_func_fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
_ACEOF
@@ -76701,7 +76853,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5
$as_echo_n "checking for _fmodl declaration... " >&6; }
if test x${glibcxx_cv_func__fmodl_use+set} != xset; then
- if test "${glibcxx_cv_func__fmodl_use+set}" = set; then :
+ if ${glibcxx_cv_func__fmodl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76746,7 +76898,7 @@ $as_echo "$glibcxx_cv_func__fmodl_use" >&6; }
for ac_func in _fmodl
do :
ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl"
-if test "x$ac_cv_func__fmodl" = x""yes; then :
+if test "x$ac_cv_func__fmodl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FMODL 1
_ACEOF
@@ -76764,7 +76916,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5
$as_echo_n "checking for frexpl declaration... " >&6; }
if test x${glibcxx_cv_func_frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76809,7 +76961,7 @@ $as_echo "$glibcxx_cv_func_frexpl_use" >&6; }
for ac_func in frexpl
do :
ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl"
-if test "x$ac_cv_func_frexpl" = x""yes; then :
+if test "x$ac_cv_func_frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FREXPL 1
_ACEOF
@@ -76822,7 +76974,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5
$as_echo_n "checking for _frexpl declaration... " >&6; }
if test x${glibcxx_cv_func__frexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__frexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__frexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76867,7 +77019,7 @@ $as_echo "$glibcxx_cv_func__frexpl_use" >&6; }
for ac_func in _frexpl
do :
ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl"
-if test "x$ac_cv_func__frexpl" = x""yes; then :
+if test "x$ac_cv_func__frexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FREXPL 1
_ACEOF
@@ -76885,7 +77037,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5
$as_echo_n "checking for hypotl declaration... " >&6; }
if test x${glibcxx_cv_func_hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func_hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func_hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76930,7 +77082,7 @@ $as_echo "$glibcxx_cv_func_hypotl_use" >&6; }
for ac_func in hypotl
do :
ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl"
-if test "x$ac_cv_func_hypotl" = x""yes; then :
+if test "x$ac_cv_func_hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_HYPOTL 1
_ACEOF
@@ -76943,7 +77095,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5
$as_echo_n "checking for _hypotl declaration... " >&6; }
if test x${glibcxx_cv_func__hypotl_use+set} != xset; then
- if test "${glibcxx_cv_func__hypotl_use+set}" = set; then :
+ if ${glibcxx_cv_func__hypotl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -76988,7 +77140,7 @@ $as_echo "$glibcxx_cv_func__hypotl_use" >&6; }
for ac_func in _hypotl
do :
ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl"
-if test "x$ac_cv_func__hypotl" = x""yes; then :
+if test "x$ac_cv_func__hypotl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__HYPOTL 1
_ACEOF
@@ -77006,7 +77158,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5
$as_echo_n "checking for ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func_ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func_ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77051,7 +77203,7 @@ $as_echo "$glibcxx_cv_func_ldexpl_use" >&6; }
for ac_func in ldexpl
do :
ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl"
-if test "x$ac_cv_func_ldexpl" = x""yes; then :
+if test "x$ac_cv_func_ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LDEXPL 1
_ACEOF
@@ -77064,7 +77216,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5
$as_echo_n "checking for _ldexpl declaration... " >&6; }
if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then
- if test "${glibcxx_cv_func__ldexpl_use+set}" = set; then :
+ if ${glibcxx_cv_func__ldexpl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77109,7 +77261,7 @@ $as_echo "$glibcxx_cv_func__ldexpl_use" >&6; }
for ac_func in _ldexpl
do :
ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl"
-if test "x$ac_cv_func__ldexpl" = x""yes; then :
+if test "x$ac_cv_func__ldexpl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LDEXPL 1
_ACEOF
@@ -77127,7 +77279,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5
$as_echo_n "checking for logl declaration... " >&6; }
if test x${glibcxx_cv_func_logl_use+set} != xset; then
- if test "${glibcxx_cv_func_logl_use+set}" = set; then :
+ if ${glibcxx_cv_func_logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77176,7 +77328,7 @@ $as_echo "$glibcxx_cv_func_logl_use" >&6; }
for ac_func in logl
do :
ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl"
-if test "x$ac_cv_func_logl" = x""yes; then :
+if test "x$ac_cv_func_logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
_ACEOF
@@ -77189,7 +77341,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5
$as_echo_n "checking for _logl declaration... " >&6; }
if test x${glibcxx_cv_func__logl_use+set} != xset; then
- if test "${glibcxx_cv_func__logl_use+set}" = set; then :
+ if ${glibcxx_cv_func__logl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77238,7 +77390,7 @@ $as_echo "$glibcxx_cv_func__logl_use" >&6; }
for ac_func in _logl
do :
ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl"
-if test "x$ac_cv_func__logl" = x""yes; then :
+if test "x$ac_cv_func__logl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOGL 1
_ACEOF
@@ -77256,7 +77408,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5
$as_echo_n "checking for log10l declaration... " >&6; }
if test x${glibcxx_cv_func_log10l_use+set} != xset; then
- if test "${glibcxx_cv_func_log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func_log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77305,7 +77457,7 @@ $as_echo "$glibcxx_cv_func_log10l_use" >&6; }
for ac_func in log10l
do :
ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l"
-if test "x$ac_cv_func_log10l" = x""yes; then :
+if test "x$ac_cv_func_log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
_ACEOF
@@ -77318,7 +77470,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5
$as_echo_n "checking for _log10l declaration... " >&6; }
if test x${glibcxx_cv_func__log10l_use+set} != xset; then
- if test "${glibcxx_cv_func__log10l_use+set}" = set; then :
+ if ${glibcxx_cv_func__log10l_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77367,7 +77519,7 @@ $as_echo "$glibcxx_cv_func__log10l_use" >&6; }
for ac_func in _log10l
do :
ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l"
-if test "x$ac_cv_func__log10l" = x""yes; then :
+if test "x$ac_cv_func__log10l" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__LOG10L 1
_ACEOF
@@ -77385,7 +77537,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5
$as_echo_n "checking for modfl declaration... " >&6; }
if test x${glibcxx_cv_func_modfl_use+set} != xset; then
- if test "${glibcxx_cv_func_modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func_modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77430,7 +77582,7 @@ $as_echo "$glibcxx_cv_func_modfl_use" >&6; }
for ac_func in modfl
do :
ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl"
-if test "x$ac_cv_func_modfl" = x""yes; then :
+if test "x$ac_cv_func_modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_MODFL 1
_ACEOF
@@ -77443,7 +77595,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5
$as_echo_n "checking for _modfl declaration... " >&6; }
if test x${glibcxx_cv_func__modfl_use+set} != xset; then
- if test "${glibcxx_cv_func__modfl_use+set}" = set; then :
+ if ${glibcxx_cv_func__modfl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77488,7 +77640,7 @@ $as_echo "$glibcxx_cv_func__modfl_use" >&6; }
for ac_func in _modfl
do :
ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl"
-if test "x$ac_cv_func__modfl" = x""yes; then :
+if test "x$ac_cv_func__modfl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__MODFL 1
_ACEOF
@@ -77506,7 +77658,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5
$as_echo_n "checking for powl declaration... " >&6; }
if test x${glibcxx_cv_func_powl_use+set} != xset; then
- if test "${glibcxx_cv_func_powl_use+set}" = set; then :
+ if ${glibcxx_cv_func_powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77551,7 +77703,7 @@ $as_echo "$glibcxx_cv_func_powl_use" >&6; }
for ac_func in powl
do :
ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl"
-if test "x$ac_cv_func_powl" = x""yes; then :
+if test "x$ac_cv_func_powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
_ACEOF
@@ -77564,7 +77716,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5
$as_echo_n "checking for _powl declaration... " >&6; }
if test x${glibcxx_cv_func__powl_use+set} != xset; then
- if test "${glibcxx_cv_func__powl_use+set}" = set; then :
+ if ${glibcxx_cv_func__powl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77609,7 +77761,7 @@ $as_echo "$glibcxx_cv_func__powl_use" >&6; }
for ac_func in _powl
do :
ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl"
-if test "x$ac_cv_func__powl" = x""yes; then :
+if test "x$ac_cv_func__powl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__POWL 1
_ACEOF
@@ -77627,7 +77779,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5
$as_echo_n "checking for sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func_sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77676,7 +77828,7 @@ $as_echo "$glibcxx_cv_func_sqrtl_use" >&6; }
for ac_func in sqrtl
do :
ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl"
-if test "x$ac_cv_func_sqrtl" = x""yes; then :
+if test "x$ac_cv_func_sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
_ACEOF
@@ -77689,7 +77841,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5
$as_echo_n "checking for _sqrtl declaration... " >&6; }
if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then
- if test "${glibcxx_cv_func__sqrtl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sqrtl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77738,7 +77890,7 @@ $as_echo "$glibcxx_cv_func__sqrtl_use" >&6; }
for ac_func in _sqrtl
do :
ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl"
-if test "x$ac_cv_func__sqrtl" = x""yes; then :
+if test "x$ac_cv_func__sqrtl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SQRTL 1
_ACEOF
@@ -77756,7 +77908,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5
$as_echo_n "checking for sincosl declaration... " >&6; }
if test x${glibcxx_cv_func_sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func_sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func_sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77801,7 +77953,7 @@ $as_echo "$glibcxx_cv_func_sincosl_use" >&6; }
for ac_func in sincosl
do :
ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl"
-if test "x$ac_cv_func_sincosl" = x""yes; then :
+if test "x$ac_cv_func_sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SINCOSL 1
_ACEOF
@@ -77814,7 +77966,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5
$as_echo_n "checking for _sincosl declaration... " >&6; }
if test x${glibcxx_cv_func__sincosl_use+set} != xset; then
- if test "${glibcxx_cv_func__sincosl_use+set}" = set; then :
+ if ${glibcxx_cv_func__sincosl_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77859,7 +78011,7 @@ $as_echo "$glibcxx_cv_func__sincosl_use" >&6; }
for ac_func in _sincosl
do :
ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl"
-if test "x$ac_cv_func__sincosl" = x""yes; then :
+if test "x$ac_cv_func__sincosl" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__SINCOSL 1
_ACEOF
@@ -77877,7 +78029,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5
$as_echo_n "checking for finitel declaration... " >&6; }
if test x${glibcxx_cv_func_finitel_use+set} != xset; then
- if test "${glibcxx_cv_func_finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func_finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77926,7 +78078,7 @@ $as_echo "$glibcxx_cv_func_finitel_use" >&6; }
for ac_func in finitel
do :
ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel"
-if test "x$ac_cv_func_finitel" = x""yes; then :
+if test "x$ac_cv_func_finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_FINITEL 1
_ACEOF
@@ -77939,7 +78091,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5
$as_echo_n "checking for _finitel declaration... " >&6; }
if test x${glibcxx_cv_func__finitel_use+set} != xset; then
- if test "${glibcxx_cv_func__finitel_use+set}" = set; then :
+ if ${glibcxx_cv_func__finitel_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -77988,7 +78140,7 @@ $as_echo "$glibcxx_cv_func__finitel_use" >&6; }
for ac_func in _finitel
do :
ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel"
-if test "x$ac_cv_func__finitel" = x""yes; then :
+if test "x$ac_cv_func__finitel" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE__FINITEL 1
_ACEOF
@@ -78014,7 +78166,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5
$as_echo_n "checking for at_quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_at_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -78058,7 +78210,7 @@ $as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; }
for ac_func in at_quick_exit
do :
ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit"
-if test "x$ac_cv_func_at_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_at_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_AT_QUICK_EXIT 1
_ACEOF
@@ -78072,7 +78224,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5
$as_echo_n "checking for quick_exit declaration... " >&6; }
if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then
- if test "${glibcxx_cv_func_quick_exit_use+set}" = set; then :
+ if ${glibcxx_cv_func_quick_exit_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -78116,7 +78268,7 @@ $as_echo "$glibcxx_cv_func_quick_exit_use" >&6; }
for ac_func in quick_exit
do :
ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit"
-if test "x$ac_cv_func_quick_exit" = x""yes; then :
+if test "x$ac_cv_func_quick_exit" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_QUICK_EXIT 1
_ACEOF
@@ -78130,7 +78282,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5
$as_echo_n "checking for strtold declaration... " >&6; }
if test x${glibcxx_cv_func_strtold_use+set} != xset; then
- if test "${glibcxx_cv_func_strtold_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtold_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -78174,7 +78326,7 @@ $as_echo "$glibcxx_cv_func_strtold_use" >&6; }
for ac_func in strtold
do :
ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold"
-if test "x$ac_cv_func_strtold" = x""yes; then :
+if test "x$ac_cv_func_strtold" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
@@ -78190,7 +78342,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5
$as_echo_n "checking for strtof declaration... " >&6; }
if test x${glibcxx_cv_func_strtof_use+set} != xset; then
- if test "${glibcxx_cv_func_strtof_use+set}" = set; then :
+ if ${glibcxx_cv_func_strtof_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -78234,7 +78386,7 @@ $as_echo "$glibcxx_cv_func_strtof_use" >&6; }
for ac_func in strtof
do :
ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof"
-if test "x$ac_cv_func_strtof" = x""yes; then :
+if test "x$ac_cv_func_strtof" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOF 1
_ACEOF
@@ -78293,7 +78445,7 @@ done
;;
*)
- as_fn_error "No support for this host/target combination." "$LINENO" 5
+ as_fn_error $? "No support for this host/target combination." "$LINENO" 5
;;
esac
@@ -78395,7 +78547,7 @@ if test "${enable_linux_futex+set}" = set; then :
enableval=$enable_linux_futex;
case "$enableval" in
yes|no|default) ;;
- *) as_fn_error "Unknown argument to enable/disable linux-futex" "$LINENO" 5 ;;
+ *) as_fn_error $? "Unknown argument to enable/disable linux-futex" "$LINENO" 5 ;;
esac
else
@@ -78415,7 +78567,7 @@ case "$target" in
# a warning.
enable_linux_futex=no
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -78433,7 +78585,7 @@ if ac_fn_c_try_link "$LINENO"; then :
save_LIBS="$LIBS"
LIBS="-lpthread $LIBS"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -78473,7 +78625,7 @@ rm -f core conftest.err conftest.$ac_objext \
;;
yes)
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -78490,7 +78642,7 @@ _ACEOF
if ac_fn_c_try_link "$LINENO"; then :
else
- as_fn_error "SYS_gettid and SYS_futex required for --enable-linux-futex" "$LINENO" 5
+ as_fn_error $? "SYS_gettid and SYS_futex required for --enable-linux-futex" "$LINENO" 5
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
@@ -78524,7 +78676,7 @@ for i in stdint.h $inttype_headers; do
ac_fn_c_check_type "$LINENO" "uintmax_t" "ac_cv_type_uintmax_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_uintmax_t" = x""yes; then :
+if test "x$ac_cv_type_uintmax_t" = xyes; then :
acx_cv_header_stdint=$i
else
continue
@@ -78533,7 +78685,7 @@ fi
ac_fn_c_check_type "$LINENO" "uintptr_t" "ac_cv_type_uintptr_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_uintptr_t" = x""yes; then :
+if test "x$ac_cv_type_uintptr_t" = xyes; then :
else
acx_cv_header_stdint_kind="(mostly complete)"
@@ -78542,7 +78694,7 @@ fi
ac_fn_c_check_type "$LINENO" "int_least32_t" "ac_cv_type_int_least32_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_int_least32_t" = x""yes; then :
+if test "x$ac_cv_type_int_least32_t" = xyes; then :
else
acx_cv_header_stdint_kind="(mostly complete)"
@@ -78551,7 +78703,7 @@ fi
ac_fn_c_check_type "$LINENO" "int_fast32_t" "ac_cv_type_int_fast32_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_int_fast32_t" = x""yes; then :
+if test "x$ac_cv_type_int_fast32_t" = xyes; then :
else
acx_cv_header_stdint_kind="(mostly complete)"
@@ -78560,7 +78712,7 @@ fi
ac_fn_c_check_type "$LINENO" "uint64_t" "ac_cv_type_uint64_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_uint64_t" = x""yes; then :
+if test "x$ac_cv_type_uint64_t" = xyes; then :
else
acx_cv_header_stdint_kind="(lacks uint64_t)"
@@ -78578,7 +78730,7 @@ if test "$acx_cv_header_stdint" = stddef.h; then
ac_fn_c_check_type "$LINENO" "uint32_t" "ac_cv_type_uint32_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_uint32_t" = x""yes; then :
+if test "x$ac_cv_type_uint32_t" = xyes; then :
acx_cv_header_stdint=$i
else
continue
@@ -78587,14 +78739,14 @@ fi
ac_fn_c_check_type "$LINENO" "uint64_t" "ac_cv_type_uint64_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_uint64_t" = x""yes; then :
+if test "x$ac_cv_type_uint64_t" = xyes; then :
fi
ac_fn_c_check_type "$LINENO" "uintptr_t" "ac_cv_type_uintptr_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_uintptr_t" = x""yes; then :
+if test "x$ac_cv_type_uintptr_t" = xyes; then :
fi
@@ -78610,7 +78762,7 @@ if test "$acx_cv_header_stdint" = stddef.h; then
ac_fn_c_check_type "$LINENO" "u_int32_t" "ac_cv_type_u_int32_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_u_int32_t" = x""yes; then :
+if test "x$ac_cv_type_u_int32_t" = xyes; then :
acx_cv_header_stdint=$i
else
continue
@@ -78619,7 +78771,7 @@ fi
ac_fn_c_check_type "$LINENO" "u_int64_t" "ac_cv_type_u_int64_t" "#include <sys/types.h>
#include <$i>
"
-if test "x$ac_cv_type_u_int64_t" = x""yes; then :
+if test "x$ac_cv_type_u_int64_t" = xyes; then :
fi
@@ -78679,7 +78831,7 @@ case "$acx_cv_header_stdint:$ac_cv_type_uintptr_t" in
# This bug is HP SR number 8606223364.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5
$as_echo_n "checking size of void *... " >&6; }
-if test "${ac_cv_sizeof_void_p+set}" = set; then :
+if ${ac_cv_sizeof_void_p+:} false; then :
$as_echo_n "(cached) " >&6
else
if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void *))" "ac_cv_sizeof_void_p" "$ac_includes_default"; then :
@@ -78688,9 +78840,8 @@ else
if test "$ac_cv_type_void_p" = yes; then
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-{ as_fn_set_status 77
-as_fn_error "cannot compute sizeof (void *)
-See \`config.log' for more details." "$LINENO" 5; }; }
+as_fn_error 77 "cannot compute sizeof (void *)
+See \`config.log' for more details" "$LINENO" 5; }
else
ac_cv_sizeof_void_p=0
fi
@@ -78717,7 +78868,7 @@ case "$acx_cv_header_stdint:$ac_cv_type_uint64_t:$ac_cv_type_u_int64_t" in
# This bug is HP SR number 8606223364.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5
$as_echo_n "checking size of long... " >&6; }
-if test "${ac_cv_sizeof_long+set}" = set; then :
+if ${ac_cv_sizeof_long+:} false; then :
$as_echo_n "(cached) " >&6
else
if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then :
@@ -78726,9 +78877,8 @@ else
if test "$ac_cv_type_long" = yes; then
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-{ as_fn_set_status 77
-as_fn_error "cannot compute sizeof (long)
-See \`config.log' for more details." "$LINENO" 5; }; }
+as_fn_error 77 "cannot compute sizeof (long)
+See \`config.log' for more details" "$LINENO" 5; }
else
ac_cv_sizeof_long=0
fi
@@ -78755,7 +78905,7 @@ if test $acx_cv_header_stdint = stddef.h; then
# This bug is HP SR number 8606223364.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5
$as_echo_n "checking size of int... " >&6; }
-if test "${ac_cv_sizeof_int+set}" = set; then :
+if ${ac_cv_sizeof_int+:} false; then :
$as_echo_n "(cached) " >&6
else
if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then :
@@ -78764,9 +78914,8 @@ else
if test "$ac_cv_type_int" = yes; then
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-{ as_fn_set_status 77
-as_fn_error "cannot compute sizeof (int)
-See \`config.log' for more details." "$LINENO" 5; }; }
+as_fn_error 77 "cannot compute sizeof (int)
+See \`config.log' for more details" "$LINENO" 5; }
else
ac_cv_sizeof_int=0
fi
@@ -78789,7 +78938,7 @@ _ACEOF
# This bug is HP SR number 8606223364.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of short" >&5
$as_echo_n "checking size of short... " >&6; }
-if test "${ac_cv_sizeof_short+set}" = set; then :
+if ${ac_cv_sizeof_short+:} false; then :
$as_echo_n "(cached) " >&6
else
if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (short))" "ac_cv_sizeof_short" "$ac_includes_default"; then :
@@ -78798,9 +78947,8 @@ else
if test "$ac_cv_type_short" = yes; then
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-{ as_fn_set_status 77
-as_fn_error "cannot compute sizeof (short)
-See \`config.log' for more details." "$LINENO" 5; }; }
+as_fn_error 77 "cannot compute sizeof (short)
+See \`config.log' for more details" "$LINENO" 5; }
else
ac_cv_sizeof_short=0
fi
@@ -78823,7 +78971,7 @@ _ACEOF
# This bug is HP SR number 8606223364.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of char" >&5
$as_echo_n "checking size of char... " >&6; }
-if test "${ac_cv_sizeof_char+set}" = set; then :
+if ${ac_cv_sizeof_char+:} false; then :
$as_echo_n "(cached) " >&6
else
if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (char))" "ac_cv_sizeof_char" "$ac_includes_default"; then :
@@ -78832,9 +78980,8 @@ else
if test "$ac_cv_type_char" = yes; then
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-{ as_fn_set_status 77
-as_fn_error "cannot compute sizeof (char)
-See \`config.log' for more details." "$LINENO" 5; }; }
+as_fn_error 77 "cannot compute sizeof (char)
+See \`config.log' for more details" "$LINENO" 5; }
else
ac_cv_sizeof_char=0
fi
@@ -78856,7 +79003,7 @@ _ACEOF
$as_echo_n "checking for type equivalent to int8_t... " >&6; }
case "$ac_cv_sizeof_char" in
1) acx_cv_type_int8_t=char ;;
- *) as_fn_error "no 8-bit type, please report a bug" "$LINENO" 5
+ *) as_fn_error $? "no 8-bit type, please report a bug" "$LINENO" 5
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_type_int8_t" >&5
$as_echo "$acx_cv_type_int8_t" >&6; }
@@ -78866,7 +79013,7 @@ $as_echo_n "checking for type equivalent to int16_t... " >&6; }
case "$ac_cv_sizeof_int:$ac_cv_sizeof_short" in
2:*) acx_cv_type_int16_t=int ;;
*:2) acx_cv_type_int16_t=short ;;
- *) as_fn_error "no 16-bit type, please report a bug" "$LINENO" 5
+ *) as_fn_error $? "no 16-bit type, please report a bug" "$LINENO" 5
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_type_int16_t" >&5
$as_echo "$acx_cv_type_int16_t" >&6; }
@@ -78876,7 +79023,7 @@ $as_echo_n "checking for type equivalent to int32_t... " >&6; }
case "$ac_cv_sizeof_int:$ac_cv_sizeof_long" in
4:*) acx_cv_type_int32_t=int ;;
*:4) acx_cv_type_int32_t=long ;;
- *) as_fn_error "no 32-bit type, please report a bug" "$LINENO" 5
+ *) as_fn_error $? "no 32-bit type, please report a bug" "$LINENO" 5
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_type_int32_t" >&5
$as_echo "$acx_cv_type_int32_t" >&6; }
@@ -78903,7 +79050,7 @@ $as_echo_n "checking for type equivalent to intptr_t... " >&6; }
2) acx_cv_type_intptr_t=int16_t ;;
4) acx_cv_type_intptr_t=int32_t ;;
8) acx_cv_type_intptr_t=int64_t ;;
- *) as_fn_error "no equivalent for intptr_t, please report a bug" "$LINENO" 5
+ *) as_fn_error $? "no equivalent for intptr_t, please report a bug" "$LINENO" 5
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_type_intptr_t" >&5
$as_echo "$acx_cv_type_intptr_t" >&6; }
@@ -78918,7 +79065,7 @@ ac_config_commands="$ac_config_commands include/gstdint.h"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU c++filt" >&5
$as_echo_n "checking for GNU c++filt... " >&6; }
-if test "${ac_cv_path_CXXFILT+set}" = set; then :
+if ${ac_cv_path_CXXFILT+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -z "$CXXFILT"; then
@@ -78932,7 +79079,7 @@ do
for ac_prog in c++filt gc++filt; do
for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_CXXFILT="$as_dir/$ac_prog$ac_exec_ext"
- { test -f "$ac_path_CXXFILT" && $as_test_x "$ac_path_CXXFILT"; } || continue
+ as_fn_executable_p "$ac_path_CXXFILT" || continue
# Check for GNU $ac_path_CXXFILT
case `"$ac_path_CXXFILT" --version 2>&1` in
*GNU*)
@@ -78963,7 +79110,7 @@ if test "${enable_symvers+set}" = set; then :
enableval=$enable_symvers;
case "$enableval" in
yes|no|gnu|gnu-versioned-namespace|darwin|darwin-export|sun) ;;
- *) as_fn_error "Unknown argument to enable/disable symvers" "$LINENO" 5 ;;
+ *) as_fn_error $? "Unknown argument to enable/disable symvers" "$LINENO" 5 ;;
esac
else
@@ -79053,7 +79200,7 @@ $as_echo_n "checking for shared libgcc... " >&6; }
ac_save_CFLAGS="$CFLAGS"
CFLAGS=' -lgcc_s'
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -79086,7 +79233,7 @@ EOF
if test x${glibcxx_libgcc_s_suffix+set} = xset; then
CFLAGS=" -lgcc_s$glibcxx_libgcc_s_suffix"
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -79195,7 +79342,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports .symver directive" >&5
$as_echo_n "checking whether the target supports .symver directive... " >&6; }
-if test "${glibcxx_cv_have_as_symver_directive+set}" = set; then :
+if ${glibcxx_cv_have_as_symver_directive+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -79322,7 +79469,7 @@ if test "${enable_libstdcxx_visibility+set}" = set; then :
enableval=$enable_libstdcxx_visibility;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable libstdcxx-visibility must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable libstdcxx-visibility must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -79334,7 +79481,7 @@ fi
if test x$enable_libstdcxx_visibility = xyes ; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports hidden visibility" >&5
$as_echo_n "checking whether the target supports hidden visibility... " >&6; }
-if test "${glibcxx_cv_have_attribute_visibility+set}" = set; then :
+if ${glibcxx_cv_have_attribute_visibility+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -79377,7 +79524,7 @@ if test "${enable_libstdcxx_dual_abi+set}" = set; then :
enableval=$enable_libstdcxx_dual_abi;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable libstdcxx-dual-abi must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable libstdcxx-dual-abi must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -79406,8 +79553,8 @@ if test "${with_default_libstdcxx_abi+set}" = set; then :
withval=$with_default_libstdcxx_abi; case "$withval" in
gcc4-compatible) default_libstdcxx_abi="gcc4-compatible" ;;
new|cxx11) default_libstdcxx_abi="new" ;;
- c++*|gnu++*) as_fn_error "Supported arguments for --with-default-libstdcxx-abi have changed, use \"new\" or \"gcc4-compatible\"" "$LINENO" 5 ;;
- *) as_fn_error "Invalid argument for --with-default-libstdcxx-abi" "$LINENO" 5 ;;
+ c++*|gnu++*) as_fn_error $? "Supported arguments for --with-default-libstdcxx-abi have changed, use \"new\" or \"gcc4-compatible\"" "$LINENO" 5 ;;
+ *) as_fn_error $? "Invalid argument for --with-default-libstdcxx-abi" "$LINENO" 5 ;;
esac
else
@@ -79517,7 +79664,7 @@ $as_echo "$ac_hwcap_flags" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for rdrand support in assembler" >&5
$as_echo_n "checking for rdrand support in assembler... " >&6; }
- if test "${ac_cv_x86_rdrand+set}" = set; then :
+ if ${ac_cv_x86_rdrand+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -79564,8 +79711,7 @@ $as_echo "$ac_cv_x86_rdrand" >&6; }
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
-eval as_val=\$$as_ac_Header
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
@@ -79742,7 +79888,7 @@ $as_echo "$res" >&6; }
# Check for rlimit, setrlimit.
- if test "${glibcxx_cv_setrlimit+set}" = set; then :
+ if ${glibcxx_cv_setrlimit+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -79792,7 +79938,7 @@ $as_echo "$ac_res_limits" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for setenv declaration" >&5
$as_echo_n "checking for setenv declaration... " >&6; }
if test x${glibcxx_cv_func_setenv_use+set} != xset; then
- if test "${glibcxx_cv_func_setenv_use+set}" = set; then :
+ if ${glibcxx_cv_func_setenv_use+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -79836,7 +79982,7 @@ $as_echo "$glibcxx_cv_func_setenv_use" >&6; }
for ac_func in setenv
do :
ac_fn_c_check_func "$LINENO" "setenv" "ac_cv_func_setenv"
-if test "x$ac_cv_func_setenv" = x""yes; then :
+if test "x$ac_cv_func_setenv" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SETENV 1
_ACEOF
@@ -79876,7 +80022,7 @@ if test "${enable_libstdcxx_threads+set}" = set; then :
enableval=$enable_libstdcxx_threads;
case "$enableval" in
yes|no) ;;
- *) as_fn_error "Argument to enable/disable libstdcxx-threads must be yes or no" "$LINENO" 5 ;;
+ *) as_fn_error $? "Argument to enable/disable libstdcxx-threads must be yes or no" "$LINENO" 5 ;;
esac
else
@@ -79983,7 +80129,7 @@ $as_echo "#define _GLIBCXX_HAS_GTHREADS 1" >>confdefs.h
# Also check for pthread_rwlock_t for std::shared_timed_mutex in C++14
ac_fn_cxx_check_type "$LINENO" "pthread_rwlock_t" "ac_cv_type_pthread_rwlock_t" "#include \"gthr.h\"
"
-if test "x$ac_cv_type_pthread_rwlock_t" = x""yes; then :
+if test "x$ac_cv_type_pthread_rwlock_t" = xyes; then :
$as_echo "#define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1" >>confdefs.h
@@ -80005,8 +80151,7 @@ for ac_header in fcntl.h dirent.h sys/statvfs.h utime.h
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
-eval as_val=\$$as_ac_Header
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
@@ -80021,7 +80166,7 @@ if test "${enable_libstdcxx_filesystem_ts+set}" = set; then :
enableval=$enable_libstdcxx_filesystem_ts;
case "$enableval" in
yes|no|auto) ;;
- *) as_fn_error "Unknown argument to enable/disable libstdcxx-filesystem-ts" "$LINENO" 5 ;;
+ *) as_fn_error $? "Unknown argument to enable/disable libstdcxx-filesystem-ts" "$LINENO" 5 ;;
esac
else
@@ -80070,7 +80215,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
CXXFLAGS="$CXXFLAGS -fno-exceptions"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct dirent.d_type" >&5
$as_echo_n "checking for struct dirent.d_type... " >&6; }
- if test "${glibcxx_cv_dirent_d_type+set}" = set; then :
+ if ${glibcxx_cv_dirent_d_type+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -80096,7 +80241,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80132,7 +80277,7 @@ $as_echo "#define HAVE_STRUCT_DIRENT_D_TYPE 1" >>confdefs.h
$as_echo "$glibcxx_cv_dirent_d_type" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for realpath" >&5
$as_echo_n "checking for realpath... " >&6; }
- if test "${glibcxx_cv_realpath+set}" = set; then :
+ if ${glibcxx_cv_realpath+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -80167,7 +80312,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80212,7 +80357,7 @@ $as_echo "#define _GLIBCXX_USE_REALPATH 1" >>confdefs.h
$as_echo "$glibcxx_cv_realpath" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for utimensat" >&5
$as_echo_n "checking for utimensat... " >&6; }
- if test "${glibcxx_cv_utimensat+set}" = set; then :
+ if ${glibcxx_cv_utimensat+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -80241,7 +80386,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80280,7 +80425,7 @@ $as_echo "#define _GLIBCXX_USE_UTIMENSAT 1" >>confdefs.h
$as_echo "$glibcxx_cv_utimensat" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct stat.st_mtim.tv_nsec" >&5
$as_echo_n "checking for struct stat.st_mtim.tv_nsec... " >&6; }
- if test "${glibcxx_cv_st_mtim+set}" = set; then :
+ if ${glibcxx_cv_st_mtim+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -80306,7 +80451,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80342,7 +80487,7 @@ $as_echo "#define _GLIBCXX_USE_ST_MTIM 1" >>confdefs.h
$as_echo "$glibcxx_cv_st_mtim" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fchmod" >&5
$as_echo_n "checking for fchmod... " >&6; }
- if test "${glibcxx_cv_fchmod+set}" = set; then :
+ if ${glibcxx_cv_fchmod+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -80365,7 +80510,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80398,7 +80543,7 @@ $as_echo "#define _GLIBCXX_USE_FCHMOD 1" >>confdefs.h
$as_echo "$glibcxx_cv_fchmod" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fchmodat" >&5
$as_echo_n "checking for fchmodat... " >&6; }
- if test "${glibcxx_cv_fchmodat+set}" = set; then :
+ if ${glibcxx_cv_fchmodat+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -80424,7 +80569,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80460,7 +80605,7 @@ $as_echo "#define _GLIBCXX_USE_FCHMODAT 1" >>confdefs.h
$as_echo "$glibcxx_cv_fchmodat" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sendfile that can copy files" >&5
$as_echo_n "checking for sendfile that can copy files... " >&6; }
- if test "${glibcxx_cv_sendfile+set}" = set; then :
+ if ${glibcxx_cv_sendfile+:} false; then :
$as_echo_n "(cached) " >&6
else
case "${target_os}" in
@@ -80485,7 +80630,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80523,7 +80668,7 @@ $as_echo "#define _GLIBCXX_USE_SENDFILE 1" >>confdefs.h
$as_echo "$glibcxx_cv_sendfile" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for link" >&5
$as_echo_n "checking for link... " >&6; }
- if test "${glibcxx_cv_link+set}" = set; then :
+ if ${glibcxx_cv_link+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -80546,7 +80691,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80579,7 +80724,7 @@ $as_echo "#define HAVE_LINK 1" >>confdefs.h
$as_echo "$glibcxx_cv_link" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for readlink" >&5
$as_echo_n "checking for readlink... " >&6; }
- if test "${glibcxx_cv_readlink+set}" = set; then :
+ if ${glibcxx_cv_readlink+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -80602,7 +80747,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80635,7 +80780,7 @@ $as_echo "#define HAVE_READLINK 1" >>confdefs.h
$as_echo "$glibcxx_cv_readlink" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for symlink" >&5
$as_echo_n "checking for symlink... " >&6; }
- if test "${glibcxx_cv_symlink+set}" = set; then :
+ if ${glibcxx_cv_symlink+:} false; then :
$as_echo_n "(cached) " >&6
else
if test x$gcc_no_link = xyes; then
@@ -80658,7 +80803,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
if test x$gcc_no_link = xyes; then
- as_fn_error "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5
fi
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -80704,8 +80849,7 @@ for ac_header in fcntl.h sys/ioctl.h sys/socket.h sys/uio.h poll.h netdb.h arpa/
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
-eval as_val=\$$as_ac_Header
- if test "x$as_val" = x""yes; then :
+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF
@@ -80719,7 +80863,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how size_t is mangled" >&5
$as_echo_n "checking how size_t is mangled... " >&6; }
-if test "${glibcxx_cv_size_t_mangling+set}" = set; then :
+if ${glibcxx_cv_size_t_mangling+:} false; then :
$as_echo_n "(cached) " >&6
else
@@ -80817,7 +80961,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_size_t_mangling" >&5
$as_echo "$glibcxx_cv_size_t_mangling" >&6; }
if test $glibcxx_cv_size_t_mangling = x; then
- as_fn_error "Unknown underlying type for size_t" "$LINENO" 5
+ as_fn_error $? "Unknown underlying type for size_t" "$LINENO" 5
fi
cat >>confdefs.h <<_ACEOF
@@ -80884,7 +81028,7 @@ $as_echo "7.1.0" >&6; }
set dummy makeinfo; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_MAKEINFO+set}" = set; then :
+if ${ac_cv_prog_MAKEINFO+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$MAKEINFO"; then
@@ -80896,7 +81040,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_MAKEINFO="makeinfo"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -80921,7 +81065,7 @@ fi
# Found it, now check the version.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for modern makeinfo" >&5
$as_echo_n "checking for modern makeinfo... " >&6; }
-if test "${gcc_cv_prog_makeinfo_modern+set}" = set; then :
+if ${gcc_cv_prog_makeinfo_modern+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_prog_version=`eval $MAKEINFO --version 2>&1 |
@@ -80957,7 +81101,7 @@ fi
set dummy doxygen; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_DOXYGEN+set}" = set; then :
+if ${ac_cv_prog_DOXYGEN+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$DOXYGEN"; then
@@ -80969,7 +81113,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_DOXYGEN="yes"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -80995,7 +81139,7 @@ fi
set dummy dot; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_DOT+set}" = set; then :
+if ${ac_cv_prog_DOT+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$DOT"; then
@@ -81007,7 +81151,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_DOT="yes"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -81035,7 +81179,7 @@ fi
set dummy xsltproc; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_XSLTPROC+set}" = set; then :
+if ${ac_cv_prog_XSLTPROC+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$XSLTPROC"; then
@@ -81047,7 +81191,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_XSLTPROC="yes"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -81073,7 +81217,7 @@ fi
set dummy xmllint; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_XMLLINT+set}" = set; then :
+if ${ac_cv_prog_XMLLINT+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$XMLLINT"; then
@@ -81085,7 +81229,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_XMLLINT="yes"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -81211,7 +81355,7 @@ fi
set dummy dblatex; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_DBLATEX+set}" = set; then :
+if ${ac_cv_prog_DBLATEX+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$DBLATEX"; then
@@ -81223,7 +81367,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_DBLATEX="yes"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -81249,7 +81393,7 @@ fi
set dummy pdflatex; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if test "${ac_cv_prog_PDFLATEX+set}" = set; then :
+if ${ac_cv_prog_PDFLATEX+:} false; then :
$as_echo_n "(cached) " >&6
else
if test -n "$PDFLATEX"; then
@@ -81261,7 +81405,7 @@ do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_PDFLATEX="yes"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
@@ -81333,7 +81477,7 @@ if test "${enable_cet+set}" = set; then :
enableval=$enable_cet;
case "$enableval" in
yes|no|auto) ;;
- *) as_fn_error "Unknown argument to enable/disable cet" "$LINENO" 5 ;;
+ *) as_fn_error $? "Unknown argument to enable/disable cet" "$LINENO" 5 ;;
esac
else
@@ -81390,7 +81534,7 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
else
- as_fn_error "assembler with CET support is required for --enable-cet" "$LINENO" 5
+ as_fn_error $? "assembler with CET support is required for --enable-cet" "$LINENO" 5
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
;;
@@ -81690,10 +81834,21 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
:end' >>confcache
if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
if test -w "$cache_file"; then
- test "x$cache_file" != "x/dev/null" &&
+ if test "x$cache_file" != "x/dev/null"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
$as_echo "$as_me: updating cache $cache_file" >&6;}
- cat confcache >$cache_file
+ if test ! -f "$cache_file" || test -h "$cache_file"; then
+ cat confcache >"$cache_file"
+ else
+ case $cache_file in #(
+ */* | ?:*)
+ mv -f confcache "$cache_file"$$ &&
+ mv -f "$cache_file"$$ "$cache_file" ;; #(
+ *)
+ mv -f confcache "$cache_file" ;;
+ esac
+ fi
+ fi
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
@@ -81719,7 +81874,7 @@ $as_echo_n "checking for gxx-include-dir... " >&6; }
# Check whether --with-gxx-include-dir was given.
if test "${with_gxx_include_dir+set}" = set; then :
withval=$with_gxx_include_dir; case "$withval" in
- yes) as_fn_error "Missing directory for --with-gxx-include-dir" "$LINENO" 5 ;;
+ yes) as_fn_error $? "Missing directory for --with-gxx-include-dir" "$LINENO" 5 ;;
no) gxx_include_dir=no ;;
*) gxx_include_dir=$withval ;;
esac
@@ -81737,7 +81892,7 @@ if test "${enable_version_specific_runtime_libs+set}" = set; then :
enableval=$enable_version_specific_runtime_libs; case "$enableval" in
yes) version_specific_libs=yes ;;
no) version_specific_libs=no ;;
- *) as_fn_error "Unknown argument to enable/disable version-specific libs" "$LINENO" 5;;
+ *) as_fn_error $? "Unknown argument to enable/disable version-specific libs" "$LINENO" 5;;
esac
else
version_specific_libs=no
@@ -81934,10 +82089,21 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
:end' >>confcache
if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
if test -w "$cache_file"; then
- test "x$cache_file" != "x/dev/null" &&
+ if test "x$cache_file" != "x/dev/null"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
$as_echo "$as_me: updating cache $cache_file" >&6;}
- cat confcache >$cache_file
+ if test ! -f "$cache_file" || test -h "$cache_file"; then
+ cat confcache >"$cache_file"
+ else
+ case $cache_file in #(
+ */* | ?:*)
+ mv -f confcache "$cache_file"$$ &&
+ mv -f "$cache_file"$$ "$cache_file" ;; #(
+ *)
+ mv -f confcache "$cache_file" ;;
+ esac
+ fi
+ fi
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
@@ -81953,6 +82119,7 @@ DEFS=-DHAVE_CONFIG_H
ac_libobjs=
ac_ltlibobjs=
+U=
for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
# 1. Remove the extension, and $U if already installed.
ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
@@ -81967,6 +82134,14 @@ LIBOBJS=$ac_libobjs
LTLIBOBJS=$ac_ltlibobjs
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
+$as_echo_n "checking that generated files are newer than configure... " >&6; }
+ if test -n "$am_sleep_pid"; then
+ # Hide warnings about reused PIDs.
+ wait $am_sleep_pid 2>/dev/null
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
+$as_echo "done" >&6; }
if test -n "$EXEEXT"; then
am__EXEEXT_TRUE=
am__EXEEXT_FALSE='#'
@@ -81976,135 +82151,135 @@ else
fi
if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
- as_fn_error "conditional \"MAINTAINER_MODE\" was never defined.
+ as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${GLIBCXX_HOSTED_TRUE}" && test -z "${GLIBCXX_HOSTED_FALSE}"; then
- as_fn_error "conditional \"GLIBCXX_HOSTED\" was never defined.
+ as_fn_error $? "conditional \"GLIBCXX_HOSTED\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${GLIBCXX_BUILD_PCH_TRUE}" && test -z "${GLIBCXX_BUILD_PCH_FALSE}"; then
- as_fn_error "conditional \"GLIBCXX_BUILD_PCH\" was never defined.
+ as_fn_error $? "conditional \"GLIBCXX_BUILD_PCH\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_FLOAT128_TRUE}" && test -z "${ENABLE_FLOAT128_FALSE}"; then
- as_fn_error "conditional \"ENABLE_FLOAT128\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_FLOAT128\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_ALLOCATOR_NEW_TRUE}" && test -z "${ENABLE_ALLOCATOR_NEW_FALSE}"; then
- as_fn_error "conditional \"ENABLE_ALLOCATOR_NEW\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_ALLOCATOR_NEW\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${GLIBCXX_C_HEADERS_C_TRUE}" && test -z "${GLIBCXX_C_HEADERS_C_FALSE}"; then
- as_fn_error "conditional \"GLIBCXX_C_HEADERS_C\" was never defined.
+ as_fn_error $? "conditional \"GLIBCXX_C_HEADERS_C\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${GLIBCXX_C_HEADERS_C_STD_TRUE}" && test -z "${GLIBCXX_C_HEADERS_C_STD_FALSE}"; then
- as_fn_error "conditional \"GLIBCXX_C_HEADERS_C_STD\" was never defined.
+ as_fn_error $? "conditional \"GLIBCXX_C_HEADERS_C_STD\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${GLIBCXX_C_HEADERS_C_GLOBAL_TRUE}" && test -z "${GLIBCXX_C_HEADERS_C_GLOBAL_FALSE}"; then
- as_fn_error "conditional \"GLIBCXX_C_HEADERS_C_GLOBAL\" was never defined.
+ as_fn_error $? "conditional \"GLIBCXX_C_HEADERS_C_GLOBAL\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${GLIBCXX_C_HEADERS_COMPATIBILITY_TRUE}" && test -z "${GLIBCXX_C_HEADERS_COMPATIBILITY_FALSE}"; then
- as_fn_error "conditional \"GLIBCXX_C_HEADERS_COMPATIBILITY\" was never defined.
+ as_fn_error $? "conditional \"GLIBCXX_C_HEADERS_COMPATIBILITY\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${GLIBCXX_BUILD_DEBUG_TRUE}" && test -z "${GLIBCXX_BUILD_DEBUG_FALSE}"; then
- as_fn_error "conditional \"GLIBCXX_BUILD_DEBUG\" was never defined.
+ as_fn_error $? "conditional \"GLIBCXX_BUILD_DEBUG\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_EXTERN_TEMPLATE_TRUE}" && test -z "${ENABLE_EXTERN_TEMPLATE_FALSE}"; then
- as_fn_error "conditional \"ENABLE_EXTERN_TEMPLATE\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_EXTERN_TEMPLATE\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_PYTHONDIR_TRUE}" && test -z "${ENABLE_PYTHONDIR_FALSE}"; then
- as_fn_error "conditional \"ENABLE_PYTHONDIR\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_PYTHONDIR\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_WERROR_TRUE}" && test -z "${ENABLE_WERROR_FALSE}"; then
- as_fn_error "conditional \"ENABLE_WERROR\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_WERROR\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${VTV_CYGMIN_TRUE}" && test -z "${VTV_CYGMIN_FALSE}"; then
- as_fn_error "conditional \"VTV_CYGMIN\" was never defined.
+ as_fn_error $? "conditional \"VTV_CYGMIN\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_VTABLE_VERIFY_TRUE}" && test -z "${ENABLE_VTABLE_VERIFY_FALSE}"; then
- as_fn_error "conditional \"ENABLE_VTABLE_VERIFY\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_VTABLE_VERIFY\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_SYMVERS_TRUE}" && test -z "${ENABLE_SYMVERS_FALSE}"; then
- as_fn_error "conditional \"ENABLE_SYMVERS\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_SYMVERS\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_SYMVERS_GNU_TRUE}" && test -z "${ENABLE_SYMVERS_GNU_FALSE}"; then
- as_fn_error "conditional \"ENABLE_SYMVERS_GNU\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_SYMVERS_GNU\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_SYMVERS_GNU_NAMESPACE_TRUE}" && test -z "${ENABLE_SYMVERS_GNU_NAMESPACE_FALSE}"; then
- as_fn_error "conditional \"ENABLE_SYMVERS_GNU_NAMESPACE\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_SYMVERS_GNU_NAMESPACE\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_SYMVERS_DARWIN_TRUE}" && test -z "${ENABLE_SYMVERS_DARWIN_FALSE}"; then
- as_fn_error "conditional \"ENABLE_SYMVERS_DARWIN\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_SYMVERS_DARWIN\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_SYMVERS_SUN_TRUE}" && test -z "${ENABLE_SYMVERS_SUN_FALSE}"; then
- as_fn_error "conditional \"ENABLE_SYMVERS_SUN\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_SYMVERS_SUN\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_VISIBILITY_TRUE}" && test -z "${ENABLE_VISIBILITY_FALSE}"; then
- as_fn_error "conditional \"ENABLE_VISIBILITY\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_VISIBILITY\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_DUAL_ABI_TRUE}" && test -z "${ENABLE_DUAL_ABI_FALSE}"; then
- as_fn_error "conditional \"ENABLE_DUAL_ABI\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_DUAL_ABI\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_CXX11_ABI_TRUE}" && test -z "${ENABLE_CXX11_ABI_FALSE}"; then
- as_fn_error "conditional \"ENABLE_CXX11_ABI\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_CXX11_ABI\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${GLIBCXX_LDBL_COMPAT_TRUE}" && test -z "${GLIBCXX_LDBL_COMPAT_FALSE}"; then
- as_fn_error "conditional \"GLIBCXX_LDBL_COMPAT\" was never defined.
+ as_fn_error $? "conditional \"GLIBCXX_LDBL_COMPAT\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${ENABLE_FILESYSTEM_TS_TRUE}" && test -z "${ENABLE_FILESYSTEM_TS_FALSE}"; then
- as_fn_error "conditional \"ENABLE_FILESYSTEM_TS\" was never defined.
+ as_fn_error $? "conditional \"ENABLE_FILESYSTEM_TS\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${BUILD_INFO_TRUE}" && test -z "${BUILD_INFO_FALSE}"; then
- as_fn_error "conditional \"BUILD_INFO\" was never defined.
+ as_fn_error $? "conditional \"BUILD_INFO\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${BUILD_EPUB_TRUE}" && test -z "${BUILD_EPUB_FALSE}"; then
- as_fn_error "conditional \"BUILD_EPUB\" was never defined.
+ as_fn_error $? "conditional \"BUILD_EPUB\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${BUILD_XML_TRUE}" && test -z "${BUILD_XML_FALSE}"; then
- as_fn_error "conditional \"BUILD_XML\" was never defined.
+ as_fn_error $? "conditional \"BUILD_XML\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${BUILD_HTML_TRUE}" && test -z "${BUILD_HTML_FALSE}"; then
- as_fn_error "conditional \"BUILD_HTML\" was never defined.
+ as_fn_error $? "conditional \"BUILD_HTML\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${BUILD_MAN_TRUE}" && test -z "${BUILD_MAN_FALSE}"; then
- as_fn_error "conditional \"BUILD_MAN\" was never defined.
+ as_fn_error $? "conditional \"BUILD_MAN\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${BUILD_PDF_TRUE}" && test -z "${BUILD_PDF_FALSE}"; then
- as_fn_error "conditional \"BUILD_PDF\" was never defined.
+ as_fn_error $? "conditional \"BUILD_PDF\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${INCLUDE_DIR_NOTPARALLEL_TRUE}" && test -z "${INCLUDE_DIR_NOTPARALLEL_FALSE}"; then
- as_fn_error "conditional \"INCLUDE_DIR_NOTPARALLEL\" was never defined.
+ as_fn_error $? "conditional \"INCLUDE_DIR_NOTPARALLEL\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
-: ${CONFIG_STATUS=./config.status}
+: "${CONFIG_STATUS=./config.status}"
ac_write_fail=0
ac_clean_files_save=$ac_clean_files
ac_clean_files="$ac_clean_files $CONFIG_STATUS"
@@ -82205,6 +82380,7 @@ fi
IFS=" "" $as_nl"
# Find who we are. Look in the path if we contain no directory separator.
+as_myself=
case $0 in #((
*[\\/]* ) as_myself=$0 ;;
*) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -82250,19 +82426,19 @@ export LANGUAGE
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
+# script with STATUS, using 1 if that was 0.
as_fn_error ()
{
- as_status=$?; test $as_status -eq 0 && as_status=1
- if test "$3"; then
- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
+ as_status=$1; test $as_status -eq 0 && as_status=1
+ if test "$4"; then
+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
fi
- $as_echo "$as_me: error: $1" >&2
+ $as_echo "$as_me: error: $2" >&2
as_fn_exit $as_status
} # as_fn_error
@@ -82400,16 +82576,16 @@ if (echo >conf$$.file) 2>/dev/null; then
# ... but there are two gotchas:
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -p'.
+ # In both cases, we have to default to `cp -pR'.
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
elif ln conf$$.file conf$$ 2>/dev/null; then
as_ln_s=ln
else
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
fi
else
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
fi
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
rmdir conf$$.dir 2>/dev/null
@@ -82458,7 +82634,7 @@ $as_echo X"$as_dir" |
test -d "$as_dir" && break
done
test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
} # as_fn_mkdir_p
@@ -82469,28 +82645,16 @@ else
as_mkdir_p=false
fi
-if test -x / >/dev/null 2>&1; then
- as_test_x='test -x'
-else
- if ls -dL / >/dev/null 2>&1; then
- as_ls_L_option=L
- else
- as_ls_L_option=
- fi
- as_test_x='
- eval sh -c '\''
- if test -d "$1"; then
- test -d "$1/.";
- else
- case $1 in #(
- -*)set "./$1";;
- esac;
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
- ???[sx]*):;;*)false;;esac;fi
- '\'' sh
- '
-fi
-as_executable_p=$as_test_x
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "$1" && test -x "$1"
+} # as_fn_executable_p
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
# Sed expression to map a string onto a valid CPP name.
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
@@ -82512,7 +82676,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# values after options handling.
ac_log="
This file was extended by package-unused $as_me version-unused, which was
-generated by GNU Autoconf 2.64. Invocation command line was
+generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
CONFIG_HEADERS = $CONFIG_HEADERS
@@ -82552,6 +82716,7 @@ Usage: $0 [OPTION]... [TAG]...
-h, --help print this help, then exit
-V, --version print version number and configuration settings, then exit
+ --config print configuration, then exit
-q, --quiet, --silent
do not print progress messages
-d, --debug don't remove temporary files
@@ -82574,12 +82739,13 @@ Report bugs to the package provider."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
package-unused config.status version-unused
-configured by $0, generated by GNU Autoconf 2.64,
- with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
+configured by $0, generated by GNU Autoconf 2.69,
+ with options \\"\$ac_cs_config\\"
-Copyright (C) 2009 Free Software Foundation, Inc.
+Copyright (C) 2012 Free Software Foundation, Inc.
This config.status script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it."
@@ -82597,11 +82763,16 @@ ac_need_defaults=:
while test $# != 0
do
case $1 in
- --*=*)
+ --*=?*)
ac_option=`expr "X$1" : 'X\([^=]*\)='`
ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ac_shift=:
;;
+ --*=)
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
+ ac_optarg=
+ ac_shift=:
+ ;;
*)
ac_option=$1
ac_optarg=$2
@@ -82615,12 +82786,15 @@ do
ac_cs_recheck=: ;;
--version | --versio | --versi | --vers | --ver | --ve | --v | -V )
$as_echo "$ac_cs_version"; exit ;;
+ --config | --confi | --conf | --con | --co | --c )
+ $as_echo "$ac_cs_config"; exit ;;
--debug | --debu | --deb | --de | --d | -d )
debug=: ;;
--file | --fil | --fi | --f )
$ac_shift
case $ac_optarg in
*\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ '') as_fn_error $? "missing file argument" ;;
esac
as_fn_append CONFIG_FILES " '$ac_optarg'"
ac_need_defaults=false;;
@@ -82633,7 +82807,7 @@ do
ac_need_defaults=false;;
--he | --h)
# Conflict between --help and --header
- as_fn_error "ambiguous option: \`$1'
+ as_fn_error $? "ambiguous option: \`$1'
Try \`$0 --help' for more information.";;
--help | --hel | -h )
$as_echo "$ac_cs_usage"; exit ;;
@@ -82642,7 +82816,7 @@ Try \`$0 --help' for more information.";;
ac_cs_silent=: ;;
# This is an error.
- -*) as_fn_error "unrecognized option: \`$1'
+ -*) as_fn_error $? "unrecognized option: \`$1'
Try \`$0 --help' for more information." ;;
*) as_fn_append ac_config_targets " $1"
@@ -82662,7 +82836,7 @@ fi
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
if \$ac_cs_recheck; then
- set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
+ set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
shift
\$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
CONFIG_SHELL='$SHELL'
@@ -82699,6 +82873,7 @@ CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
CC="$CC"
CXX="$CXX"
GFORTRAN="$GFORTRAN"
+GDC="$GDC"
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -83107,7 +83282,7 @@ do
"python/Makefile") CONFIG_FILES="$CONFIG_FILES python/Makefile" ;;
"generate-headers") CONFIG_COMMANDS="$CONFIG_COMMANDS generate-headers" ;;
- *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
esac
done
@@ -83130,9 +83305,10 @@ fi
# after its creation but before its name has been assigned to `$tmp'.
$debug ||
{
- tmp=
+ tmp= ac_tmp=
trap 'exit_status=$?
- { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
+ : "${ac_tmp:=$tmp}"
+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
' 0
trap 'as_fn_exit 1' 1 2 13 15
}
@@ -83140,12 +83316,13 @@ $debug ||
{
tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
- test -n "$tmp" && test -d "$tmp"
+ test -d "$tmp"
} ||
{
tmp=./conf$$-$RANDOM
(umask 077 && mkdir "$tmp")
-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
+ac_tmp=$tmp
# Set up the scripts for CONFIG_FILES section.
# No need to generate them if there are no CONFIG_FILES.
@@ -83162,12 +83339,12 @@ if test "x$ac_cr" = x; then
fi
ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
- ac_cs_awk_cr='\r'
+ ac_cs_awk_cr='\\r'
else
ac_cs_awk_cr=$ac_cr
fi
-echo 'BEGIN {' >"$tmp/subs1.awk" &&
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
_ACEOF
@@ -83176,18 +83353,18 @@ _ACEOF
echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
echo "_ACEOF"
} >conf$$subs.sh ||
- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
-ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
ac_delim='%!_!# '
for ac_last_try in false false false false false :; do
. ./conf$$subs.sh ||
- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
if test $ac_delim_n = $ac_delim_num; then
break
elif $ac_last_try; then
- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
else
ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
fi
@@ -83195,7 +83372,7 @@ done
rm -f conf$$subs.sh
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
-cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
_ACEOF
sed -n '
h
@@ -83209,7 +83386,7 @@ s/'"$ac_delim"'$//
t delim
:nl
h
-s/\(.\{148\}\).*/\1/
+s/\(.\{148\}\)..*/\1/
t more1
s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
p
@@ -83223,7 +83400,7 @@ s/.\{148\}//
t nl
:delim
h
-s/\(.\{148\}\).*/\1/
+s/\(.\{148\}\)..*/\1/
t more2
s/["\\]/\\&/g; s/^/"/; s/$/"/
p
@@ -83243,7 +83420,7 @@ t delim
rm -f conf$$subs.awk
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
_ACAWK
-cat >>"\$tmp/subs1.awk" <<_ACAWK &&
+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
for (key in S) S_is_set[key] = 1
FS = ""
@@ -83275,21 +83452,29 @@ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
else
cat
-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
- || as_fn_error "could not setup config files machinery" "$LINENO" 5
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
_ACEOF
-# VPATH may cause trouble with some makes, so we remove $(srcdir),
-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
# trailing colons and then remove the whole line if VPATH becomes empty
# (actually we leave an empty line to preserve line numbers).
if test "x$srcdir" = x.; then
- ac_vpsub='/^[ ]*VPATH[ ]*=/{
-s/:*\$(srcdir):*/:/
-s/:*\${srcdir}:*/:/
-s/:*@srcdir@:*/:/
-s/^\([^=]*=[ ]*\):*/\1/
+ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
+h
+s///
+s/^/:/
+s/[ ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
s/:*$//
+x
+s/\(=[ ]*\).*/\1/
+G
+s/\n//
s/^[^=]*=[ ]*$//
}'
fi
@@ -83301,7 +83486,7 @@ fi # test -n "$CONFIG_FILES"
# No need to generate them if there are no CONFIG_HEADERS.
# This happens for instance with `./config.status Makefile'.
if test -n "$CONFIG_HEADERS"; then
-cat >"$tmp/defines.awk" <<\_ACAWK ||
+cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
BEGIN {
_ACEOF
@@ -83313,11 +83498,11 @@ _ACEOF
# handling of long lines.
ac_delim='%!_!# '
for ac_last_try in false false :; do
- ac_t=`sed -n "/$ac_delim/p" confdefs.h`
- if test -z "$ac_t"; then
+ ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
+ if test -z "$ac_tt"; then
break
elif $ac_last_try; then
- as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5
+ as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
else
ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
fi
@@ -83402,7 +83587,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
_ACAWK
_ACEOF
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
- as_fn_error "could not setup config headers machinery" "$LINENO" 5
+ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
fi # test -n "$CONFIG_HEADERS"
@@ -83415,7 +83600,7 @@ do
esac
case $ac_mode$ac_tag in
:[FHL]*:*);;
- :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
:[FH]-) ac_tag=-:-;;
:[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
esac
@@ -83434,7 +83619,7 @@ do
for ac_f
do
case $ac_f in
- -) ac_f="$tmp/stdin";;
+ -) ac_f="$ac_tmp/stdin";;
*) # Look for the file first in the build tree, then in the source tree
# (if the path is not absolute). The absolute path cannot be DOS-style,
# because $ac_f cannot contain `:'.
@@ -83443,7 +83628,7 @@ do
[\\/$]*) false;;
*) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
esac ||
- as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
esac
case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
as_fn_append ac_file_inputs " '$ac_f'"
@@ -83469,8 +83654,8 @@ $as_echo "$as_me: creating $ac_file" >&6;}
esac
case $ac_tag in
- *:-:* | *:-) cat >"$tmp/stdin" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
esac
;;
esac
@@ -83606,23 +83791,24 @@ s&@INSTALL@&$ac_INSTALL&;t t
s&@MKDIR_P@&$ac_MKDIR_P&;t t
$ac_datarootdir_hack
"
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
- { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&5
+which seems to be undefined. Please make sure it is defined" >&5
$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&2;}
+which seems to be undefined. Please make sure it is defined" >&2;}
- rm -f "$tmp/stdin"
+ rm -f "$ac_tmp/stdin"
case $ac_file in
- -) cat "$tmp/out" && rm -f "$tmp/out";;
- *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
esac \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
;;
:H)
#
@@ -83631,21 +83817,21 @@ which seems to be undefined. Please make sure it is defined." >&2;}
if test x"$ac_file" != x-; then
{
$as_echo "/* $configure_input */" \
- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
- } >"$tmp/config.h" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
+ } >"$ac_tmp/config.h" \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
$as_echo "$as_me: $ac_file is unchanged" >&6;}
else
rm -f "$ac_file"
- mv "$tmp/config.h" "$ac_file" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
+ mv "$ac_tmp/config.h" "$ac_file" \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
fi
else
$as_echo "/* $configure_input */" \
- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
- || as_fn_error "could not create -" "$LINENO" 5
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
+ || as_fn_error $? "could not create -" "$LINENO" 5
fi
# Compute "$ac_file"'s index in $config_headers.
_am_arg="$ac_file"
@@ -85014,7 +85200,7 @@ _ACEOF
ac_clean_files=$ac_clean_files_save
test $ac_write_fail = 0 ||
- as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
+ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
# configure is writing to config.log, and then calls config.status.
@@ -85035,7 +85221,7 @@ if test "$no_create" != yes; then
exec 5>>config.log
# Use ||, not &&, to avoid exiting from the if with $? = 1, which
# would make configure fail if this is the last instruction.
- $ac_cs_success || as_fn_exit $?
+ $ac_cs_success || as_fn_exit 1
fi
if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac
index dbb7dbc..a657a72 100644
--- a/libstdc++-v3/configure.ac
+++ b/libstdc++-v3/configure.ac
@@ -1,6 +1,5 @@
# Process this file with autoreconf to produce a configure script.
-AC_PREREQ(2.64)
AC_INIT(package-unused, version-unused,, libstdc++)
AC_CONFIG_SRCDIR(src/shared/hashtable-aux.cc)
AC_CONFIG_HEADER(config.h)
diff --git a/libstdc++-v3/doc/Makefile.in b/libstdc++-v3/doc/Makefile.in
index c19f7bd..0b2f6d6 100644
--- a/libstdc++-v3/doc/Makefile.in
+++ b/libstdc++-v3/doc/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -15,23 +14,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
esac; \
- test $$am__dry = yes; \
- }
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -51,8 +88,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = doc
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -79,9 +114,22 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
depcomp =
am__depfiles_maybe =
SOURCES =
@@ -90,11 +138,13 @@ am__can_run_installinfo = \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -614,7 +664,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps doc/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps doc/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -623,7 +672,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -639,11 +688,11 @@ mostlyclean-libtool:
clean-libtool:
-rm -rf .libs _libs
-tags: TAGS
-TAGS:
+tags TAGS:
+
+ctags CTAGS:
-ctags: CTAGS
-CTAGS:
+cscope cscopelist:
check-am: all-am
check: check-am
@@ -727,15 +776,18 @@ uninstall-am:
.MAKE: install-am install-strip
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
- clean-local distclean distclean-generic distclean-libtool dvi \
- dvi-am html html-am info info-am install install-am \
- install-data install-data-am install-dvi install-dvi-am \
- install-exec install-exec-am install-html install-html-am \
- install-info install-info-am install-man install-pdf \
- install-pdf-am install-ps install-ps-am install-strip \
- installcheck installcheck-am installdirs maintainer-clean \
- maintainer-clean-generic mostlyclean mostlyclean-generic \
- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
+ clean-local cscopelist-am ctags-am distclean distclean-generic \
+ distclean-libtool dvi dvi-am html html-am info info-am install \
+ install-am install-data install-data-am install-dvi \
+ install-dvi-am install-exec install-exec-am install-html \
+ install-html-am install-info install-info-am install-man \
+ install-pdf install-pdf-am install-ps install-ps-am \
+ install-strip installcheck installcheck-am installdirs \
+ maintainer-clean maintainer-clean-generic mostlyclean \
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ tags-am uninstall uninstall-am
+
+.PRECIOUS: Makefile
# Documentation primary rules.
diff --git a/libstdc++-v3/include/Makefile.in b/libstdc++-v3/include/Makefile.in
index f872d92..9a1df29 100644
--- a/libstdc++-v3/include/Makefile.in
+++ b/libstdc++-v3/include/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -15,23 +14,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
esac; \
- test $$am__dry = yes; \
- }
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -51,8 +88,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = include
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -79,9 +114,22 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
depcomp =
am__depfiles_maybe =
SOURCES =
@@ -90,11 +138,13 @@ am__can_run_installinfo = \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -1337,7 +1387,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -1353,11 +1403,11 @@ mostlyclean-libtool:
clean-libtool:
-rm -rf .libs _libs
-tags: TAGS
-TAGS:
+tags TAGS:
+
+ctags CTAGS:
-ctags: CTAGS
-CTAGS:
+cscope cscopelist:
check-am: all-am
check: check-am
@@ -1463,16 +1513,19 @@ uninstall-am:
.MAKE: install-am install-strip
.PHONY: all all-am all-local check check-am clean clean-generic \
- clean-libtool clean-local distclean distclean-generic \
- distclean-libtool dvi dvi-am html html-am info info-am install \
- install-am install-data install-data-am install-data-local \
- install-dvi install-dvi-am install-exec install-exec-am \
- install-html install-html-am install-info install-info-am \
- install-man install-pdf install-pdf-am install-ps \
- install-ps-am install-strip installcheck installcheck-am \
- installdirs maintainer-clean maintainer-clean-generic \
- mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
- ps ps-am uninstall uninstall-am
+ clean-libtool clean-local cscopelist-am ctags-am distclean \
+ distclean-generic distclean-libtool dvi dvi-am html html-am \
+ info info-am install install-am install-data install-data-am \
+ install-data-local install-dvi install-dvi-am install-exec \
+ install-exec-am install-html install-html-am install-info \
+ install-info-am install-man install-pdf install-pdf-am \
+ install-ps install-ps-am install-strip installcheck \
+ installcheck-am installdirs maintainer-clean \
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
+ uninstall-am
+
+.PRECIOUS: Makefile
# Here are the rules for building the headers
diff --git a/libstdc++-v3/libsupc++/Makefile.in b/libstdc++-v3/libsupc++/Makefile.in
index 1e63bab..0bba2cf 100644
--- a/libstdc++-v3/libsupc++/Makefile.in
+++ b/libstdc++-v3/libsupc++/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -17,23 +16,61 @@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
- test $$am__dry = yes; \
- }
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -53,8 +90,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am $(bits_HEADERS) $(std_HEADERS)
subdir = libsupc++
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -81,6 +116,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(bits_HEADERS) $(std_HEADERS)
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
@@ -137,23 +173,55 @@ am__objects_1 = array_type_info.lo atexit_arm.lo atexit_thread.lo \
am_libsupc___la_OBJECTS = $(am__objects_1) $(am__objects_2) \
$(am__objects_3)
libsupc___la_OBJECTS = $(am_libsupc___la_OBJECTS)
+AM_V_lt = $(am__v_lt_@AM_V@)
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
+am__v_lt_0 = --silent
+am__v_lt_1 =
libsupc__convenience_la_LIBADD =
am_libsupc__convenience_la_OBJECTS = $(am__objects_1) $(am__objects_2) \
$(am__objects_3)
libsupc__convenience_la_OBJECTS = \
$(am_libsupc__convenience_la_OBJECTS)
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp =
am__depfiles_maybe =
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+AM_V_CC = $(am__v_CC_@AM_V@)
+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
+am__v_CC_0 = @echo " CC " $@;
+am__v_CC_1 =
CCLD = $(CC)
-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
- --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
- $(LDFLAGS) -o $@
+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
+am__v_CCLD_0 = @echo " CCLD " $@;
+am__v_CCLD_1 =
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+AM_V_CXX = $(am__v_CXX_@AM_V@)
+am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
+am__v_CXX_0 = @echo " CXX " $@;
+am__v_CXX_1 =
CXXLD = $(CXX)
+AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
+am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
+am__v_CXXLD_0 = @echo " CXXLD " $@;
+am__v_CXXLD_1 =
SOURCES = $(libsupc___la_SOURCES) $(libsupc__convenience_la_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
@@ -161,6 +229,23 @@ am__can_run_installinfo = \
*) (install-info --version) >/dev/null 2>&1;; \
esac
HEADERS = $(bits_HEADERS) $(std_HEADERS)
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
@@ -168,6 +253,7 @@ ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -578,7 +664,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps libsupc++/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps libsupc++/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -587,7 +672,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -600,12 +685,15 @@ $(am__aclocal_m4_deps):
clean-noinstLTLIBRARIES:
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
- @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
- test "$$dir" != "$$p" || dir=.; \
- echo "rm -f \"$${dir}/so_locations\""; \
- rm -f "$${dir}/so_locations"; \
- done
+ @list='$(noinst_LTLIBRARIES)'; \
+ locs=`for p in $$list; do echo $$p; done | \
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
+ sort -u`; \
+ test -z "$$locs" || { \
+ echo rm -f $${locs}; \
+ rm -f $${locs}; \
+ }
+
install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
@$(NORMAL_INSTALL)
@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
@@ -632,16 +720,20 @@ uninstall-toolexeclibLTLIBRARIES:
clean-toolexeclibLTLIBRARIES:
-test -z "$(toolexeclib_LTLIBRARIES)" || rm -f $(toolexeclib_LTLIBRARIES)
- @list='$(toolexeclib_LTLIBRARIES)'; for p in $$list; do \
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
- test "$$dir" != "$$p" || dir=.; \
- echo "rm -f \"$${dir}/so_locations\""; \
- rm -f "$${dir}/so_locations"; \
- done
+ @list='$(toolexeclib_LTLIBRARIES)'; \
+ locs=`for p in $$list; do echo $$p; done | \
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
+ sort -u`; \
+ test -z "$$locs" || { \
+ echo rm -f $${locs}; \
+ rm -f $${locs}; \
+ }
+
libsupc++.la: $(libsupc___la_OBJECTS) $(libsupc___la_DEPENDENCIES) $(EXTRA_libsupc___la_DEPENDENCIES)
- $(CXXLINK) -rpath $(toolexeclibdir) $(libsupc___la_OBJECTS) $(libsupc___la_LIBADD) $(LIBS)
+ $(AM_V_CXXLD)$(CXXLINK) -rpath $(toolexeclibdir) $(libsupc___la_OBJECTS) $(libsupc___la_LIBADD) $(LIBS)
+
libsupc++convenience.la: $(libsupc__convenience_la_OBJECTS) $(libsupc__convenience_la_DEPENDENCIES) $(EXTRA_libsupc__convenience_la_DEPENDENCIES)
- $(CXXLINK) $(libsupc__convenience_la_OBJECTS) $(libsupc__convenience_la_LIBADD) $(LIBS)
+ $(AM_V_CXXLD)$(CXXLINK) $(libsupc__convenience_la_OBJECTS) $(libsupc__convenience_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
@@ -650,22 +742,22 @@ distclean-compile:
-rm -f *.tab.c
.c.o:
- $(COMPILE) -c $<
+ $(AM_V_CC)$(COMPILE) -c -o $@ $<
.c.obj:
- $(COMPILE) -c `$(CYGPATH_W) '$<'`
+ $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.c.lo:
- $(LTCOMPILE) -c -o $@ $<
+ $(AM_V_CC)$(LTCOMPILE) -c -o $@ $<
.cc.o:
- $(CXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $<
.cc.obj:
- $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cc.lo:
- $(LTCXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $<
mostlyclean-libtool:
-rm -f *.lo
@@ -673,26 +765,15 @@ mostlyclean-libtool:
clean-libtool:
-rm -rf .libs _libs
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
+ID: $(am__tagged_files)
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
+tags: tags-am
+TAGS: tags
+
+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ $(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
@@ -704,15 +785,11 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$$unique; \
fi; \
fi
-ctags: CTAGS
-CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ctags: ctags-am
+
+CTAGS: ctags
+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ $(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
@@ -721,6 +798,21 @@ GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
+cscopelist: cscopelist-am
+
+cscopelist-am: $(am__tagged_files)
+ list='$(am__tagged_files)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -834,23 +926,25 @@ uninstall-am: uninstall-bitsHEADERS uninstall-stdHEADERS \
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
clean-libtool clean-noinstLTLIBRARIES \
- clean-toolexeclibLTLIBRARIES ctags distclean distclean-compile \
- distclean-generic distclean-libtool distclean-tags dvi dvi-am \
- html html-am info info-am install install-am \
- install-bitsHEADERS install-data install-data-am install-dvi \
- install-dvi-am install-exec install-exec-am install-html \
- install-html-am install-info install-info-am install-man \
- install-pdf install-pdf-am install-ps install-ps-am \
- install-stdHEADERS install-strip \
+ clean-toolexeclibLTLIBRARIES cscopelist-am ctags ctags-am \
+ distclean distclean-compile distclean-generic \
+ distclean-libtool distclean-tags dvi dvi-am html html-am info \
+ info-am install install-am install-bitsHEADERS install-data \
+ install-data-am install-dvi install-dvi-am install-exec \
+ install-exec-am install-html install-html-am install-info \
+ install-info-am install-man install-pdf install-pdf-am \
+ install-ps install-ps-am install-stdHEADERS install-strip \
install-toolexeclibLTLIBRARIES installcheck installcheck-am \
installdirs maintainer-clean maintainer-clean-generic \
mostlyclean mostlyclean-compile mostlyclean-generic \
- mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
uninstall-am uninstall-bitsHEADERS uninstall-stdHEADERS \
uninstall-toolexeclibLTLIBRARIES
+.PRECIOUS: Makefile
+
cp-demangle.c:
rm -f $@
diff --git a/libstdc++-v3/po/Makefile.in b/libstdc++-v3/po/Makefile.in
index 1f0ac5b..d0c57f3 100644
--- a/libstdc++-v3/po/Makefile.in
+++ b/libstdc++-v3/po/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -15,23 +14,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
esac; \
- test $$am__dry = yes; \
- }
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -51,8 +88,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = po
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -79,9 +114,22 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
depcomp =
am__depfiles_maybe =
SOURCES =
@@ -90,11 +138,13 @@ am__can_run_installinfo = \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -346,7 +396,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps po/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps po/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -355,7 +404,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -371,11 +420,11 @@ mostlyclean-libtool:
clean-libtool:
-rm -rf .libs _libs
-tags: TAGS
-TAGS:
+tags TAGS:
+
+ctags CTAGS:
-ctags: CTAGS
-CTAGS:
+cscope cscopelist:
check-am: all-am
check: check-am
@@ -481,16 +530,19 @@ uninstall-am:
.MAKE: install-am install-strip
.PHONY: all all-am all-local check check-am clean clean-generic \
- clean-libtool distclean distclean-generic distclean-libtool \
- dvi dvi-am html html-am info info-am install install-am \
- install-data install-data-am install-data-local install-dvi \
- install-dvi-am install-exec install-exec-am install-html \
- install-html-am install-info install-info-am install-man \
- install-pdf install-pdf-am install-ps install-ps-am \
- install-strip installcheck installcheck-am installdirs \
- maintainer-clean maintainer-clean-generic mostlyclean \
- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
- uninstall uninstall-am
+ clean-libtool cscopelist-am ctags-am distclean \
+ distclean-generic distclean-libtool dvi dvi-am html html-am \
+ info info-am install install-am install-data install-data-am \
+ install-data-local install-dvi install-dvi-am install-exec \
+ install-exec-am install-html install-html-am install-info \
+ install-info-am install-man install-pdf install-pdf-am \
+ install-ps install-ps-am install-strip installcheck \
+ installcheck-am installdirs maintainer-clean \
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
+ uninstall-am
+
+.PRECIOUS: Makefile
.po.mo:
diff --git a/libstdc++-v3/python/Makefile.in b/libstdc++-v3/python/Makefile.in
index f033a05..ee7387f 100644
--- a/libstdc++-v3/python/Makefile.in
+++ b/libstdc++-v3/python/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -16,23 +15,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
- test $$am__dry = yes; \
- }
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -52,8 +89,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = python
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -80,9 +115,22 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
depcomp =
am__depfiles_maybe =
SOURCES =
@@ -120,11 +168,13 @@ am__uninstall_files_from_dir = { \
}
am__installdirs = "$(DESTDIR)$(pythondir)"
DATA = $(nobase_python_DATA)
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -367,7 +417,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps python/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps python/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -376,7 +425,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -416,11 +465,11 @@ uninstall-nobase_pythonDATA:
@list='$(nobase_python_DATA)'; test -n "$(pythondir)" || list=; \
$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
dir='$(DESTDIR)$(pythondir)'; $(am__uninstall_files_from_dir)
-tags: TAGS
-TAGS:
+tags TAGS:
+
+ctags CTAGS:
-ctags: CTAGS
-CTAGS:
+cscope cscopelist:
check-am: all-am
check: check-am
@@ -528,17 +577,19 @@ uninstall-am: uninstall-nobase_pythonDATA
.MAKE: install-am install-strip
.PHONY: all all-am all-local check check-am clean clean-generic \
- clean-libtool distclean distclean-generic distclean-libtool \
- dvi dvi-am html html-am info info-am install install-am \
- install-data install-data-am install-data-local install-dvi \
- install-dvi-am install-exec install-exec-am install-html \
- install-html-am install-info install-info-am install-man \
- install-nobase_pythonDATA install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
- maintainer-clean-generic mostlyclean mostlyclean-generic \
- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
- uninstall-nobase_pythonDATA
+ clean-libtool cscopelist-am ctags-am distclean \
+ distclean-generic distclean-libtool dvi dvi-am html html-am \
+ info info-am install install-am install-data install-data-am \
+ install-data-local install-dvi install-dvi-am install-exec \
+ install-exec-am install-html install-html-am install-info \
+ install-info-am install-man install-nobase_pythonDATA \
+ install-pdf install-pdf-am install-ps install-ps-am \
+ install-strip installcheck installcheck-am installdirs \
+ maintainer-clean maintainer-clean-generic mostlyclean \
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ tags-am uninstall uninstall-am uninstall-nobase_pythonDATA
+
+.PRECIOUS: Makefile
all-local: gdb.py
diff --git a/libstdc++-v3/src/Makefile.in b/libstdc++-v3/src/Makefile.in
index 901533e..de2324e 100644
--- a/libstdc++-v3/src/Makefile.in
+++ b/libstdc++-v3/src/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -16,23 +15,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
- test $$am__dry = yes; \
- }
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -52,8 +89,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = src
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -80,6 +115,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
@@ -127,20 +163,45 @@ libvtv_la_LIBADD =
@VTV_CYGMIN_TRUE@am_libvtv_la_OBJECTS = vtv_stubs.lo
libvtv_la_OBJECTS = $(am_libvtv_la_OBJECTS)
@VTV_CYGMIN_TRUE@am_libvtv_la_rpath = -rpath $(toolexeclibdir)
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp =
am__depfiles_maybe =
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+AM_V_lt = $(am__v_lt_@AM_V@)
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
+am__v_lt_0 = --silent
+am__v_lt_1 =
+AM_V_CXX = $(am__v_CXX_@AM_V@)
+am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
+am__v_CXX_0 = @echo " CXX " $@;
+am__v_CXX_1 =
CXXLD = $(CXX)
+AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
+am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
+am__v_CXXLD_0 = @echo " CXXLD " $@;
+am__v_CXXLD_1 =
SOURCES = $(libstdc___la_SOURCES) $(libvtv_la_SOURCES)
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
- html-recursive info-recursive install-data-recursive \
- install-dvi-recursive install-exec-recursive \
- install-html-recursive install-info-recursive \
- install-pdf-recursive install-ps-recursive install-recursive \
- installcheck-recursive installdirs-recursive pdf-recursive \
- ps-recursive uninstall-recursive
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
+ ctags-recursive dvi-recursive html-recursive info-recursive \
+ install-data-recursive install-dvi-recursive \
+ install-exec-recursive install-html-recursive \
+ install-info-recursive install-pdf-recursive \
+ install-ps-recursive install-recursive installcheck-recursive \
+ installdirs-recursive pdf-recursive ps-recursive \
+ tags-recursive uninstall-recursive
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
@@ -148,8 +209,28 @@ am__can_run_installinfo = \
esac
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
- $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS
+am__recursive_targets = \
+ $(RECURSIVE_TARGETS) \
+ $(RECURSIVE_CLEAN_TARGETS) \
+ $(am__extra_recursive_targets)
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = c++98 c++11 c++17 filesystem
@@ -158,6 +239,7 @@ ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -556,7 +638,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps src/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -565,7 +646,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -575,6 +656,7 @@ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
+
install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
@$(NORMAL_INSTALL)
@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
@@ -601,16 +683,20 @@ uninstall-toolexeclibLTLIBRARIES:
clean-toolexeclibLTLIBRARIES:
-test -z "$(toolexeclib_LTLIBRARIES)" || rm -f $(toolexeclib_LTLIBRARIES)
- @list='$(toolexeclib_LTLIBRARIES)'; for p in $$list; do \
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
- test "$$dir" != "$$p" || dir=.; \
- echo "rm -f \"$${dir}/so_locations\""; \
- rm -f "$${dir}/so_locations"; \
- done
+ @list='$(toolexeclib_LTLIBRARIES)'; \
+ locs=`for p in $$list; do echo $$p; done | \
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
+ sort -u`; \
+ test -z "$$locs" || { \
+ echo rm -f $${locs}; \
+ rm -f $${locs}; \
+ }
+
libstdc++.la: $(libstdc___la_OBJECTS) $(libstdc___la_DEPENDENCIES) $(EXTRA_libstdc___la_DEPENDENCIES)
- $(libstdc___la_LINK) $(am_libstdc___la_rpath) $(libstdc___la_OBJECTS) $(libstdc___la_LIBADD) $(LIBS)
+ $(AM_V_GEN)$(libstdc___la_LINK) $(am_libstdc___la_rpath) $(libstdc___la_OBJECTS) $(libstdc___la_LIBADD) $(LIBS)
+
libvtv.la: $(libvtv_la_OBJECTS) $(libvtv_la_DEPENDENCIES) $(EXTRA_libvtv_la_DEPENDENCIES)
- $(libvtv_la_LINK) $(am_libvtv_la_rpath) $(libvtv_la_OBJECTS) $(libvtv_la_LIBADD) $(LIBS)
+ $(AM_V_GEN)$(libvtv_la_LINK) $(am_libvtv_la_rpath) $(libvtv_la_OBJECTS) $(libvtv_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
@@ -619,13 +705,13 @@ distclean-compile:
-rm -f *.tab.c
.cc.o:
- $(CXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $<
.cc.obj:
- $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cc.lo:
- $(LTCXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $<
mostlyclean-libtool:
-rm -f *.lo
@@ -634,22 +720,25 @@ clean-libtool:
-rm -rf .libs _libs
# This directory's subdirectories are mostly independent; you can cd
-# into them and run `make' without going through this Makefile.
-# To change the values of `make' variables: instead of editing Makefiles,
-# (1) if the variable is set in `config.status', edit `config.status'
-# (which will cause the Makefiles to be regenerated when you run `make');
-# (2) otherwise, pass the desired values on the `make' command line.
-$(RECURSIVE_TARGETS):
- @fail= failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
+# into them and run 'make' without going through this Makefile.
+# To change the values of 'make' variables: instead of editing Makefiles,
+# (1) if the variable is set in 'config.status', edit 'config.status'
+# (which will cause the Makefiles to be regenerated when you run 'make');
+# (2) otherwise, pass the desired values on the 'make' command line.
+$(am__recursive_targets):
+ @fail=; \
+ if $(am__make_keepgoing); then \
+ failcom='fail=yes'; \
+ else \
+ failcom='exit 1'; \
+ fi; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
+ case "$@" in \
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+ *) list='$(SUBDIRS)' ;; \
+ esac; \
+ for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
@@ -664,57 +753,12 @@ $(RECURSIVE_TARGETS):
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
-$(RECURSIVE_CLEAN_TARGETS):
- @fail= failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- case "$@" in \
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
- *) list='$(SUBDIRS)' ;; \
- esac; \
- rev=''; for subdir in $$list; do \
- if test "$$subdir" = "."; then :; else \
- rev="$$subdir $$rev"; \
- fi; \
- done; \
- rev="$$rev ."; \
- target=`echo $@ | sed s/-recursive//`; \
- for subdir in $$rev; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done && test -z "$$fail"
-tags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- done
-ctags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- done
+ID: $(am__tagged_files)
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
+tags: tags-recursive
+TAGS: tags
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
@@ -730,12 +774,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
fi; \
done; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ $(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
@@ -747,15 +786,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$$unique; \
fi; \
fi
-ctags: CTAGS
-CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ctags: ctags-recursive
+
+CTAGS: ctags
+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ $(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
@@ -764,6 +799,21 @@ GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
+cscopelist: cscopelist-recursive
+
+cscopelist-am: $(am__tagged_files)
+ list='$(am__tagged_files)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -875,13 +925,12 @@ ps-am:
uninstall-am: uninstall-toolexeclibLTLIBRARIES
-.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
- install-am install-strip tags-recursive
+.MAKE: $(am__recursive_targets) install-am install-strip
-.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
- all all-am all-local check check-am clean clean-generic \
- clean-libtool clean-local clean-toolexeclibLTLIBRARIES ctags \
- ctags-recursive distclean distclean-compile distclean-generic \
+.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \
+ check check-am clean clean-generic clean-libtool clean-local \
+ clean-toolexeclibLTLIBRARIES cscopelist-am ctags ctags-am \
+ distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags dvi dvi-am html html-am info \
info-am install install-am install-data install-data-am \
install-data-local install-dvi install-dvi-am install-exec \
@@ -892,9 +941,11 @@ uninstall-am: uninstall-toolexeclibLTLIBRARIES
installdirs installdirs-am maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
- tags tags-recursive uninstall uninstall-am \
+ tags tags-am uninstall uninstall-am \
uninstall-toolexeclibLTLIBRARIES
+.PRECIOUS: Makefile
+
@VTV_CYGMIN_TRUE@vtv_stubs.cc:
@VTV_CYGMIN_TRUE@ rm -f $@
diff --git a/libstdc++-v3/src/c++11/Makefile.in b/libstdc++-v3/src/c++11/Makefile.in
index d4c4b72..92816c8 100644
--- a/libstdc++-v3/src/c++11/Makefile.in
+++ b/libstdc++-v3/src/c++11/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -16,23 +15,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
esac; \
- test $$am__dry = yes; \
- }
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -52,8 +89,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = src/c++11
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -80,6 +115,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
@@ -114,18 +150,59 @@ am__objects_3 = chrono.lo codecvt.lo condition_variable.lo \
@ENABLE_EXTERN_TEMPLATE_TRUE@ wstring-io-inst.lo
am_libc__11convenience_la_OBJECTS = $(am__objects_3) $(am__objects_5)
libc__11convenience_la_OBJECTS = $(am_libc__11convenience_la_OBJECTS)
+AM_V_lt = $(am__v_lt_@AM_V@)
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
+am__v_lt_0 = --silent
+am__v_lt_1 =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp =
am__depfiles_maybe =
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+AM_V_CXX = $(am__v_CXX_@AM_V@)
+am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
+am__v_CXX_0 = @echo " CXX " $@;
+am__v_CXX_1 =
CXXLD = $(CXX)
+AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
+am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
+am__v_CXXLD_0 = @echo " CXXLD " $@;
+am__v_CXXLD_1 =
SOURCES = $(libc__11convenience_la_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
@@ -133,6 +210,7 @@ ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -514,7 +592,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/c++11/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps src/c++11/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -523,7 +600,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -536,14 +613,17 @@ $(am__aclocal_m4_deps):
clean-noinstLTLIBRARIES:
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
- @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
- test "$$dir" != "$$p" || dir=.; \
- echo "rm -f \"$${dir}/so_locations\""; \
- rm -f "$${dir}/so_locations"; \
- done
+ @list='$(noinst_LTLIBRARIES)'; \
+ locs=`for p in $$list; do echo $$p; done | \
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
+ sort -u`; \
+ test -z "$$locs" || { \
+ echo rm -f $${locs}; \
+ rm -f $${locs}; \
+ }
+
libc++11convenience.la: $(libc__11convenience_la_OBJECTS) $(libc__11convenience_la_DEPENDENCIES) $(EXTRA_libc__11convenience_la_DEPENDENCIES)
- $(CXXLINK) $(libc__11convenience_la_OBJECTS) $(libc__11convenience_la_LIBADD) $(LIBS)
+ $(AM_V_CXXLD)$(CXXLINK) $(libc__11convenience_la_OBJECTS) $(libc__11convenience_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
@@ -552,13 +632,13 @@ distclean-compile:
-rm -f *.tab.c
.cc.o:
- $(CXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $<
.cc.obj:
- $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cc.lo:
- $(LTCXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $<
mostlyclean-libtool:
-rm -f *.lo
@@ -566,26 +646,15 @@ mostlyclean-libtool:
clean-libtool:
-rm -rf .libs _libs
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
+ID: $(am__tagged_files)
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
+tags: tags-am
+TAGS: tags
+
+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ $(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
@@ -597,15 +666,11 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$$unique; \
fi; \
fi
-ctags: CTAGS
-CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ctags: ctags-am
+
+CTAGS: ctags
+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ $(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
@@ -614,6 +679,21 @@ GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
+cscopelist: cscopelist-am
+
+cscopelist-am: $(am__tagged_files)
+ list='$(am__tagged_files)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -722,18 +802,21 @@ uninstall-am:
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES ctags distclean \
- distclean-compile distclean-generic distclean-libtool \
- distclean-tags dvi dvi-am html html-am info info-am install \
- install-am install-data install-data-am install-dvi \
- install-dvi-am install-exec install-exec-am install-html \
- install-html-am install-info install-info-am install-man \
- install-pdf install-pdf-am install-ps install-ps-am \
- install-strip installcheck installcheck-am installdirs \
- maintainer-clean maintainer-clean-generic mostlyclean \
- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
- pdf pdf-am ps ps-am tags uninstall uninstall-am
+.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
+ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
+ ctags-am distclean distclean-compile distclean-generic \
+ distclean-libtool distclean-tags dvi dvi-am html html-am info \
+ info-am install install-am install-data install-data-am \
+ install-dvi install-dvi-am install-exec install-exec-am \
+ install-html install-html-am install-info install-info-am \
+ install-man install-pdf install-pdf-am install-ps \
+ install-ps-am install-strip installcheck installcheck-am \
+ installdirs maintainer-clean maintainer-clean-generic \
+ mostlyclean mostlyclean-compile mostlyclean-generic \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
+ uninstall-am
+
+.PRECIOUS: Makefile
ctype_configure_char.cc: ${glibcxx_srcdir}/$(OS_INC_SRCDIR)/ctype_configure_char.cc
diff --git a/libstdc++-v3/src/c++17/Makefile.in b/libstdc++-v3/src/c++17/Makefile.in
index 158dca9..efa4fd9 100644
--- a/libstdc++-v3/src/c++17/Makefile.in
+++ b/libstdc++-v3/src/c++17/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -16,23 +15,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
esac; \
- test $$am__dry = yes; \
- }
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -52,8 +89,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = src/c++17
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -80,6 +115,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
@@ -90,18 +126,59 @@ am__objects_2 =
@ENABLE_EXTERN_TEMPLATE_TRUE@am__objects_3 = $(am__objects_2)
am_libc__17convenience_la_OBJECTS = $(am__objects_1) $(am__objects_3)
libc__17convenience_la_OBJECTS = $(am_libc__17convenience_la_OBJECTS)
+AM_V_lt = $(am__v_lt_@AM_V@)
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
+am__v_lt_0 = --silent
+am__v_lt_1 =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp =
am__depfiles_maybe =
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+AM_V_CXX = $(am__v_CXX_@AM_V@)
+am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
+am__v_CXX_0 = @echo " CXX " $@;
+am__v_CXX_1 =
CXXLD = $(CXX)
+AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
+am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
+am__v_CXXLD_0 = @echo " CXXLD " $@;
+am__v_CXXLD_1 =
SOURCES = $(libc__17convenience_la_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
@@ -109,6 +186,7 @@ ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -424,7 +502,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/c++17/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps src/c++17/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -433,7 +510,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -446,14 +523,17 @@ $(am__aclocal_m4_deps):
clean-noinstLTLIBRARIES:
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
- @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
- test "$$dir" != "$$p" || dir=.; \
- echo "rm -f \"$${dir}/so_locations\""; \
- rm -f "$${dir}/so_locations"; \
- done
+ @list='$(noinst_LTLIBRARIES)'; \
+ locs=`for p in $$list; do echo $$p; done | \
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
+ sort -u`; \
+ test -z "$$locs" || { \
+ echo rm -f $${locs}; \
+ rm -f $${locs}; \
+ }
+
libc++17convenience.la: $(libc__17convenience_la_OBJECTS) $(libc__17convenience_la_DEPENDENCIES) $(EXTRA_libc__17convenience_la_DEPENDENCIES)
- $(CXXLINK) $(libc__17convenience_la_OBJECTS) $(libc__17convenience_la_LIBADD) $(LIBS)
+ $(AM_V_CXXLD)$(CXXLINK) $(libc__17convenience_la_OBJECTS) $(libc__17convenience_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
@@ -462,13 +542,13 @@ distclean-compile:
-rm -f *.tab.c
.cc.o:
- $(CXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $<
.cc.obj:
- $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cc.lo:
- $(LTCXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $<
mostlyclean-libtool:
-rm -f *.lo
@@ -476,26 +556,15 @@ mostlyclean-libtool:
clean-libtool:
-rm -rf .libs _libs
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
+ID: $(am__tagged_files)
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
+tags: tags-am
+TAGS: tags
+
+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ $(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
@@ -507,15 +576,11 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$$unique; \
fi; \
fi
-ctags: CTAGS
-CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ctags: ctags-am
+
+CTAGS: ctags
+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ $(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
@@ -524,6 +589,21 @@ GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
+cscopelist: cscopelist-am
+
+cscopelist-am: $(am__tagged_files)
+ list='$(am__tagged_files)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -632,18 +712,21 @@ uninstall-am:
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES ctags distclean \
- distclean-compile distclean-generic distclean-libtool \
- distclean-tags dvi dvi-am html html-am info info-am install \
- install-am install-data install-data-am install-dvi \
- install-dvi-am install-exec install-exec-am install-html \
- install-html-am install-info install-info-am install-man \
- install-pdf install-pdf-am install-ps install-ps-am \
- install-strip installcheck installcheck-am installdirs \
- maintainer-clean maintainer-clean-generic mostlyclean \
- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
- pdf pdf-am ps ps-am tags uninstall uninstall-am
+.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
+ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
+ ctags-am distclean distclean-compile distclean-generic \
+ distclean-libtool distclean-tags dvi dvi-am html html-am info \
+ info-am install install-am install-data install-data-am \
+ install-dvi install-dvi-am install-exec install-exec-am \
+ install-html install-html-am install-info install-info-am \
+ install-man install-pdf install-pdf-am install-ps \
+ install-ps-am install-strip installcheck installcheck-am \
+ installdirs maintainer-clean maintainer-clean-generic \
+ mostlyclean mostlyclean-compile mostlyclean-generic \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
+ uninstall-am
+
+.PRECIOUS: Makefile
vpath % $(top_srcdir)/src/c++17
diff --git a/libstdc++-v3/src/c++98/Makefile.in b/libstdc++-v3/src/c++98/Makefile.in
index 33f2ac0..009cb11 100644
--- a/libstdc++-v3/src/c++98/Makefile.in
+++ b/libstdc++-v3/src/c++98/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -16,23 +15,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
esac; \
- test $$am__dry = yes; \
- }
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -52,8 +89,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = src/c++98
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -80,6 +115,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
@@ -110,18 +146,59 @@ am__objects_7 = bitmap_allocator.lo pool_allocator.lo mt_allocator.lo \
$(am__objects_6)
am_libc__98convenience_la_OBJECTS = $(am__objects_7)
libc__98convenience_la_OBJECTS = $(am_libc__98convenience_la_OBJECTS)
+AM_V_lt = $(am__v_lt_@AM_V@)
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
+am__v_lt_0 = --silent
+am__v_lt_1 =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp =
am__depfiles_maybe =
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+AM_V_CXX = $(am__v_CXX_@AM_V@)
+am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
+am__v_CXX_0 = @echo " CXX " $@;
+am__v_CXX_1 =
CXXLD = $(CXX)
+AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
+am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
+am__v_CXXLD_0 = @echo " CXXLD " $@;
+am__v_CXXLD_1 =
SOURCES = $(libc__98convenience_la_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
@@ -129,6 +206,7 @@ ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -518,7 +596,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/c++98/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps src/c++98/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -527,7 +604,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -540,14 +617,17 @@ $(am__aclocal_m4_deps):
clean-noinstLTLIBRARIES:
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
- @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
- test "$$dir" != "$$p" || dir=.; \
- echo "rm -f \"$${dir}/so_locations\""; \
- rm -f "$${dir}/so_locations"; \
- done
+ @list='$(noinst_LTLIBRARIES)'; \
+ locs=`for p in $$list; do echo $$p; done | \
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
+ sort -u`; \
+ test -z "$$locs" || { \
+ echo rm -f $${locs}; \
+ rm -f $${locs}; \
+ }
+
libc++98convenience.la: $(libc__98convenience_la_OBJECTS) $(libc__98convenience_la_DEPENDENCIES) $(EXTRA_libc__98convenience_la_DEPENDENCIES)
- $(CXXLINK) $(libc__98convenience_la_OBJECTS) $(libc__98convenience_la_LIBADD) $(LIBS)
+ $(AM_V_CXXLD)$(CXXLINK) $(libc__98convenience_la_OBJECTS) $(libc__98convenience_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
@@ -556,13 +636,13 @@ distclean-compile:
-rm -f *.tab.c
.cc.o:
- $(CXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $<
.cc.obj:
- $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cc.lo:
- $(LTCXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $<
mostlyclean-libtool:
-rm -f *.lo
@@ -570,26 +650,15 @@ mostlyclean-libtool:
clean-libtool:
-rm -rf .libs _libs
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
+ID: $(am__tagged_files)
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
+tags: tags-am
+TAGS: tags
+
+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ $(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
@@ -601,15 +670,11 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$$unique; \
fi; \
fi
-ctags: CTAGS
-CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ctags: ctags-am
+
+CTAGS: ctags
+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ $(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
@@ -618,6 +683,21 @@ GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
+cscopelist: cscopelist-am
+
+cscopelist-am: $(am__tagged_files)
+ list='$(am__tagged_files)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -726,18 +806,21 @@ uninstall-am:
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES ctags distclean \
- distclean-compile distclean-generic distclean-libtool \
- distclean-tags dvi dvi-am html html-am info info-am install \
- install-am install-data install-data-am install-dvi \
- install-dvi-am install-exec install-exec-am install-html \
- install-html-am install-info install-info-am install-man \
- install-pdf install-pdf-am install-ps install-ps-am \
- install-strip installcheck installcheck-am installdirs \
- maintainer-clean maintainer-clean-generic mostlyclean \
- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
- pdf pdf-am ps ps-am tags uninstall uninstall-am
+.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
+ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
+ ctags-am distclean distclean-compile distclean-generic \
+ distclean-libtool distclean-tags dvi dvi-am html html-am info \
+ info-am install install-am install-data install-data-am \
+ install-dvi install-dvi-am install-exec install-exec-am \
+ install-html install-html-am install-info install-info-am \
+ install-man install-pdf install-pdf-am install-ps \
+ install-ps-am install-strip installcheck installcheck-am \
+ installdirs maintainer-clean maintainer-clean-generic \
+ mostlyclean mostlyclean-compile mostlyclean-generic \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
+ uninstall-am
+
+.PRECIOUS: Makefile
codecvt_members.cc: ${glibcxx_srcdir}/$(CCODECVT_CC)
diff --git a/libstdc++-v3/src/filesystem/Makefile.in b/libstdc++-v3/src/filesystem/Makefile.in
index e38115a..f234511 100644
--- a/libstdc++-v3/src/filesystem/Makefile.in
+++ b/libstdc++-v3/src/filesystem/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -16,23 +15,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
- test $$am__dry = yes; \
- }
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -52,8 +89,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = src/filesystem
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -80,6 +115,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
@@ -120,18 +156,59 @@ am__objects_2 = dir.lo ops.lo path.lo std-dir.lo std-ops.lo \
std-path.lo $(am__objects_1)
am_libstdc__fs_la_OBJECTS = $(am__objects_2)
libstdc__fs_la_OBJECTS = $(am_libstdc__fs_la_OBJECTS)
+AM_V_lt = $(am__v_lt_@AM_V@)
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
+am__v_lt_0 = --silent
+am__v_lt_1 =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp =
am__depfiles_maybe =
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+AM_V_CXX = $(am__v_CXX_@AM_V@)
+am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
+am__v_CXX_0 = @echo " CXX " $@;
+am__v_CXX_1 =
CXXLD = $(CXX)
+AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
+am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
+am__v_CXXLD_0 = @echo " CXXLD " $@;
+am__v_CXXLD_1 =
SOURCES = $(libstdc__fs_la_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates. Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+ BEGIN { nonempty = 0; } \
+ { items[$$0] = 1; nonempty = 1; } \
+ END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique. This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+ list='$(am__tagged_files)'; \
+ unique=`for i in $$list; do \
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
@@ -139,6 +216,7 @@ ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -461,7 +539,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/filesystem/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps src/filesystem/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -470,7 +547,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -480,6 +557,7 @@ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
+
install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
@$(NORMAL_INSTALL)
@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
@@ -506,14 +584,17 @@ uninstall-toolexeclibLTLIBRARIES:
clean-toolexeclibLTLIBRARIES:
-test -z "$(toolexeclib_LTLIBRARIES)" || rm -f $(toolexeclib_LTLIBRARIES)
- @list='$(toolexeclib_LTLIBRARIES)'; for p in $$list; do \
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
- test "$$dir" != "$$p" || dir=.; \
- echo "rm -f \"$${dir}/so_locations\""; \
- rm -f "$${dir}/so_locations"; \
- done
+ @list='$(toolexeclib_LTLIBRARIES)'; \
+ locs=`for p in $$list; do echo $$p; done | \
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
+ sort -u`; \
+ test -z "$$locs" || { \
+ echo rm -f $${locs}; \
+ rm -f $${locs}; \
+ }
+
libstdc++fs.la: $(libstdc__fs_la_OBJECTS) $(libstdc__fs_la_DEPENDENCIES) $(EXTRA_libstdc__fs_la_DEPENDENCIES)
- $(CXXLINK) -rpath $(toolexeclibdir) $(libstdc__fs_la_OBJECTS) $(libstdc__fs_la_LIBADD) $(LIBS)
+ $(AM_V_CXXLD)$(CXXLINK) -rpath $(toolexeclibdir) $(libstdc__fs_la_OBJECTS) $(libstdc__fs_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
@@ -522,13 +603,13 @@ distclean-compile:
-rm -f *.tab.c
.cc.o:
- $(CXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $<
.cc.obj:
- $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+ $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cc.lo:
- $(LTCXXCOMPILE) -c -o $@ $<
+ $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $<
mostlyclean-libtool:
-rm -f *.lo
@@ -536,26 +617,15 @@ mostlyclean-libtool:
clean-libtool:
-rm -rf .libs _libs
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
+ID: $(am__tagged_files)
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
+tags: tags-am
+TAGS: tags
+
+tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ $(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
@@ -567,15 +637,11 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$$unique; \
fi; \
fi
-ctags: CTAGS
-CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
- END { if (nonempty) { for (i in files) print i; }; }'`; \
+ctags: ctags-am
+
+CTAGS: ctags
+ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ $(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
@@ -584,6 +650,21 @@ GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
+cscopelist: cscopelist-am
+
+cscopelist-am: $(am__tagged_files)
+ list='$(am__tagged_files)'; \
+ case "$(srcdir)" in \
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+ *) sdir=$(subdir)/$(srcdir) ;; \
+ esac; \
+ for i in $$list; do \
+ if test -f "$$i"; then \
+ echo "$(subdir)/$$i"; \
+ else \
+ echo "$$sdir/$$i"; \
+ fi; \
+ done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -696,19 +777,22 @@ uninstall-am: uninstall-toolexeclibLTLIBRARIES
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-toolexeclibLTLIBRARIES ctags distclean \
- distclean-compile distclean-generic distclean-libtool \
- distclean-tags dvi dvi-am html html-am info info-am install \
- install-am install-data install-data-am install-dvi \
- install-dvi-am install-exec install-exec-am install-html \
- install-html-am install-info install-info-am install-man \
- install-pdf install-pdf-am install-ps install-ps-am \
- install-strip install-toolexeclibLTLIBRARIES installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
+ clean-libtool clean-toolexeclibLTLIBRARIES cscopelist-am ctags \
+ ctags-am distclean distclean-compile distclean-generic \
+ distclean-libtool distclean-tags dvi dvi-am html html-am info \
+ info-am install install-am install-data install-data-am \
+ install-dvi install-dvi-am install-exec install-exec-am \
+ install-html install-html-am install-info install-info-am \
+ install-man install-pdf install-pdf-am install-ps \
+ install-ps-am install-strip install-toolexeclibLTLIBRARIES \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
- tags uninstall uninstall-am uninstall-toolexeclibLTLIBRARIES
+ tags tags-am uninstall uninstall-am \
+ uninstall-toolexeclibLTLIBRARIES
+
+.PRECIOUS: Makefile
# Tell versions [3.59,3.63) of GNU make to not export all variables.
diff --git a/libstdc++-v3/testsuite/Makefile.in b/libstdc++-v3/testsuite/Makefile.in
index 8f40961..1033421 100644
--- a/libstdc++-v3/testsuite/Makefile.in
+++ b/libstdc++-v3/testsuite/Makefile.in
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
+
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -15,23 +14,61 @@
@SET_MAKE@
VPATH = @srcdir@
-am__make_dryrun = \
- { \
- am__dry=no; \
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
- echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
- | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
- *) \
- for am__flg in $$MAKEFLAGS; do \
- case $$am__flg in \
- *=*|--*) ;; \
- *n*) am__dry=yes; break;; \
- esac; \
- done;; \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
esac; \
- test $$am__dry = yes; \
- }
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
@@ -51,8 +88,6 @@ POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
- $(srcdir)/Makefile.am
subdir = testsuite
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
@@ -79,9 +114,22 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/cet.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
depcomp =
am__depfiles_maybe =
SOURCES =
@@ -90,11 +138,13 @@ am__can_run_installinfo = \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
ACLOCAL = @ACLOCAL@
ALLOCATOR_H = @ALLOCATOR_H@
ALLOCATOR_NAME = @ALLOCATOR_NAME@
AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
@@ -386,7 +436,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps testsuite/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign --ignore-deps testsuite/Makefile
-.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
@@ -395,7 +444,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
-$(top_srcdir)/fragment.am:
+$(top_srcdir)/fragment.am $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -411,11 +460,11 @@ mostlyclean-libtool:
clean-libtool:
-rm -rf .libs _libs
-tags: TAGS
-TAGS:
+tags TAGS:
+
+ctags CTAGS:
-ctags: CTAGS
-CTAGS:
+cscope cscopelist:
check-am: all-am
check: check-am
@@ -521,15 +570,18 @@ uninstall-am:
.MAKE: install-am install-strip
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
- clean-local distclean distclean-generic distclean-libtool dvi \
- dvi-am html html-am info info-am install install-am \
- install-data install-data-am install-dvi install-dvi-am \
- install-exec install-exec-am install-html install-html-am \
- install-info install-info-am install-man install-pdf \
- install-pdf-am install-ps install-ps-am install-strip \
- installcheck installcheck-am installdirs maintainer-clean \
- maintainer-clean-generic mostlyclean mostlyclean-generic \
- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
+ clean-local cscopelist-am ctags-am distclean distclean-generic \
+ distclean-libtool dvi dvi-am html html-am info info-am install \
+ install-am install-data install-data-am install-dvi \
+ install-dvi-am install-exec install-exec-am install-html \
+ install-html-am install-info install-info-am install-man \
+ install-pdf install-pdf-am install-ps install-ps-am \
+ install-strip installcheck installcheck-am installdirs \
+ maintainer-clean maintainer-clean-generic mostlyclean \
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ tags-am uninstall uninstall-am
+
+.PRECIOUS: Makefile
# This rule generates all of the testsuite_files* lists at once.