This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] fix libstdc++/5611


The attached patches attempt to solve libstdc++/5611, where platforms without 
strtoll and strtoull do not get I/O support for (unsigned) long long values.

There are two parts to this:
  gcc-libiberty.patch and the two .c files add support for strtoll() and 
strtoull() into libiberty.

  gcc-libstdc++.patch updates libstdc++-v3 to (optionally) use strtoll() and 
strtoull() from libiberty. The strtoll() and strtoull() checks in 
acinclude.m4 don't affect _GLIBCPP_USE_LONG_LONG, but instead 
_GLIBCPP_USE_LIBIBERTY_STRTOLL is defined if strtoll() and strtoull() don't 
exist.

Patches created for GCC 3.0 branch updated today. Tested on FreeBSD 3.4 (no 
native strtoll or strtoull) and on Linux 2.4.17/glibc 2.2.4 (has native 
strtoll and strtoull) and found no problems.

	Doug Gregor
	gregod@[cs.]rpi.edu

Attachment: strtoll.c
Description: Text document

/*
 * Copyright (c) 1990 Regents of the University of California.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. [rescinded 22 July 1999]
 * 4. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#include <errno.h>
#ifdef NEED_DECLARATION_ERRNO
extern int errno;
#endif
#if 0
#include <stdlib.h>
#endif
#include "ansidecl.h"
#include "safe-ctype.h"

#ifndef ULONG_LONG_MAX
#define	ULONG_LONG_MAX	((unsigned long long)(~0LL))
#endif

/*
 * Convert a string to an unsigned long integer.
 *
 * Ignores `locale' stuff.  Assumes that the upper and lower case
 * alphabets and digits are each contiguous.
 */
unsigned long long
strtoull(nptr, endptr, base)
        const char *nptr;
	char **endptr;
	register int base;
{
	register const char *s = nptr;
	register unsigned long long acc;
	register int c;
	register unsigned long long cutoff;
	register int neg = 0, any, cutlim;

	/*
	 * See strtoll for comments as to the logic used.
	 */
	do {
		c = *s++;
	} while (ISSPACE(c));
	if (c == '-') {
		neg = 1;
		c = *s++;
	} else if (c == '+')
		c = *s++;
	if ((base == 0 || base == 16) &&
	    c == '0' && (*s == 'x' || *s == 'X')) {
		c = s[1];
		s += 2;
		base = 16;
	}
	if (base == 0)
		base = c == '0' ? 8 : 10;
	cutoff = (unsigned long long)ULONG_LONG_MAX / (unsigned long long)base;
	cutlim = (unsigned long long)ULONG_LONG_MAX % (unsigned long long)base;
	for (acc = 0, any = 0;; c = *s++) {
		if (ISDIGIT(c))
			c -= '0';
		else if (ISALPHA(c))
			c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
		else
			break;
		if (c >= base)
			break;
		if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
			any = -1;
		else {
			any = 1;
			acc *= base;
			acc += c;
		}
	}
	if (any < 0) {
		acc = ULONG_LONG_MAX;
		errno = ERANGE;
	} else if (neg)
		acc = -acc;
	if (endptr != 0)
		*endptr = (char *) (any ? s - 1 : nptr);
	return (acc);
}
? stamp-h.in
Index: Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/Makefile.in,v
retrieving revision 1.59.2.12
diff -r1.59.2.12 Makefile.in
1c1
< # Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
---
> # Makefile.in generated automatically by automake 1.4 from Makefile.am
3c3
< # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
---
> # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
149,186c149
< AM_MAKEFLAGS = \
< 	"AR_FLAGS=$(AR_FLAGS)" \
< 	"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
< 	"CC_FOR_TARGET=$(CC_FOR_TARGET)" \
< 	"CFLAGS=$(CFLAGS)" \
< 	"CXXFLAGS=$(CXXFLAGS)" \
< 	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
< 	"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
< 	"INSTALL=$(INSTALL)" \
< 	"INSTALL_DATA=$(INSTALL_DATA)" \
< 	"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
< 	"INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
< 	"LDFLAGS=$(LDFLAGS)" \
< 	"LIBCFLAGS=$(LIBCFLAGS)" \
< 	"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
< 	"MAKE=$(MAKE)" \
< 	"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
< 	"PICFLAG=$(PICFLAG)" \
< 	"PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
< 	"SHELL=$(SHELL)" \
< 	"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
< 	"exec_prefix=$(exec_prefix)" \
< 	"infodir=$(infodir)" \
< 	"libdir=$(libdir)" \
< 	"includedir=$(includedir)" \
< 	"prefix=$(prefix)" \
< 	"tooldir=$(tooldir)" \
< 	"AR=$(AR)" \
< 	"AS=$(AS)" \
< 	"LD=$(LD)" \
< 	"LIBCFLAGS=$(LIBCFLAGS)" \
< 	"PICFLAG=$(PICFLAG)" \
< 	"RANLIB=$(RANLIB)" \
< 	"NM=$(NM)" \
< 	"NM_FOR_BUILD=$(NM_FOR_BUILD)" \
< 	"NM_FOR_TARGET=$(NM_FOR_TARGET)" \
< 	"DESTDIR=$(DESTDIR)" \
< 	"WERROR=$(WERROR)" 
---
> AM_MAKEFLAGS =  	"AR_FLAGS=$(AR_FLAGS)" 	"CC_FOR_BUILD=$(CC_FOR_BUILD)" 	"CC_FOR_TARGET=$(CC_FOR_TARGET)" 	"CFLAGS=$(CFLAGS)" 	"CXXFLAGS=$(CXXFLAGS)" 	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" 	"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" 	"INSTALL=$(INSTALL)" 	"INSTALL_DATA=$(INSTALL_DATA)" 	"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" 	"INSTALL_SCRIPT=$(INSTALL_SCRIPT)" 	"LDFLAGS=$(LDFLAGS)" 	"LIBCFLAGS=$(LIBCFLAGS)" 	"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" 	"MAKE=$(MAKE)" 	"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" 	"PICFLAG=$(PICFLAG)" 	"PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" 	"SHELL=$(SHELL)" 	"RUNTESTFLAGS=$(RUNTESTFLAGS)" 	"exec_prefix=$(exec_prefix)" 	"infodir=$(infodir)" 	"libdir=$(libdir)" 	"includedir=$(includedir)" 	"prefix=$(prefix)" 	"tooldir=$(tooldir)" 	"AR=$(AR)" 	"AS=$(AS)" 	"LD=$(LD)" 	"LIBCFLAGS=$(LIBCFLAGS)" 	"PICFLAG=$(PICFLAG)" 	"RANLIB=$(RANLIB)" 	"NM=$(NM)" 	"NM_FOR_BUILD=$(NM_FOR_BUILD)" 	"NM_FOR_TARGET=$(NM_FOR_TARGET)" 	"DESTDIR=$(DESTDIR)" 	"WERROR=$(WERROR)" 
285c248
< 	  test "$$subdir" != "." || dot_seen=yes; \
---
> 	  test "$$subdir" = "." && dot_seen=yes; \
364c327
< 	    cp -pr $$d/$$file $(distdir)/$$file; \
---
> 	    cp -pr $$/$$file $(distdir)/$$file; \
Index: acconfig.h
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/acconfig.h,v
retrieving revision 1.15.4.5
diff -r1.15.4.5 acconfig.h
11a12,14
> // Use strtoll and strtoull from libiberty
> #undef _GLIBCPP_USE_LIBIBERTY_STRTOLL
> 
Index: acinclude.m4
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/acinclude.m4,v
retrieving revision 1.129.2.32
diff -r1.129.2.32 acinclude.m4
1384,1385c1384,1387
<   AC_MSG_CHECKING([for enabled long long I/O support])
<   # iostreams require strtoll, strtoull to compile
---
>   AC_MSG_CHECKING([for native long long I/O support])
>   # iostreams require strtoll, strtoull to compile. determine if we have 
>   # native versions, or if we need to use libiberty
>   native_long_long=yes ;
1387c1389
<                  [char* tmp; strtoll("gnu", &tmp, 10);],,[enable_long_long=no])
---
>                  [char* tmp; strtoll("gnu", &tmp, 10);],,[native_long_long=no])
1389c1391,1395
<                  [char* tmp; strtoull("gnu", &tmp, 10);],,[enable_long_long=no])
---
>                  [char* tmp; strtoull("gnu", &tmp, 10);],,[native_long_long=no])
> 
>   if test x"$native_long_long" = xno; then
>     AC_DEFINE(_GLIBCPP_USE_LIBIBERTY_STRTOLL)
>   fi
1395c1401
<   AC_MSG_RESULT($enable_long_long)
---
>   AC_MSG_RESULT($native_long_long)
Index: aclocal.m4
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/aclocal.m4,v
retrieving revision 1.132.2.33
diff -r1.132.2.33 aclocal.m4
1c1
< dnl aclocal.m4 generated automatically by aclocal 1.4-p5
---
> dnl aclocal.m4 generated automatically by aclocal 1.4
3c3
< dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
---
> dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
1396,1397c1396,1399
<   AC_MSG_CHECKING([for enabled long long I/O support])
<   # iostreams require strtoll, strtoull to compile
---
>   AC_MSG_CHECKING([for native long long I/O support])
>   # iostreams require strtoll, strtoull to compile. determine if we have 
>   # native versions, or if we need to use libiberty
>   native_long_long=yes ;
1399c1401
<                  [char* tmp; strtoll("gnu", &tmp, 10);],,[enable_long_long=no])
---
>                  [char* tmp; strtoll("gnu", &tmp, 10);],,[native_long_long=no])
1401c1403,1407
<                  [char* tmp; strtoull("gnu", &tmp, 10);],,[enable_long_long=no])
---
>                  [char* tmp; strtoull("gnu", &tmp, 10);],,[native_long_long=no])
> 
>   if test x"$native_long_long" = xno; then
>     AC_DEFINE(_GLIBCPP_USE_LIBIBERTY_STRTOLL)
>   fi
1407c1413
<   AC_MSG_RESULT($enable_long_long)
---
>   AC_MSG_RESULT($native_long_long)
1855c1861
< AC_DEFUN([AM_INIT_AUTOMAKE],
---
> AC_DEFUN(AM_INIT_AUTOMAKE,
1883c1889
< AC_DEFUN([AM_SANITY_CHECK],
---
> AC_DEFUN(AM_SANITY_CHECK,
1924c1930
< AC_DEFUN([AM_MISSING_PROG],
---
> AC_DEFUN(AM_MISSING_PROG,
1943c1949
< AC_DEFUN([AM_MAINTAINER_MODE],
---
> AC_DEFUN(AM_MAINTAINER_MODE,
1960c1966
< AC_DEFUN([AM_CONDITIONAL],
---
> AC_DEFUN(AM_CONDITIONAL,
1973c1979
< AC_DEFUN([AM_CONFIG_HEADER],
---
> AC_DEFUN(AM_CONFIG_HEADER,
Index: config.h.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/config.h.in,v
retrieving revision 1.26.2.12
diff -r1.26.2.12 config.h.in
14a15,17
> // Use strtoll and strtoull from libiberty
> #undef _GLIBCPP_USE_LIBIBERTY_STRTOLL
> 
681,683d683
< /* Define if you have the <stdlib.h> header file.  */
< #undef HAVE_STDLIB_H
< 
692,697d691
< 
< /* Define if you have the <sys/stat.h> header file.  */
< #undef HAVE_SYS_STAT_H
< 
< /* Define if you have the <sys/types.h> header file.  */
< #undef HAVE_SYS_TYPES_H
Index: configure
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/configure,v
retrieving revision 1.148.2.41
diff -r1.148.2.41 configure
3533,3535c3533,3537
<   echo $ac_n "checking for enabled long long I/O support""... $ac_c" 1>&6
< echo "configure:3535: checking for enabled long long I/O support" >&5
<   # iostreams require strtoll, strtoull to compile
---
>   echo $ac_n "checking for native long long I/O support""... $ac_c" 1>&6
> echo "configure:3535: checking for native long long I/O support" >&5
>   # iostreams require strtoll, strtoull to compile. determine if we have 
>   # native versions, or if we need to use libiberty
>   native_long_long=yes ;
3537c3539
< #line 3538 "configure"
---
> #line 3540 "configure"
3544c3546
< if { (eval echo configure:3545: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:3547: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
3550c3552
<   enable_long_long=no
---
>   native_long_long=no
3554c3556
< #line 3555 "configure"
---
> #line 3557 "configure"
3561c3563
< if { (eval echo configure:3562: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:3564: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
3567c3569
<   enable_long_long=no
---
>   native_long_long=no
3570a3573,3579
>   if test x"$native_long_long" = xno; then
>     cat >> confdefs.h <<\EOF
> #define _GLIBCPP_USE_LIBIBERTY_STRTOLL 1
> EOF
> 
>   fi
> 
3578c3587
<   echo "$ac_t""$enable_long_long" 1>&6
---
>   echo "$ac_t""$native_long_long" 1>&6
3589c3598
< echo "configure:3590: checking for c header strategy to use" >&5
---
> echo "configure:3599: checking for c header strategy to use" >&5
3646c3655
< echo "configure:3647: checking for thread model used by GCC" >&5
---
> echo "configure:3656: checking for thread model used by GCC" >&5
3699c3708
< echo "configure:3700: checking for exception model to use" >&5
---
> echo "configure:3709: checking for exception model to use" >&5
3714c3723
< #line 3715 "configure"
---
> #line 3724 "configure"
3725c3734
<    if { (eval echo configure:3726: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
>    if { (eval echo configure:3735: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
3784c3793
< echo "configure:3785: checking for $ac_hdr" >&5
---
> echo "configure:3794: checking for $ac_hdr" >&5
3789c3798
< #line 3790 "configure"
---
> #line 3799 "configure"
3794c3803
< { (eval echo configure:3795: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:3804: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
3850c3859
< echo "configure:3851: checking for ld that supports -Wl,--gc-sections" >&5
---
> echo "configure:3860: checking for ld that supports -Wl,--gc-sections" >&5
3855c3864
< #line 3856 "configure"
---
> #line 3865 "configure"
3866c3875
< if { (eval echo configure:3867: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
---
> if { (eval echo configure:3876: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
4144c4153
< echo "configure:4145: checking for main in -lm" >&5
---
> echo "configure:4154: checking for main in -lm" >&5
4152c4161
< #line 4153 "configure"
---
> #line 4162 "configure"
4159c4168
< if { (eval echo configure:4160: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:4169: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4189c4198
< echo "configure:4190: checking for $ac_func" >&5
---
> echo "configure:4199: checking for $ac_func" >&5
4194c4203
< #line 4195 "configure"
---
> #line 4204 "configure"
4217c4226
< if { (eval echo configure:4218: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:4227: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4250c4259
< echo "configure:4251: checking for $ac_func" >&5
---
> echo "configure:4260: checking for $ac_func" >&5
4255c4264
< #line 4256 "configure"
---
> #line 4265 "configure"
4278c4287
< if { (eval echo configure:4279: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:4288: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4311c4320
< echo "configure:4312: checking for mbstate_t" >&5
---
> echo "configure:4321: checking for mbstate_t" >&5
4313c4322
< #line 4314 "configure"
---
> #line 4323 "configure"
4320c4329
< if { (eval echo configure:4321: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:4330: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4342c4351
< echo "configure:4343: checking for $ac_hdr" >&5
---
> echo "configure:4352: checking for $ac_hdr" >&5
4347c4356
< #line 4348 "configure"
---
> #line 4357 "configure"
4352c4361
< { (eval echo configure:4353: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:4362: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4381c4390
< echo "configure:4382: checking for wctype.h" >&5
---
> echo "configure:4391: checking for wctype.h" >&5
4386c4395
< #line 4387 "configure"
---
> #line 4396 "configure"
4391c4400
< { (eval echo configure:4392: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:4401: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4418c4427
< echo "configure:4419: checking for WCHAR_MIN and WCHAR_MAX" >&5
---
> echo "configure:4428: checking for WCHAR_MIN and WCHAR_MAX" >&5
4420c4429
< #line 4421 "configure"
---
> #line 4430 "configure"
4427c4436
< if { (eval echo configure:4428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:4437: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4440c4449
< echo "configure:4441: checking for WEOF" >&5
---
> echo "configure:4450: checking for WEOF" >&5
4442c4451
< #line 4443 "configure"
---
> #line 4452 "configure"
4451c4460
< if { (eval echo configure:4452: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:4461: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4467c4476
< echo "configure:4468: checking for $ac_func" >&5
---
> echo "configure:4477: checking for $ac_func" >&5
4472c4481
< #line 4473 "configure"
---
> #line 4482 "configure"
4495c4504
< if { (eval echo configure:4496: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:4505: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4530c4539
< echo "configure:4531: checking for $ac_func" >&5
---
> echo "configure:4540: checking for $ac_func" >&5
4535c4544
< #line 4536 "configure"
---
> #line 4545 "configure"
4558c4567
< if { (eval echo configure:4559: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:4568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4586c4595
< echo "configure:4587: checking for ISO C99 wchar_t support" >&5
---
> echo "configure:4596: checking for ISO C99 wchar_t support" >&5
4597c4606
< echo "configure:4598: checking for iconv.h" >&5
---
> echo "configure:4607: checking for iconv.h" >&5
4602c4611
< #line 4603 "configure"
---
> #line 4612 "configure"
4607c4616
< { (eval echo configure:4608: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:4617: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4631c4640
< echo "configure:4632: checking for langinfo.h" >&5
---
> echo "configure:4641: checking for langinfo.h" >&5
4636c4645
< #line 4637 "configure"
---
> #line 4646 "configure"
4641c4650
< { (eval echo configure:4642: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:4651: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4665c4674
< echo "configure:4666: checking for iconv in -liconv" >&5
---
> echo "configure:4675: checking for iconv in -liconv" >&5
4673c4682
< #line 4674 "configure"
---
> #line 4683 "configure"
4684c4693
< if { (eval echo configure:4685: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:4694: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4710c4719
< echo "configure:4711: checking for $ac_func" >&5
---
> echo "configure:4720: checking for $ac_func" >&5
4715c4724
< #line 4716 "configure"
---
> #line 4725 "configure"
4738c4747
< if { (eval echo configure:4739: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:4748: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4768c4777
< echo "configure:4769: checking for XPG2 wchar_t support" >&5
---
> echo "configure:4778: checking for XPG2 wchar_t support" >&5
4778c4787
< echo "configure:4779: checking for enabled wchar_t specializations" >&5
---
> echo "configure:4788: checking for enabled wchar_t specializations" >&5
4852c4861
< echo "configure:4853: checking for $ac_hdr" >&5
---
> echo "configure:4862: checking for $ac_hdr" >&5
4857c4866
< #line 4858 "configure"
---
> #line 4867 "configure"
4862c4871
< { (eval echo configure:4863: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:4872: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4913c4922
< echo "configure:4914: checking for g++ that supports -ffunction-sections -fdata-sections" >&5
---
> echo "configure:4923: checking for g++ that supports -ffunction-sections -fdata-sections" >&5
4916c4925
< #line 4917 "configure"
---
> #line 4926 "configure"
4924c4933
< if { (eval echo configure:4925: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:4934: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4981c4990
< echo "configure:4982: checking for ld that supports -Wl,--gc-sections" >&5
---
> echo "configure:4991: checking for ld that supports -Wl,--gc-sections" >&5
4986c4995
< #line 4987 "configure"
---
> #line 4996 "configure"
4997c5006
< if { (eval echo configure:4998: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
---
> if { (eval echo configure:5007: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
5032c5041
< echo "configure:5033: checking for __builtin_abs declaration" >&5
---
> echo "configure:5042: checking for __builtin_abs declaration" >&5
5047c5056
< #line 5048 "configure"
---
> #line 5057 "configure"
5054c5063
< if { (eval echo configure:5055: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5064: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5078c5087
< echo "configure:5079: checking for __builtin_abs linkage" >&5
---
> echo "configure:5088: checking for __builtin_abs linkage" >&5
5085c5094
< #line 5086 "configure"
---
> #line 5095 "configure"
5092c5101
< if { (eval echo configure:5093: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5102: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5118c5127
< echo "configure:5119: checking for __builtin_fabsf declaration" >&5
---
> echo "configure:5128: checking for __builtin_fabsf declaration" >&5
5133c5142
< #line 5134 "configure"
---
> #line 5143 "configure"
5140c5149
< if { (eval echo configure:5141: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5150: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5164c5173
< echo "configure:5165: checking for __builtin_fabsf linkage" >&5
---
> echo "configure:5174: checking for __builtin_fabsf linkage" >&5
5171c5180
< #line 5172 "configure"
---
> #line 5181 "configure"
5178c5187
< if { (eval echo configure:5179: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5188: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5204c5213
< echo "configure:5205: checking for __builtin_fabs declaration" >&5
---
> echo "configure:5214: checking for __builtin_fabs declaration" >&5
5219c5228
< #line 5220 "configure"
---
> #line 5229 "configure"
5226c5235
< if { (eval echo configure:5227: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5236: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5250c5259
< echo "configure:5251: checking for __builtin_fabs linkage" >&5
---
> echo "configure:5260: checking for __builtin_fabs linkage" >&5
5257c5266
< #line 5258 "configure"
---
> #line 5267 "configure"
5264c5273
< if { (eval echo configure:5265: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5274: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5290c5299
< echo "configure:5291: checking for __builtin_fabsl declaration" >&5
---
> echo "configure:5300: checking for __builtin_fabsl declaration" >&5
5305c5314
< #line 5306 "configure"
---
> #line 5315 "configure"
5312c5321
< if { (eval echo configure:5313: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5322: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5336c5345
< echo "configure:5337: checking for __builtin_fabsl linkage" >&5
---
> echo "configure:5346: checking for __builtin_fabsl linkage" >&5
5343c5352
< #line 5344 "configure"
---
> #line 5353 "configure"
5350c5359
< if { (eval echo configure:5351: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5360: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5376c5385
< echo "configure:5377: checking for __builtin_labs declaration" >&5
---
> echo "configure:5386: checking for __builtin_labs declaration" >&5
5391c5400
< #line 5392 "configure"
---
> #line 5401 "configure"
5398c5407
< if { (eval echo configure:5399: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5408: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5422c5431
< echo "configure:5423: checking for __builtin_labs linkage" >&5
---
> echo "configure:5432: checking for __builtin_labs linkage" >&5
5429c5438
< #line 5430 "configure"
---
> #line 5439 "configure"
5436c5445
< if { (eval echo configure:5437: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5446: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5463c5472
< echo "configure:5464: checking for __builtin_sqrtf declaration" >&5
---
> echo "configure:5473: checking for __builtin_sqrtf declaration" >&5
5478c5487
< #line 5479 "configure"
---
> #line 5488 "configure"
5485c5494
< if { (eval echo configure:5486: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5495: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5509c5518
< echo "configure:5510: checking for __builtin_sqrtf linkage" >&5
---
> echo "configure:5519: checking for __builtin_sqrtf linkage" >&5
5516c5525
< #line 5517 "configure"
---
> #line 5526 "configure"
5523c5532
< if { (eval echo configure:5524: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5533: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5549c5558
< echo "configure:5550: checking for __builtin_fsqrt declaration" >&5
---
> echo "configure:5559: checking for __builtin_fsqrt declaration" >&5
5564c5573
< #line 5565 "configure"
---
> #line 5574 "configure"
5571c5580
< if { (eval echo configure:5572: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5581: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5595c5604
< echo "configure:5596: checking for __builtin_fsqrt linkage" >&5
---
> echo "configure:5605: checking for __builtin_fsqrt linkage" >&5
5602c5611
< #line 5603 "configure"
---
> #line 5612 "configure"
5609c5618
< if { (eval echo configure:5610: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5619: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5635c5644
< echo "configure:5636: checking for __builtin_sqrtl declaration" >&5
---
> echo "configure:5645: checking for __builtin_sqrtl declaration" >&5
5650c5659
< #line 5651 "configure"
---
> #line 5660 "configure"
5657c5666
< if { (eval echo configure:5658: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5667: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5681c5690
< echo "configure:5682: checking for __builtin_sqrtl linkage" >&5
---
> echo "configure:5691: checking for __builtin_sqrtl linkage" >&5
5688c5697
< #line 5689 "configure"
---
> #line 5698 "configure"
5695c5704
< if { (eval echo configure:5696: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5705: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5722c5731
< echo "configure:5723: checking for __builtin_sinf declaration" >&5
---
> echo "configure:5732: checking for __builtin_sinf declaration" >&5
5737c5746
< #line 5738 "configure"
---
> #line 5747 "configure"
5744c5753
< if { (eval echo configure:5745: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5754: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5768c5777
< echo "configure:5769: checking for __builtin_sinf linkage" >&5
---
> echo "configure:5778: checking for __builtin_sinf linkage" >&5
5775c5784
< #line 5776 "configure"
---
> #line 5785 "configure"
5782c5791
< if { (eval echo configure:5783: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5792: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5808c5817
< echo "configure:5809: checking for __builtin_sin declaration" >&5
---
> echo "configure:5818: checking for __builtin_sin declaration" >&5
5823c5832
< #line 5824 "configure"
---
> #line 5833 "configure"
5830c5839
< if { (eval echo configure:5831: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5840: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5854c5863
< echo "configure:5855: checking for __builtin_sin linkage" >&5
---
> echo "configure:5864: checking for __builtin_sin linkage" >&5
5861c5870
< #line 5862 "configure"
---
> #line 5871 "configure"
5868c5877
< if { (eval echo configure:5869: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5878: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5894c5903
< echo "configure:5895: checking for __builtin_sinl declaration" >&5
---
> echo "configure:5904: checking for __builtin_sinl declaration" >&5
5909c5918
< #line 5910 "configure"
---
> #line 5919 "configure"
5916c5925
< if { (eval echo configure:5917: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:5926: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
5940c5949
< echo "configure:5941: checking for __builtin_sinl linkage" >&5
---
> echo "configure:5950: checking for __builtin_sinl linkage" >&5
5947c5956
< #line 5948 "configure"
---
> #line 5957 "configure"
5954c5963
< if { (eval echo configure:5955: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:5964: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5981c5990
< echo "configure:5982: checking for __builtin_cosf declaration" >&5
---
> echo "configure:5991: checking for __builtin_cosf declaration" >&5
5996c6005
< #line 5997 "configure"
---
> #line 6006 "configure"
6003c6012
< if { (eval echo configure:6004: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:6013: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
6027c6036
< echo "configure:6028: checking for __builtin_cosf linkage" >&5
---
> echo "configure:6037: checking for __builtin_cosf linkage" >&5
6034c6043
< #line 6035 "configure"
---
> #line 6044 "configure"
6041c6050
< if { (eval echo configure:6042: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6051: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6067c6076
< echo "configure:6068: checking for __builtin_cos declaration" >&5
---
> echo "configure:6077: checking for __builtin_cos declaration" >&5
6082c6091
< #line 6083 "configure"
---
> #line 6092 "configure"
6089c6098
< if { (eval echo configure:6090: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:6099: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
6113c6122
< echo "configure:6114: checking for __builtin_cos linkage" >&5
---
> echo "configure:6123: checking for __builtin_cos linkage" >&5
6120c6129
< #line 6121 "configure"
---
> #line 6130 "configure"
6127c6136
< if { (eval echo configure:6128: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6137: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6153c6162
< echo "configure:6154: checking for __builtin_cosl declaration" >&5
---
> echo "configure:6163: checking for __builtin_cosl declaration" >&5
6168c6177
< #line 6169 "configure"
---
> #line 6178 "configure"
6175c6184
< if { (eval echo configure:6176: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:6185: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
6199c6208
< echo "configure:6200: checking for __builtin_cosl linkage" >&5
---
> echo "configure:6209: checking for __builtin_cosl linkage" >&5
6206c6215
< #line 6207 "configure"
---
> #line 6216 "configure"
6213c6222
< if { (eval echo configure:6214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6223: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6304c6313
< echo "configure:6305: checking for sin in -lm" >&5
---
> echo "configure:6314: checking for sin in -lm" >&5
6312c6321
< #line 6313 "configure"
---
> #line 6322 "configure"
6323c6332
< if { (eval echo configure:6324: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6333: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6349c6358
< echo "configure:6350: checking for isinf declaration" >&5
---
> echo "configure:6359: checking for isinf declaration" >&5
6364c6373
< #line 6365 "configure"
---
> #line 6374 "configure"
6375c6384
< if { (eval echo configure:6376: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:6385: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
6402c6411
< echo "configure:6403: checking for $ac_func" >&5
---
> echo "configure:6412: checking for $ac_func" >&5
6407c6416
< #line 6408 "configure"
---
> #line 6417 "configure"
6430c6439
< if { (eval echo configure:6431: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6440: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6457c6466
< echo "configure:6458: checking for _isinf declaration" >&5
---
> echo "configure:6467: checking for _isinf declaration" >&5
6472c6481
< #line 6473 "configure"
---
> #line 6482 "configure"
6483c6492
< if { (eval echo configure:6484: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:6493: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
6510c6519
< echo "configure:6511: checking for $ac_func" >&5
---
> echo "configure:6520: checking for $ac_func" >&5
6515c6524
< #line 6516 "configure"
---
> #line 6525 "configure"
6538c6547
< if { (eval echo configure:6539: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6548: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6568c6577
< echo "configure:6569: checking for isnan declaration" >&5
---
> echo "configure:6578: checking for isnan declaration" >&5
6583c6592
< #line 6584 "configure"
---
> #line 6593 "configure"
6594c6603
< if { (eval echo configure:6595: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:6604: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
6621c6630
< echo "configure:6622: checking for $ac_func" >&5
---
> echo "configure:6631: checking for $ac_func" >&5
6626c6635
< #line 6627 "configure"
---
> #line 6636 "configure"
6649c6658
< if { (eval echo configure:6650: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6676c6685
< echo "configure:6677: checking for _isnan declaration" >&5
---
> echo "configure:6686: checking for _isnan declaration" >&5
6691c6700
< #line 6692 "configure"
---
> #line 6701 "configure"
6702c6711
< if { (eval echo configure:6703: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:6712: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
6729c6738
< echo "configure:6730: checking for $ac_func" >&5
---
> echo "configure:6739: checking for $ac_func" >&5
6734c6743
< #line 6735 "configure"
---
> #line 6744 "configure"
6757c6766
< if { (eval echo configure:6758: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6767: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6787c6796
< echo "configure:6788: checking for finite declaration" >&5
---
> echo "configure:6797: checking for finite declaration" >&5
6802c6811
< #line 6803 "configure"
---
> #line 6812 "configure"
6813c6822
< if { (eval echo configure:6814: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:6823: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
6840c6849
< echo "configure:6841: checking for $ac_func" >&5
---
> echo "configure:6850: checking for $ac_func" >&5
6845c6854
< #line 6846 "configure"
---
> #line 6855 "configure"
6868c6877
< if { (eval echo configure:6869: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6878: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6895c6904
< echo "configure:6896: checking for _finite declaration" >&5
---
> echo "configure:6905: checking for _finite declaration" >&5
6910c6919
< #line 6911 "configure"
---
> #line 6920 "configure"
6921c6930
< if { (eval echo configure:6922: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:6931: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
6948c6957
< echo "configure:6949: checking for $ac_func" >&5
---
> echo "configure:6958: checking for $ac_func" >&5
6953c6962
< #line 6954 "configure"
---
> #line 6963 "configure"
6976c6985
< if { (eval echo configure:6977: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:6986: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7006c7015
< echo "configure:7007: checking for copysign declaration" >&5
---
> echo "configure:7016: checking for copysign declaration" >&5
7021c7030
< #line 7022 "configure"
---
> #line 7031 "configure"
7028c7037
< if { (eval echo configure:7029: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:7038: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
7055c7064
< echo "configure:7056: checking for $ac_func" >&5
---
> echo "configure:7065: checking for $ac_func" >&5
7060c7069
< #line 7061 "configure"
---
> #line 7070 "configure"
7083c7092
< if { (eval echo configure:7084: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:7093: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7110c7119
< echo "configure:7111: checking for _copysign declaration" >&5
---
> echo "configure:7120: checking for _copysign declaration" >&5
7125c7134
< #line 7126 "configure"
---
> #line 7135 "configure"
7132c7141
< if { (eval echo configure:7133: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:7142: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
7159c7168
< echo "configure:7160: checking for $ac_func" >&5
---
> echo "configure:7169: checking for $ac_func" >&5
7164c7173
< #line 7165 "configure"
---
> #line 7174 "configure"
7187c7196
< if { (eval echo configure:7188: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:7197: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7217c7226
< echo "configure:7218: checking for sincos declaration" >&5
---
> echo "configure:7227: checking for sincos declaration" >&5
7232c7241
< #line 7233 "configure"
---
> #line 7242 "configure"
7239c7248
< if { (eval echo configure:7240: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:7249: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
7266c7275
< echo "configure:7267: checking for $ac_func" >&5
---
> echo "configure:7276: checking for $ac_func" >&5
7271c7280
< #line 7272 "configure"
---
> #line 7281 "configure"
7294c7303
< if { (eval echo configure:7295: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:7304: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7321c7330
< echo "configure:7322: checking for _sincos declaration" >&5
---
> echo "configure:7331: checking for _sincos declaration" >&5
7336c7345
< #line 7337 "configure"
---
> #line 7346 "configure"
7343c7352
< if { (eval echo configure:7344: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:7353: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
7370c7379
< echo "configure:7371: checking for $ac_func" >&5
---
> echo "configure:7380: checking for $ac_func" >&5
7375c7384
< #line 7376 "configure"
---
> #line 7385 "configure"
7398c7407
< if { (eval echo configure:7399: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:7408: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7428c7437
< echo "configure:7429: checking for fpclass declaration" >&5
---
> echo "configure:7438: checking for fpclass declaration" >&5
7443c7452
< #line 7444 "configure"
---
> #line 7453 "configure"
7454c7463
< if { (eval echo configure:7455: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:7464: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
7481c7490
< echo "configure:7482: checking for $ac_func" >&5
---
> echo "configure:7491: checking for $ac_func" >&5
7486c7495
< #line 7487 "configure"
---
> #line 7496 "configure"
7509c7518
< if { (eval echo configure:7510: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:7519: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7536c7545
< echo "configure:7537: checking for _fpclass declaration" >&5
---
> echo "configure:7546: checking for _fpclass declaration" >&5
7551c7560
< #line 7552 "configure"
---
> #line 7561 "configure"
7562c7571
< if { (eval echo configure:7563: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:7572: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
7589c7598
< echo "configure:7590: checking for $ac_func" >&5
---
> echo "configure:7599: checking for $ac_func" >&5
7594c7603
< #line 7595 "configure"
---
> #line 7604 "configure"
7617c7626
< if { (eval echo configure:7618: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:7627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7647c7656
< echo "configure:7648: checking for qfpclass declaration" >&5
---
> echo "configure:7657: checking for qfpclass declaration" >&5
7662c7671
< #line 7663 "configure"
---
> #line 7672 "configure"
7673c7682
< if { (eval echo configure:7674: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:7683: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
7700c7709
< echo "configure:7701: checking for $ac_func" >&5
---
> echo "configure:7710: checking for $ac_func" >&5
7705c7714
< #line 7706 "configure"
---
> #line 7715 "configure"
7728c7737
< if { (eval echo configure:7729: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:7738: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7755c7764
< echo "configure:7756: checking for _qfpclass declaration" >&5
---
> echo "configure:7765: checking for _qfpclass declaration" >&5
7770c7779
< #line 7771 "configure"
---
> #line 7780 "configure"
7781c7790
< if { (eval echo configure:7782: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:7791: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
7808c7817
< echo "configure:7809: checking for $ac_func" >&5
---
> echo "configure:7818: checking for $ac_func" >&5
7813c7822
< #line 7814 "configure"
---
> #line 7823 "configure"
7836c7845
< if { (eval echo configure:7837: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:7846: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7866c7875
< echo "configure:7867: checking for hypot declaration" >&5
---
> echo "configure:7876: checking for hypot declaration" >&5
7881c7890
< #line 7882 "configure"
---
> #line 7891 "configure"
7888c7897
< if { (eval echo configure:7889: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:7898: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
7915c7924
< echo "configure:7916: checking for $ac_func" >&5
---
> echo "configure:7925: checking for $ac_func" >&5
7920c7929
< #line 7921 "configure"
---
> #line 7930 "configure"
7943c7952
< if { (eval echo configure:7944: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:7953: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7970c7979
< echo "configure:7971: checking for _hypot declaration" >&5
---
> echo "configure:7980: checking for _hypot declaration" >&5
7985c7994
< #line 7986 "configure"
---
> #line 7995 "configure"
7992c8001
< if { (eval echo configure:7993: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8002: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8019c8028
< echo "configure:8020: checking for $ac_func" >&5
---
> echo "configure:8029: checking for $ac_func" >&5
8024c8033
< #line 8025 "configure"
---
> #line 8034 "configure"
8047c8056
< if { (eval echo configure:8048: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:8057: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
8077c8086
< echo "configure:8078: checking for float trig functions" >&5
---
> echo "configure:8087: checking for float trig functions" >&5
8091c8100
< #line 8092 "configure"
---
> #line 8101 "configure"
8100c8109
< if { (eval echo configure:8101: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8110: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8126c8135
< echo "configure:8127: checking for $ac_func" >&5
---
> echo "configure:8136: checking for $ac_func" >&5
8131c8140
< #line 8132 "configure"
---
> #line 8141 "configure"
8154c8163
< if { (eval echo configure:8155: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:8164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
8182c8191
< echo "configure:8183: checking for float round functions" >&5
---
> echo "configure:8192: checking for float round functions" >&5
8196c8205
< #line 8197 "configure"
---
> #line 8206 "configure"
8203c8212
< if { (eval echo configure:8204: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8213: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8227c8236
< echo "configure:8228: checking for $ac_func" >&5
---
> echo "configure:8237: checking for $ac_func" >&5
8232c8241
< #line 8233 "configure"
---
> #line 8242 "configure"
8255c8264
< if { (eval echo configure:8256: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:8265: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
8284c8293
< echo "configure:8285: checking for isnanf declaration" >&5
---
> echo "configure:8294: checking for isnanf declaration" >&5
8299c8308
< #line 8300 "configure"
---
> #line 8309 "configure"
8310c8319
< if { (eval echo configure:8311: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8320: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8337c8346
< echo "configure:8338: checking for $ac_func" >&5
---
> echo "configure:8347: checking for $ac_func" >&5
8342c8351
< #line 8343 "configure"
---
> #line 8352 "configure"
8365c8374
< if { (eval echo configure:8366: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:8375: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
8392c8401
< echo "configure:8393: checking for _isnanf declaration" >&5
---
> echo "configure:8402: checking for _isnanf declaration" >&5
8407c8416
< #line 8408 "configure"
---
> #line 8417 "configure"
8418c8427
< if { (eval echo configure:8419: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8445c8454
< echo "configure:8446: checking for $ac_func" >&5
---
> echo "configure:8455: checking for $ac_func" >&5
8450c8459
< #line 8451 "configure"
---
> #line 8460 "configure"
8473c8482
< if { (eval echo configure:8474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:8483: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
8503c8512
< echo "configure:8504: checking for isinff declaration" >&5
---
> echo "configure:8513: checking for isinff declaration" >&5
8518c8527
< #line 8519 "configure"
---
> #line 8528 "configure"
8529c8538
< if { (eval echo configure:8530: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8539: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8556c8565
< echo "configure:8557: checking for $ac_func" >&5
---
> echo "configure:8566: checking for $ac_func" >&5
8561c8570
< #line 8562 "configure"
---
> #line 8571 "configure"
8584c8593
< if { (eval echo configure:8585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:8594: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
8611c8620
< echo "configure:8612: checking for _isinff declaration" >&5
---
> echo "configure:8621: checking for _isinff declaration" >&5
8626c8635
< #line 8627 "configure"
---
> #line 8636 "configure"
8637c8646
< if { (eval echo configure:8638: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8647: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8664c8673
< echo "configure:8665: checking for $ac_func" >&5
---
> echo "configure:8674: checking for $ac_func" >&5
8669c8678
< #line 8670 "configure"
---
> #line 8679 "configure"
8692c8701
< if { (eval echo configure:8693: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:8702: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
8722c8731
< echo "configure:8723: checking for atan2f declaration" >&5
---
> echo "configure:8732: checking for atan2f declaration" >&5
8737c8746
< #line 8738 "configure"
---
> #line 8747 "configure"
8744c8753
< if { (eval echo configure:8745: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8754: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8771c8780
< echo "configure:8772: checking for $ac_func" >&5
---
> echo "configure:8781: checking for $ac_func" >&5
8776c8785
< #line 8777 "configure"
---
> #line 8786 "configure"
8799c8808
< if { (eval echo configure:8800: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:8809: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
8826c8835
< echo "configure:8827: checking for _atan2f declaration" >&5
---
> echo "configure:8836: checking for _atan2f declaration" >&5
8841c8850
< #line 8842 "configure"
---
> #line 8851 "configure"
8848c8857
< if { (eval echo configure:8849: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8858: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8875c8884
< echo "configure:8876: checking for $ac_func" >&5
---
> echo "configure:8885: checking for $ac_func" >&5
8880c8889
< #line 8881 "configure"
---
> #line 8890 "configure"
8903c8912
< if { (eval echo configure:8904: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:8913: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
8933c8942
< echo "configure:8934: checking for fabsf declaration" >&5
---
> echo "configure:8943: checking for fabsf declaration" >&5
8948c8957
< #line 8949 "configure"
---
> #line 8958 "configure"
8959c8968
< if { (eval echo configure:8960: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:8969: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
8986c8995
< echo "configure:8987: checking for $ac_func" >&5
---
> echo "configure:8996: checking for $ac_func" >&5
8991c9000
< #line 8992 "configure"
---
> #line 9001 "configure"
9014c9023
< if { (eval echo configure:9015: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9024: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9041c9050
< echo "configure:9042: checking for _fabsf declaration" >&5
---
> echo "configure:9051: checking for _fabsf declaration" >&5
9056c9065
< #line 9057 "configure"
---
> #line 9066 "configure"
9067c9076
< if { (eval echo configure:9068: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:9077: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9094c9103
< echo "configure:9095: checking for $ac_func" >&5
---
> echo "configure:9104: checking for $ac_func" >&5
9099c9108
< #line 9100 "configure"
---
> #line 9109 "configure"
9122c9131
< if { (eval echo configure:9123: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9132: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9152c9161
< echo "configure:9153: checking for fmodf declaration" >&5
---
> echo "configure:9162: checking for fmodf declaration" >&5
9167c9176
< #line 9168 "configure"
---
> #line 9177 "configure"
9174c9183
< if { (eval echo configure:9175: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:9184: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9201c9210
< echo "configure:9202: checking for $ac_func" >&5
---
> echo "configure:9211: checking for $ac_func" >&5
9206c9215
< #line 9207 "configure"
---
> #line 9216 "configure"
9229c9238
< if { (eval echo configure:9230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9239: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9256c9265
< echo "configure:9257: checking for _fmodf declaration" >&5
---
> echo "configure:9266: checking for _fmodf declaration" >&5
9271c9280
< #line 9272 "configure"
---
> #line 9281 "configure"
9278c9287
< if { (eval echo configure:9279: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:9288: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9305c9314
< echo "configure:9306: checking for $ac_func" >&5
---
> echo "configure:9315: checking for $ac_func" >&5
9310c9319
< #line 9311 "configure"
---
> #line 9320 "configure"
9333c9342
< if { (eval echo configure:9334: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9343: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9363c9372
< echo "configure:9364: checking for frexpf declaration" >&5
---
> echo "configure:9373: checking for frexpf declaration" >&5
9378c9387
< #line 9379 "configure"
---
> #line 9388 "configure"
9385c9394
< if { (eval echo configure:9386: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:9395: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9412c9421
< echo "configure:9413: checking for $ac_func" >&5
---
> echo "configure:9422: checking for $ac_func" >&5
9417c9426
< #line 9418 "configure"
---
> #line 9427 "configure"
9440c9449
< if { (eval echo configure:9441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9450: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9467c9476
< echo "configure:9468: checking for _frexpf declaration" >&5
---
> echo "configure:9477: checking for _frexpf declaration" >&5
9482c9491
< #line 9483 "configure"
---
> #line 9492 "configure"
9489c9498
< if { (eval echo configure:9490: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:9499: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9516c9525
< echo "configure:9517: checking for $ac_func" >&5
---
> echo "configure:9526: checking for $ac_func" >&5
9521c9530
< #line 9522 "configure"
---
> #line 9531 "configure"
9544c9553
< if { (eval echo configure:9545: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9554: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9574c9583
< echo "configure:9575: checking for hypotf declaration" >&5
---
> echo "configure:9584: checking for hypotf declaration" >&5
9589c9598
< #line 9590 "configure"
---
> #line 9599 "configure"
9596c9605
< if { (eval echo configure:9597: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:9606: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9623c9632
< echo "configure:9624: checking for $ac_func" >&5
---
> echo "configure:9633: checking for $ac_func" >&5
9628c9637
< #line 9629 "configure"
---
> #line 9638 "configure"
9651c9660
< if { (eval echo configure:9652: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9661: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9678c9687
< echo "configure:9679: checking for _hypotf declaration" >&5
---
> echo "configure:9688: checking for _hypotf declaration" >&5
9693c9702
< #line 9694 "configure"
---
> #line 9703 "configure"
9700c9709
< if { (eval echo configure:9701: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:9710: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9727c9736
< echo "configure:9728: checking for $ac_func" >&5
---
> echo "configure:9737: checking for $ac_func" >&5
9732c9741
< #line 9733 "configure"
---
> #line 9742 "configure"
9755c9764
< if { (eval echo configure:9756: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9765: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9785c9794
< echo "configure:9786: checking for ldexpf declaration" >&5
---
> echo "configure:9795: checking for ldexpf declaration" >&5
9800c9809
< #line 9801 "configure"
---
> #line 9810 "configure"
9807c9816
< if { (eval echo configure:9808: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:9817: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9834c9843
< echo "configure:9835: checking for $ac_func" >&5
---
> echo "configure:9844: checking for $ac_func" >&5
9839c9848
< #line 9840 "configure"
---
> #line 9849 "configure"
9862c9871
< if { (eval echo configure:9863: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9872: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9889c9898
< echo "configure:9890: checking for _ldexpf declaration" >&5
---
> echo "configure:9899: checking for _ldexpf declaration" >&5
9904c9913
< #line 9905 "configure"
---
> #line 9914 "configure"
9911c9920
< if { (eval echo configure:9912: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:9921: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9938c9947
< echo "configure:9939: checking for $ac_func" >&5
---
> echo "configure:9948: checking for $ac_func" >&5
9943c9952
< #line 9944 "configure"
---
> #line 9953 "configure"
9966c9975
< if { (eval echo configure:9967: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:9976: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9996c10005
< echo "configure:9997: checking for logf declaration" >&5
---
> echo "configure:10006: checking for logf declaration" >&5
10011c10020
< #line 10012 "configure"
---
> #line 10021 "configure"
10022c10031
< if { (eval echo configure:10023: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:10032: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
10049c10058
< echo "configure:10050: checking for $ac_func" >&5
---
> echo "configure:10059: checking for $ac_func" >&5
10054c10063
< #line 10055 "configure"
---
> #line 10064 "configure"
10077c10086
< if { (eval echo configure:10078: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:10087: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
10104c10113
< echo "configure:10105: checking for _logf declaration" >&5
---
> echo "configure:10114: checking for _logf declaration" >&5
10119c10128
< #line 10120 "configure"
---
> #line 10129 "configure"
10130c10139
< if { (eval echo configure:10131: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:10140: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
10157c10166
< echo "configure:10158: checking for $ac_func" >&5
---
> echo "configure:10167: checking for $ac_func" >&5
10162c10171
< #line 10163 "configure"
---
> #line 10172 "configure"
10185c10194
< if { (eval echo configure:10186: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:10195: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
10215c10224
< echo "configure:10216: checking for log10f declaration" >&5
---
> echo "configure:10225: checking for log10f declaration" >&5
10230c10239
< #line 10231 "configure"
---
> #line 10240 "configure"
10241c10250
< if { (eval echo configure:10242: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:10251: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
10268c10277
< echo "configure:10269: checking for $ac_func" >&5
---
> echo "configure:10278: checking for $ac_func" >&5
10273c10282
< #line 10274 "configure"
---
> #line 10283 "configure"
10296c10305
< if { (eval echo configure:10297: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:10306: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
10323c10332
< echo "configure:10324: checking for _log10f declaration" >&5
---
> echo "configure:10333: checking for _log10f declaration" >&5
10338c10347
< #line 10339 "configure"
---
> #line 10348 "configure"
10349c10358
< if { (eval echo configure:10350: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:10359: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
10376c10385
< echo "configure:10377: checking for $ac_func" >&5
---
> echo "configure:10386: checking for $ac_func" >&5
10381c10390
< #line 10382 "configure"
---
> #line 10391 "configure"
10404c10413
< if { (eval echo configure:10405: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:10414: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
10434c10443
< echo "configure:10435: checking for modff declaration" >&5
---
> echo "configure:10444: checking for modff declaration" >&5
10449c10458
< #line 10450 "configure"
---
> #line 10459 "configure"
10456c10465
< if { (eval echo configure:10457: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:10466: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
10483c10492
< echo "configure:10484: checking for $ac_func" >&5
---
> echo "configure:10493: checking for $ac_func" >&5
10488c10497
< #line 10489 "configure"
---
> #line 10498 "configure"
10511c10520
< if { (eval echo configure:10512: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:10521: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
10538c10547
< echo "configure:10539: checking for _modff declaration" >&5
---
> echo "configure:10548: checking for _modff declaration" >&5
10553c10562
< #line 10554 "configure"
---
> #line 10563 "configure"
10560c10569
< if { (eval echo configure:10561: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:10570: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
10587c10596
< echo "configure:10588: checking for $ac_func" >&5
---
> echo "configure:10597: checking for $ac_func" >&5
10592c10601
< #line 10593 "configure"
---
> #line 10602 "configure"
10615c10624
< if { (eval echo configure:10616: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:10625: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
10645c10654
< echo "configure:10646: checking for powf declaration" >&5
---
> echo "configure:10655: checking for powf declaration" >&5
10660c10669
< #line 10661 "configure"
---
> #line 10670 "configure"
10667c10676
< if { (eval echo configure:10668: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:10677: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
10694c10703
< echo "configure:10695: checking for $ac_func" >&5
---
> echo "configure:10704: checking for $ac_func" >&5
10699c10708
< #line 10700 "configure"
---
> #line 10709 "configure"
10722c10731
< if { (eval echo configure:10723: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:10732: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
10749c10758
< echo "configure:10750: checking for _powf declaration" >&5
---
> echo "configure:10759: checking for _powf declaration" >&5
10764c10773
< #line 10765 "configure"
---
> #line 10774 "configure"
10771c10780
< if { (eval echo configure:10772: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:10781: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
10798c10807
< echo "configure:10799: checking for $ac_func" >&5
---
> echo "configure:10808: checking for $ac_func" >&5
10803c10812
< #line 10804 "configure"
---
> #line 10813 "configure"
10826c10835
< if { (eval echo configure:10827: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:10836: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
10856c10865
< echo "configure:10857: checking for sqrtf declaration" >&5
---
> echo "configure:10866: checking for sqrtf declaration" >&5
10871c10880
< #line 10872 "configure"
---
> #line 10881 "configure"
10882c10891
< if { (eval echo configure:10883: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:10892: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
10909c10918
< echo "configure:10910: checking for $ac_func" >&5
---
> echo "configure:10919: checking for $ac_func" >&5
10914c10923
< #line 10915 "configure"
---
> #line 10924 "configure"
10937c10946
< if { (eval echo configure:10938: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:10947: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
10964c10973
< echo "configure:10965: checking for _sqrtf declaration" >&5
---
> echo "configure:10974: checking for _sqrtf declaration" >&5
10979c10988
< #line 10980 "configure"
---
> #line 10989 "configure"
10990c10999
< if { (eval echo configure:10991: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11000: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11017c11026
< echo "configure:11018: checking for $ac_func" >&5
---
> echo "configure:11027: checking for $ac_func" >&5
11022c11031
< #line 11023 "configure"
---
> #line 11032 "configure"
11045c11054
< if { (eval echo configure:11046: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:11055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
11075c11084
< echo "configure:11076: checking for sincosf declaration" >&5
---
> echo "configure:11085: checking for sincosf declaration" >&5
11090c11099
< #line 11091 "configure"
---
> #line 11100 "configure"
11097c11106
< if { (eval echo configure:11098: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11107: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11124c11133
< echo "configure:11125: checking for $ac_func" >&5
---
> echo "configure:11134: checking for $ac_func" >&5
11129c11138
< #line 11130 "configure"
---
> #line 11139 "configure"
11152c11161
< if { (eval echo configure:11153: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:11162: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
11179c11188
< echo "configure:11180: checking for _sincosf declaration" >&5
---
> echo "configure:11189: checking for _sincosf declaration" >&5
11194c11203
< #line 11195 "configure"
---
> #line 11204 "configure"
11201c11210
< if { (eval echo configure:11202: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11211: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11228c11237
< echo "configure:11229: checking for $ac_func" >&5
---
> echo "configure:11238: checking for $ac_func" >&5
11233c11242
< #line 11234 "configure"
---
> #line 11243 "configure"
11256c11265
< if { (eval echo configure:11257: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:11266: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
11286c11295
< echo "configure:11287: checking for finitef declaration" >&5
---
> echo "configure:11296: checking for finitef declaration" >&5
11301c11310
< #line 11302 "configure"
---
> #line 11311 "configure"
11312c11321
< if { (eval echo configure:11313: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11322: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11339c11348
< echo "configure:11340: checking for $ac_func" >&5
---
> echo "configure:11349: checking for $ac_func" >&5
11344c11353
< #line 11345 "configure"
---
> #line 11354 "configure"
11367c11376
< if { (eval echo configure:11368: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:11377: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
11394c11403
< echo "configure:11395: checking for _finitef declaration" >&5
---
> echo "configure:11404: checking for _finitef declaration" >&5
11409c11418
< #line 11410 "configure"
---
> #line 11419 "configure"
11420c11429
< if { (eval echo configure:11421: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11430: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11447c11456
< echo "configure:11448: checking for $ac_func" >&5
---
> echo "configure:11457: checking for $ac_func" >&5
11452c11461
< #line 11453 "configure"
---
> #line 11462 "configure"
11475c11484
< if { (eval echo configure:11476: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:11485: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
11505c11514
< echo "configure:11506: checking for long double trig functions" >&5
---
> echo "configure:11515: checking for long double trig functions" >&5
11519c11528
< #line 11520 "configure"
---
> #line 11529 "configure"
11528c11537
< if { (eval echo configure:11529: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11538: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11554c11563
< echo "configure:11555: checking for $ac_func" >&5
---
> echo "configure:11564: checking for $ac_func" >&5
11559c11568
< #line 11560 "configure"
---
> #line 11569 "configure"
11582c11591
< if { (eval echo configure:11583: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:11592: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
11610c11619
< echo "configure:11611: checking for long double round functions" >&5
---
> echo "configure:11620: checking for long double round functions" >&5
11624c11633
< #line 11625 "configure"
---
> #line 11634 "configure"
11631c11640
< if { (eval echo configure:11632: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11641: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11655c11664
< echo "configure:11656: checking for $ac_func" >&5
---
> echo "configure:11665: checking for $ac_func" >&5
11660c11669
< #line 11661 "configure"
---
> #line 11670 "configure"
11683c11692
< if { (eval echo configure:11684: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:11693: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
11712c11721
< echo "configure:11713: checking for isnanl declaration" >&5
---
> echo "configure:11722: checking for isnanl declaration" >&5
11727c11736
< #line 11728 "configure"
---
> #line 11737 "configure"
11738c11747
< if { (eval echo configure:11739: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11748: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11765c11774
< echo "configure:11766: checking for $ac_func" >&5
---
> echo "configure:11775: checking for $ac_func" >&5
11770c11779
< #line 11771 "configure"
---
> #line 11780 "configure"
11793c11802
< if { (eval echo configure:11794: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:11803: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
11820c11829
< echo "configure:11821: checking for _isnanl declaration" >&5
---
> echo "configure:11830: checking for _isnanl declaration" >&5
11835c11844
< #line 11836 "configure"
---
> #line 11845 "configure"
11846c11855
< if { (eval echo configure:11847: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11856: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11873c11882
< echo "configure:11874: checking for $ac_func" >&5
---
> echo "configure:11883: checking for $ac_func" >&5
11878c11887
< #line 11879 "configure"
---
> #line 11888 "configure"
11901c11910
< if { (eval echo configure:11902: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:11911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
11931c11940
< echo "configure:11932: checking for isinfl declaration" >&5
---
> echo "configure:11941: checking for isinfl declaration" >&5
11946c11955
< #line 11947 "configure"
---
> #line 11956 "configure"
11957c11966
< if { (eval echo configure:11958: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:11967: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
11984c11993
< echo "configure:11985: checking for $ac_func" >&5
---
> echo "configure:11994: checking for $ac_func" >&5
11989c11998
< #line 11990 "configure"
---
> #line 11999 "configure"
12012c12021
< if { (eval echo configure:12013: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12022: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
12039c12048
< echo "configure:12040: checking for _isinfl declaration" >&5
---
> echo "configure:12049: checking for _isinfl declaration" >&5
12054c12063
< #line 12055 "configure"
---
> #line 12064 "configure"
12065c12074
< if { (eval echo configure:12066: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:12075: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
12092c12101
< echo "configure:12093: checking for $ac_func" >&5
---
> echo "configure:12102: checking for $ac_func" >&5
12097c12106
< #line 12098 "configure"
---
> #line 12107 "configure"
12120c12129
< if { (eval echo configure:12121: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12130: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
12150c12159
< echo "configure:12151: checking for copysignl declaration" >&5
---
> echo "configure:12160: checking for copysignl declaration" >&5
12165c12174
< #line 12166 "configure"
---
> #line 12175 "configure"
12172c12181
< if { (eval echo configure:12173: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:12182: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
12199c12208
< echo "configure:12200: checking for $ac_func" >&5
---
> echo "configure:12209: checking for $ac_func" >&5
12204c12213
< #line 12205 "configure"
---
> #line 12214 "configure"
12227c12236
< if { (eval echo configure:12228: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12237: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
12254c12263
< echo "configure:12255: checking for _copysignl declaration" >&5
---
> echo "configure:12264: checking for _copysignl declaration" >&5
12269c12278
< #line 12270 "configure"
---
> #line 12279 "configure"
12276c12285
< if { (eval echo configure:12277: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:12286: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
12303c12312
< echo "configure:12304: checking for $ac_func" >&5
---
> echo "configure:12313: checking for $ac_func" >&5
12308c12317
< #line 12309 "configure"
---
> #line 12318 "configure"
12331c12340
< if { (eval echo configure:12332: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12341: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
12361c12370
< echo "configure:12362: checking for atan2l declaration" >&5
---
> echo "configure:12371: checking for atan2l declaration" >&5
12376c12385
< #line 12377 "configure"
---
> #line 12386 "configure"
12383c12392
< if { (eval echo configure:12384: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:12393: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
12410c12419
< echo "configure:12411: checking for $ac_func" >&5
---
> echo "configure:12420: checking for $ac_func" >&5
12415c12424
< #line 12416 "configure"
---
> #line 12425 "configure"
12438c12447
< if { (eval echo configure:12439: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12448: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
12465c12474
< echo "configure:12466: checking for _atan2l declaration" >&5
---
> echo "configure:12475: checking for _atan2l declaration" >&5
12480c12489
< #line 12481 "configure"
---
> #line 12490 "configure"
12487c12496
< if { (eval echo configure:12488: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:12497: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
12514c12523
< echo "configure:12515: checking for $ac_func" >&5
---
> echo "configure:12524: checking for $ac_func" >&5
12519c12528
< #line 12520 "configure"
---
> #line 12529 "configure"
12542c12551
< if { (eval echo configure:12543: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12552: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
12572c12581
< echo "configure:12573: checking for expl declaration" >&5
---
> echo "configure:12582: checking for expl declaration" >&5
12587c12596
< #line 12588 "configure"
---
> #line 12597 "configure"
12598c12607
< if { (eval echo configure:12599: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:12608: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
12625c12634
< echo "configure:12626: checking for $ac_func" >&5
---
> echo "configure:12635: checking for $ac_func" >&5
12630c12639
< #line 12631 "configure"
---
> #line 12640 "configure"
12653c12662
< if { (eval echo configure:12654: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12663: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
12680c12689
< echo "configure:12681: checking for _expl declaration" >&5
---
> echo "configure:12690: checking for _expl declaration" >&5
12695c12704
< #line 12696 "configure"
---
> #line 12705 "configure"
12706c12715
< if { (eval echo configure:12707: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:12716: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
12733c12742
< echo "configure:12734: checking for $ac_func" >&5
---
> echo "configure:12743: checking for $ac_func" >&5
12738c12747
< #line 12739 "configure"
---
> #line 12748 "configure"
12761c12770
< if { (eval echo configure:12762: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12771: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
12791c12800
< echo "configure:12792: checking for fabsl declaration" >&5
---
> echo "configure:12801: checking for fabsl declaration" >&5
12806c12815
< #line 12807 "configure"
---
> #line 12816 "configure"
12817c12826
< if { (eval echo configure:12818: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:12827: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
12844c12853
< echo "configure:12845: checking for $ac_func" >&5
---
> echo "configure:12854: checking for $ac_func" >&5
12849c12858
< #line 12850 "configure"
---
> #line 12859 "configure"
12872c12881
< if { (eval echo configure:12873: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12882: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
12899c12908
< echo "configure:12900: checking for _fabsl declaration" >&5
---
> echo "configure:12909: checking for _fabsl declaration" >&5
12914c12923
< #line 12915 "configure"
---
> #line 12924 "configure"
12925c12934
< if { (eval echo configure:12926: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:12935: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
12952c12961
< echo "configure:12953: checking for $ac_func" >&5
---
> echo "configure:12962: checking for $ac_func" >&5
12957c12966
< #line 12958 "configure"
---
> #line 12967 "configure"
12980c12989
< if { (eval echo configure:12981: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:12990: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13010c13019
< echo "configure:13011: checking for fmodl declaration" >&5
---
> echo "configure:13020: checking for fmodl declaration" >&5
13025c13034
< #line 13026 "configure"
---
> #line 13035 "configure"
13032c13041
< if { (eval echo configure:13033: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13042: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
13059c13068
< echo "configure:13060: checking for $ac_func" >&5
---
> echo "configure:13069: checking for $ac_func" >&5
13064c13073
< #line 13065 "configure"
---
> #line 13074 "configure"
13087c13096
< if { (eval echo configure:13088: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:13097: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13114c13123
< echo "configure:13115: checking for _fmodl declaration" >&5
---
> echo "configure:13124: checking for _fmodl declaration" >&5
13129c13138
< #line 13130 "configure"
---
> #line 13139 "configure"
13136c13145
< if { (eval echo configure:13137: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13146: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
13163c13172
< echo "configure:13164: checking for $ac_func" >&5
---
> echo "configure:13173: checking for $ac_func" >&5
13168c13177
< #line 13169 "configure"
---
> #line 13178 "configure"
13191c13200
< if { (eval echo configure:13192: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:13201: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13221c13230
< echo "configure:13222: checking for frexpl declaration" >&5
---
> echo "configure:13231: checking for frexpl declaration" >&5
13236c13245
< #line 13237 "configure"
---
> #line 13246 "configure"
13243c13252
< if { (eval echo configure:13244: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13253: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
13270c13279
< echo "configure:13271: checking for $ac_func" >&5
---
> echo "configure:13280: checking for $ac_func" >&5
13275c13284
< #line 13276 "configure"
---
> #line 13285 "configure"
13298c13307
< if { (eval echo configure:13299: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:13308: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13325c13334
< echo "configure:13326: checking for _frexpl declaration" >&5
---
> echo "configure:13335: checking for _frexpl declaration" >&5
13340c13349
< #line 13341 "configure"
---
> #line 13350 "configure"
13347c13356
< if { (eval echo configure:13348: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13357: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
13374c13383
< echo "configure:13375: checking for $ac_func" >&5
---
> echo "configure:13384: checking for $ac_func" >&5
13379c13388
< #line 13380 "configure"
---
> #line 13389 "configure"
13402c13411
< if { (eval echo configure:13403: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:13412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13432c13441
< echo "configure:13433: checking for hypotl declaration" >&5
---
> echo "configure:13442: checking for hypotl declaration" >&5
13447c13456
< #line 13448 "configure"
---
> #line 13457 "configure"
13454c13463
< if { (eval echo configure:13455: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13464: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
13481c13490
< echo "configure:13482: checking for $ac_func" >&5
---
> echo "configure:13491: checking for $ac_func" >&5
13486c13495
< #line 13487 "configure"
---
> #line 13496 "configure"
13509c13518
< if { (eval echo configure:13510: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:13519: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13536c13545
< echo "configure:13537: checking for _hypotl declaration" >&5
---
> echo "configure:13546: checking for _hypotl declaration" >&5
13551c13560
< #line 13552 "configure"
---
> #line 13561 "configure"
13558c13567
< if { (eval echo configure:13559: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13568: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
13585c13594
< echo "configure:13586: checking for $ac_func" >&5
---
> echo "configure:13595: checking for $ac_func" >&5
13590c13599
< #line 13591 "configure"
---
> #line 13600 "configure"
13613c13622
< if { (eval echo configure:13614: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:13623: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13643c13652
< echo "configure:13644: checking for ldexpl declaration" >&5
---
> echo "configure:13653: checking for ldexpl declaration" >&5
13658c13667
< #line 13659 "configure"
---
> #line 13668 "configure"
13665c13674
< if { (eval echo configure:13666: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13675: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
13692c13701
< echo "configure:13693: checking for $ac_func" >&5
---
> echo "configure:13702: checking for $ac_func" >&5
13697c13706
< #line 13698 "configure"
---
> #line 13707 "configure"
13720c13729
< if { (eval echo configure:13721: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:13730: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13747c13756
< echo "configure:13748: checking for _ldexpl declaration" >&5
---
> echo "configure:13757: checking for _ldexpl declaration" >&5
13762c13771
< #line 13763 "configure"
---
> #line 13772 "configure"
13769c13778
< if { (eval echo configure:13770: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13779: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
13796c13805
< echo "configure:13797: checking for $ac_func" >&5
---
> echo "configure:13806: checking for $ac_func" >&5
13801c13810
< #line 13802 "configure"
---
> #line 13811 "configure"
13824c13833
< if { (eval echo configure:13825: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:13834: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13854c13863
< echo "configure:13855: checking for logl declaration" >&5
---
> echo "configure:13864: checking for logl declaration" >&5
13869c13878
< #line 13870 "configure"
---
> #line 13879 "configure"
13880c13889
< if { (eval echo configure:13881: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13890: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
13907c13916
< echo "configure:13908: checking for $ac_func" >&5
---
> echo "configure:13917: checking for $ac_func" >&5
13912c13921
< #line 13913 "configure"
---
> #line 13922 "configure"
13935c13944
< if { (eval echo configure:13936: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:13945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
13962c13971
< echo "configure:13963: checking for _logl declaration" >&5
---
> echo "configure:13972: checking for _logl declaration" >&5
13977c13986
< #line 13978 "configure"
---
> #line 13987 "configure"
13988c13997
< if { (eval echo configure:13989: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:13998: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14015c14024
< echo "configure:14016: checking for $ac_func" >&5
---
> echo "configure:14025: checking for $ac_func" >&5
14020c14029
< #line 14021 "configure"
---
> #line 14030 "configure"
14043c14052
< if { (eval echo configure:14044: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:14053: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
14073c14082
< echo "configure:14074: checking for log10l declaration" >&5
---
> echo "configure:14083: checking for log10l declaration" >&5
14088c14097
< #line 14089 "configure"
---
> #line 14098 "configure"
14099c14108
< if { (eval echo configure:14100: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:14109: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14126c14135
< echo "configure:14127: checking for $ac_func" >&5
---
> echo "configure:14136: checking for $ac_func" >&5
14131c14140
< #line 14132 "configure"
---
> #line 14141 "configure"
14154c14163
< if { (eval echo configure:14155: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:14164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
14181c14190
< echo "configure:14182: checking for _log10l declaration" >&5
---
> echo "configure:14191: checking for _log10l declaration" >&5
14196c14205
< #line 14197 "configure"
---
> #line 14206 "configure"
14207c14216
< if { (eval echo configure:14208: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:14217: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14234c14243
< echo "configure:14235: checking for $ac_func" >&5
---
> echo "configure:14244: checking for $ac_func" >&5
14239c14248
< #line 14240 "configure"
---
> #line 14249 "configure"
14262c14271
< if { (eval echo configure:14263: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:14272: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
14292c14301
< echo "configure:14293: checking for modfl declaration" >&5
---
> echo "configure:14302: checking for modfl declaration" >&5
14307c14316
< #line 14308 "configure"
---
> #line 14317 "configure"
14314c14323
< if { (eval echo configure:14315: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:14324: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14341c14350
< echo "configure:14342: checking for $ac_func" >&5
---
> echo "configure:14351: checking for $ac_func" >&5
14346c14355
< #line 14347 "configure"
---
> #line 14356 "configure"
14369c14378
< if { (eval echo configure:14370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:14379: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
14396c14405
< echo "configure:14397: checking for _modfl declaration" >&5
---
> echo "configure:14406: checking for _modfl declaration" >&5
14411c14420
< #line 14412 "configure"
---
> #line 14421 "configure"
14418c14427
< if { (eval echo configure:14419: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:14428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14445c14454
< echo "configure:14446: checking for $ac_func" >&5
---
> echo "configure:14455: checking for $ac_func" >&5
14450c14459
< #line 14451 "configure"
---
> #line 14460 "configure"
14473c14482
< if { (eval echo configure:14474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:14483: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
14503c14512
< echo "configure:14504: checking for powl declaration" >&5
---
> echo "configure:14513: checking for powl declaration" >&5
14518c14527
< #line 14519 "configure"
---
> #line 14528 "configure"
14525c14534
< if { (eval echo configure:14526: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:14535: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14552c14561
< echo "configure:14553: checking for $ac_func" >&5
---
> echo "configure:14562: checking for $ac_func" >&5
14557c14566
< #line 14558 "configure"
---
> #line 14567 "configure"
14580c14589
< if { (eval echo configure:14581: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:14590: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
14607c14616
< echo "configure:14608: checking for _powl declaration" >&5
---
> echo "configure:14617: checking for _powl declaration" >&5
14622c14631
< #line 14623 "configure"
---
> #line 14632 "configure"
14629c14638
< if { (eval echo configure:14630: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:14639: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14656c14665
< echo "configure:14657: checking for $ac_func" >&5
---
> echo "configure:14666: checking for $ac_func" >&5
14661c14670
< #line 14662 "configure"
---
> #line 14671 "configure"
14684c14693
< if { (eval echo configure:14685: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:14694: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
14714c14723
< echo "configure:14715: checking for sqrtl declaration" >&5
---
> echo "configure:14724: checking for sqrtl declaration" >&5
14729c14738
< #line 14730 "configure"
---
> #line 14739 "configure"
14740c14749
< if { (eval echo configure:14741: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:14750: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14767c14776
< echo "configure:14768: checking for $ac_func" >&5
---
> echo "configure:14777: checking for $ac_func" >&5
14772c14781
< #line 14773 "configure"
---
> #line 14782 "configure"
14795c14804
< if { (eval echo configure:14796: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:14805: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
14822c14831
< echo "configure:14823: checking for _sqrtl declaration" >&5
---
> echo "configure:14832: checking for _sqrtl declaration" >&5
14837c14846
< #line 14838 "configure"
---
> #line 14847 "configure"
14848c14857
< if { (eval echo configure:14849: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:14858: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14875c14884
< echo "configure:14876: checking for $ac_func" >&5
---
> echo "configure:14885: checking for $ac_func" >&5
14880c14889
< #line 14881 "configure"
---
> #line 14890 "configure"
14903c14912
< if { (eval echo configure:14904: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:14913: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
14933c14942
< echo "configure:14934: checking for sincosl declaration" >&5
---
> echo "configure:14943: checking for sincosl declaration" >&5
14948c14957
< #line 14949 "configure"
---
> #line 14958 "configure"
14955c14964
< if { (eval echo configure:14956: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:14965: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
14982c14991
< echo "configure:14983: checking for $ac_func" >&5
---
> echo "configure:14992: checking for $ac_func" >&5
14987c14996
< #line 14988 "configure"
---
> #line 14997 "configure"
15010c15019
< if { (eval echo configure:15011: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15020: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15037c15046
< echo "configure:15038: checking for _sincosl declaration" >&5
---
> echo "configure:15047: checking for _sincosl declaration" >&5
15052c15061
< #line 15053 "configure"
---
> #line 15062 "configure"
15059c15068
< if { (eval echo configure:15060: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:15069: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
15086c15095
< echo "configure:15087: checking for $ac_func" >&5
---
> echo "configure:15096: checking for $ac_func" >&5
15091c15100
< #line 15092 "configure"
---
> #line 15101 "configure"
15114c15123
< if { (eval echo configure:15115: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15124: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15144c15153
< echo "configure:15145: checking for finitel declaration" >&5
---
> echo "configure:15154: checking for finitel declaration" >&5
15159c15168
< #line 15160 "configure"
---
> #line 15169 "configure"
15170c15179
< if { (eval echo configure:15171: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:15180: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
15197c15206
< echo "configure:15198: checking for $ac_func" >&5
---
> echo "configure:15207: checking for $ac_func" >&5
15202c15211
< #line 15203 "configure"
---
> #line 15212 "configure"
15225c15234
< if { (eval echo configure:15226: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15235: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15252c15261
< echo "configure:15253: checking for _finitel declaration" >&5
---
> echo "configure:15262: checking for _finitel declaration" >&5
15267c15276
< #line 15268 "configure"
---
> #line 15277 "configure"
15278c15287
< if { (eval echo configure:15279: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:15288: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
15305c15314
< echo "configure:15306: checking for $ac_func" >&5
---
> echo "configure:15315: checking for $ac_func" >&5
15310c15319
< #line 15311 "configure"
---
> #line 15320 "configure"
15333c15342
< if { (eval echo configure:15334: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15343: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15364c15373
< echo "configure:15365: checking for _float trig functions" >&5
---
> echo "configure:15374: checking for _float trig functions" >&5
15378c15387
< #line 15379 "configure"
---
> #line 15388 "configure"
15387c15396
< if { (eval echo configure:15388: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:15397: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
15413c15422
< echo "configure:15414: checking for $ac_func" >&5
---
> echo "configure:15423: checking for $ac_func" >&5
15418c15427
< #line 15419 "configure"
---
> #line 15428 "configure"
15441c15450
< if { (eval echo configure:15442: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15451: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15469c15478
< echo "configure:15470: checking for _float round functions" >&5
---
> echo "configure:15479: checking for _float round functions" >&5
15483c15492
< #line 15484 "configure"
---
> #line 15493 "configure"
15490c15499
< if { (eval echo configure:15491: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:15500: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
15514c15523
< echo "configure:15515: checking for $ac_func" >&5
---
> echo "configure:15524: checking for $ac_func" >&5
15519c15528
< #line 15520 "configure"
---
> #line 15529 "configure"
15542c15551
< if { (eval echo configure:15543: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15552: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15571c15580
< echo "configure:15572: checking for _long double trig functions" >&5
---
> echo "configure:15581: checking for _long double trig functions" >&5
15585c15594
< #line 15586 "configure"
---
> #line 15595 "configure"
15594c15603
< if { (eval echo configure:15595: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:15604: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
15620c15629
< echo "configure:15621: checking for $ac_func" >&5
---
> echo "configure:15630: checking for $ac_func" >&5
15625c15634
< #line 15626 "configure"
---
> #line 15635 "configure"
15648c15657
< if { (eval echo configure:15649: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15658: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15676c15685
< echo "configure:15677: checking for _long double round functions" >&5
---
> echo "configure:15686: checking for _long double round functions" >&5
15690c15699
< #line 15691 "configure"
---
> #line 15700 "configure"
15697c15706
< if { (eval echo configure:15698: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:15707: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
15721c15730
< echo "configure:15722: checking for $ac_func" >&5
---
> echo "configure:15731: checking for $ac_func" >&5
15726c15735
< #line 15727 "configure"
---
> #line 15736 "configure"
15749c15758
< if { (eval echo configure:15750: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15759: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15781c15790
< echo "configure:15782: checking for main in -lm" >&5
---
> echo "configure:15791: checking for main in -lm" >&5
15789c15798
< #line 15790 "configure"
---
> #line 15799 "configure"
15796c15805
< if { (eval echo configure:15797: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15806: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15826c15835
< echo "configure:15827: checking for $ac_func" >&5
---
> echo "configure:15836: checking for $ac_func" >&5
15831c15840
< #line 15832 "configure"
---
> #line 15841 "configure"
15854c15863
< if { (eval echo configure:15855: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15864: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15887c15896
< echo "configure:15888: checking for $ac_func" >&5
---
> echo "configure:15897: checking for $ac_func" >&5
15892c15901
< #line 15893 "configure"
---
> #line 15902 "configure"
15915c15924
< if { (eval echo configure:15916: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:15925: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
15948c15957
< echo "configure:15949: checking for mbstate_t" >&5
---
> echo "configure:15958: checking for mbstate_t" >&5
15950c15959
< #line 15951 "configure"
---
> #line 15960 "configure"
15957c15966
< if { (eval echo configure:15958: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:15967: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
15979c15988
< echo "configure:15980: checking for $ac_hdr" >&5
---
> echo "configure:15989: checking for $ac_hdr" >&5
15984c15993
< #line 15985 "configure"
---
> #line 15994 "configure"
15989c15998
< { (eval echo configure:15990: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:15999: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
16018c16027
< echo "configure:16019: checking for wctype.h" >&5
---
> echo "configure:16028: checking for wctype.h" >&5
16023c16032
< #line 16024 "configure"
---
> #line 16033 "configure"
16028c16037
< { (eval echo configure:16029: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:16038: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
16055c16064
< echo "configure:16056: checking for WCHAR_MIN and WCHAR_MAX" >&5
---
> echo "configure:16065: checking for WCHAR_MIN and WCHAR_MAX" >&5
16057c16066
< #line 16058 "configure"
---
> #line 16067 "configure"
16064c16073
< if { (eval echo configure:16065: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:16074: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
16077c16086
< echo "configure:16078: checking for WEOF" >&5
---
> echo "configure:16087: checking for WEOF" >&5
16079c16088
< #line 16080 "configure"
---
> #line 16089 "configure"
16088c16097
< if { (eval echo configure:16089: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:16098: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
16104c16113
< echo "configure:16105: checking for $ac_func" >&5
---
> echo "configure:16114: checking for $ac_func" >&5
16109c16118
< #line 16110 "configure"
---
> #line 16119 "configure"
16132c16141
< if { (eval echo configure:16133: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:16142: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
16167c16176
< echo "configure:16168: checking for $ac_func" >&5
---
> echo "configure:16177: checking for $ac_func" >&5
16172c16181
< #line 16173 "configure"
---
> #line 16182 "configure"
16195c16204
< if { (eval echo configure:16196: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:16205: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
16223c16232
< echo "configure:16224: checking for ISO C99 wchar_t support" >&5
---
> echo "configure:16233: checking for ISO C99 wchar_t support" >&5
16234c16243
< echo "configure:16235: checking for iconv.h" >&5
---
> echo "configure:16244: checking for iconv.h" >&5
16239c16248
< #line 16240 "configure"
---
> #line 16249 "configure"
16244c16253
< { (eval echo configure:16245: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:16254: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
16268c16277
< echo "configure:16269: checking for langinfo.h" >&5
---
> echo "configure:16278: checking for langinfo.h" >&5
16273c16282
< #line 16274 "configure"
---
> #line 16283 "configure"
16278c16287
< { (eval echo configure:16279: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:16288: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
16302c16311
< echo "configure:16303: checking for iconv in -liconv" >&5
---
> echo "configure:16312: checking for iconv in -liconv" >&5
16310c16319
< #line 16311 "configure"
---
> #line 16320 "configure"
16321c16330
< if { (eval echo configure:16322: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:16331: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
16347c16356
< echo "configure:16348: checking for $ac_func" >&5
---
> echo "configure:16357: checking for $ac_func" >&5
16352c16361
< #line 16353 "configure"
---
> #line 16362 "configure"
16375c16384
< if { (eval echo configure:16376: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:16385: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
16405c16414
< echo "configure:16406: checking for XPG2 wchar_t support" >&5
---
> echo "configure:16415: checking for XPG2 wchar_t support" >&5
16415c16424
< echo "configure:16416: checking for enabled wchar_t specializations" >&5
---
> echo "configure:16425: checking for enabled wchar_t specializations" >&5
16437c16446
< echo "configure:16438: checking for strtold declaration" >&5
---
> echo "configure:16447: checking for strtold declaration" >&5
16452c16461
< #line 16453 "configure"
---
> #line 16462 "configure"
16459c16468
< if { (eval echo configure:16460: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:16469: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
16485c16494
< echo "configure:16486: checking for $ac_func" >&5
---
> echo "configure:16495: checking for $ac_func" >&5
16490c16499
< #line 16491 "configure"
---
> #line 16500 "configure"
16513c16522
< if { (eval echo configure:16514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:16523: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
16542c16551
< echo "configure:16543: checking for $ac_func" >&5
---
> echo "configure:16552: checking for $ac_func" >&5
16547c16556
< #line 16548 "configure"
---
> #line 16557 "configure"
16570c16579
< if { (eval echo configure:16571: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:16580: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
16599c16608
< #line 16600 "configure"
---
> #line 16609 "configure"
16608c16617
< if { (eval echo configure:16609: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:16618: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
16620c16629
<   for ac_hdr in stdlib.h unistd.h sys/stat.h sys/types.h
---
>   for ac_hdr in unistd.h
16624c16633
< echo "configure:16625: checking for $ac_hdr" >&5
---
> echo "configure:16634: checking for $ac_hdr" >&5
16629c16638
< #line 16630 "configure"
---
> #line 16639 "configure"
16634c16643
< { (eval echo configure:16635: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:16644: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
16663c16672
< echo "configure:16664: checking for $ac_func" >&5
---
> echo "configure:16673: checking for $ac_func" >&5
16668c16677
< #line 16669 "configure"
---
> #line 16678 "configure"
16691c16700
< if { (eval echo configure:16692: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:16701: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
16716c16725
< echo "configure:16717: checking for working mmap" >&5
---
> echo "configure:16726: checking for working mmap" >&5
16724c16733
< #line 16725 "configure"
---
> #line 16734 "configure"
16752,16767d16760
< #if HAVE_SYS_TYPES_H
< # include <sys/types.h>
< #endif
< 
< #if HAVE_STDLIB_H
< # include <stdlib.h>
< #endif
< 
< #if HAVE_SYS_STAT_H
< # include <sys/stat.h>
< #endif
< 
< #if HAVE_UNISTD_H
< # include <unistd.h>
< #endif
< 
16769a16763,16765
> # ifdef HAVE_UNISTD_H
> #  include <unistd.h>
> # endif
16877c16873
< if { (eval echo configure:16878: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
---
> if { (eval echo configure:16874: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
16910c16906
< echo "configure:16911: checking for $ac_hdr" >&5
---
> echo "configure:16907: checking for $ac_hdr" >&5
16915c16911
< #line 16916 "configure"
---
> #line 16912 "configure"
16920c16916
< { (eval echo configure:16921: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:16917: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
16953c16949
< #line 16954 "configure"
---
> #line 16950 "configure"
16962c16958
< if { (eval echo configure:16963: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:16959: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
16979c16975
< #line 16980 "configure"
---
> #line 16976 "configure"
16988c16984
< if { (eval echo configure:16989: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:16985: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
17005c17001
< #line 17006 "configure"
---
> #line 17002 "configure"
17014c17010
< if { (eval echo configure:17015: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:17011: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
17031c17027
< #line 17032 "configure"
---
> #line 17028 "configure"
17040c17036
< if { (eval echo configure:17041: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:17037: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
17062c17058
< #line 17063 "configure"
---
> #line 17059 "configure"
17071c17067
< if { (eval echo configure:17072: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
---
> if { (eval echo configure:17068: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
17087c17083
< echo "configure:17088: checking for testsuite memory limit support" >&5
---
> echo "configure:17084: checking for testsuite memory limit support" >&5
17171c17167
< echo "configure:17172: checking for locale.h" >&5
---
> echo "configure:17168: checking for locale.h" >&5
17176c17172
< #line 17177 "configure"
---
> #line 17173 "configure"
17181c17177
< { (eval echo configure:17182: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
---
> { (eval echo configure:17178: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
17199c17195
< echo "configure:17200: checking for LC_MESSAGES" >&5
---
> echo "configure:17196: checking for LC_MESSAGES" >&5
17204c17200
< #line 17205 "configure"
---
> #line 17201 "configure"
17211c17207
< if { (eval echo configure:17212: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:17208: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
17264c17260
< echo "configure:17265: checking for interface version number" >&5
---
> echo "configure:17261: checking for interface version number" >&5
17270c17266
< echo "configure:17271: checking for --with-gxx-include-dir" >&5
---
> echo "configure:17267: checking for --with-gxx-include-dir" >&5
17294c17290
< echo "configure:17295: checking for --enable-version-specific-runtime-libs" >&5
---
> echo "configure:17291: checking for --enable-version-specific-runtime-libs" >&5
17340c17336
< echo "configure:17341: checking for install location" >&5
---
> echo "configure:17337: checking for install location" >&5
Index: include/Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/include/Makefile.in,v
retrieving revision 1.2.6.10
diff -r1.2.6.10 Makefile.in
1c1
< # Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
---
> # Makefile.in generated automatically by automake 1.4 from Makefile.am
3c3
< # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
---
> # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
135,227c135
< bits_headers = \
< 	${bits_srcdir}/basic_file.h \
< 	${bits_srcdir}/basic_ios.h \
< 	${bits_srcdir}/basic_ios.tcc \
< 	${bits_srcdir}/basic_string.h \
< 	${bits_srcdir}/basic_string.tcc \
< 	${bits_srcdir}/boost_concept_check.h \
< 	${bits_srcdir}/char_traits.h \
< 	${bits_srcdir}/codecvt.h \
< 	${bits_srcdir}/concept_check.h \
< 	${bits_srcdir}/cpp_type_traits.h \
< 	${bits_srcdir}/fpos.h \
< 	${bits_srcdir}/fstream.tcc \
< 	${bits_srcdir}/functexcept.h \
< 	${bits_srcdir}/generic_shadow.h \
< 	${bits_srcdir}/gslice.h \
< 	${bits_srcdir}/gslice_array.h \
< 	${bits_srcdir}/indirect_array.h \
< 	${bits_srcdir}/ios_base.h \
< 	${bits_srcdir}/istream.tcc \
< 	${bits_srcdir}/locale_facets.h \
< 	${bits_srcdir}/locale_facets.tcc \
< 	${bits_srcdir}/localefwd.h \
< 	${bits_srcdir}/mask_array.h \
< 	${bits_srcdir}/ostream.tcc \
< 	${bits_srcdir}/pthread_allocimpl.h \
< 	${bits_srcdir}/sbuf_iter.h \
< 	${bits_srcdir}/slice.h \
< 	${bits_srcdir}/slice_array.h \
< 	${bits_srcdir}/sstream.tcc \
< 	${bits_srcdir}/std_algorithm.h \
< 	${bits_srcdir}/std_bitset.h \
< 	${bits_srcdir}/std_complex.h \
< 	${bits_srcdir}/std_deque.h \
< 	${bits_srcdir}/std_fstream.h \
< 	${bits_srcdir}/std_functional.h \
< 	${bits_srcdir}/std_iomanip.h \
< 	${bits_srcdir}/std_ios.h \
< 	${bits_srcdir}/std_iosfwd.h \
< 	${bits_srcdir}/std_iostream.h \
< 	${bits_srcdir}/std_istream.h \
< 	${bits_srcdir}/std_iterator.h \
<         ${bits_srcdir}/std_limits.h \
< 	${bits_srcdir}/std_list.h \
< 	${bits_srcdir}/std_locale.h \
< 	${bits_srcdir}/std_map.h \
< 	${bits_srcdir}/std_memory.h \
< 	${bits_srcdir}/std_numeric.h \
< 	${bits_srcdir}/std_ostream.h \
< 	${bits_srcdir}/std_queue.h \
< 	${bits_srcdir}/std_set.h \
< 	${bits_srcdir}/std_sstream.h \
< 	${bits_srcdir}/std_stack.h \
< 	${bits_srcdir}/std_stdexcept.h \
< 	${bits_srcdir}/std_streambuf.h \
< 	${bits_srcdir}/std_string.h \
< 	${bits_srcdir}/std_utility.h \
< 	${bits_srcdir}/std_valarray.h \
< 	${bits_srcdir}/std_vector.h \
< 	${bits_srcdir}/stl_algo.h \
< 	${bits_srcdir}/stl_algobase.h \
< 	${bits_srcdir}/stl_alloc.h \
< 	${bits_srcdir}/stl_bvector.h \
< 	${bits_srcdir}/stl_construct.h \
< 	${bits_srcdir}/stl_deque.h \
< 	${bits_srcdir}/stl_function.h \
< 	${bits_srcdir}/stl_heap.h \
< 	${bits_srcdir}/stl_iterator.h \
< 	${bits_srcdir}/stl_iterator_base_funcs.h \
< 	${bits_srcdir}/stl_iterator_base_types.h \
< 	${bits_srcdir}/stl_list.h \
< 	${bits_srcdir}/stl_map.h \
< 	${bits_srcdir}/stl_multimap.h \
< 	${bits_srcdir}/stl_multiset.h \
< 	${bits_srcdir}/stl_numeric.h \
< 	${bits_srcdir}/stl_pair.h \
< 	${bits_srcdir}/stl_pthread_alloc.h \
< 	${bits_srcdir}/stl_queue.h \
< 	${bits_srcdir}/stl_raw_storage_iter.h \
< 	${bits_srcdir}/stl_relops.h \
< 	${bits_srcdir}/stl_set.h \
< 	${bits_srcdir}/stl_stack.h \
< 	${bits_srcdir}/stl_tempbuf.h \
< 	${bits_srcdir}/stl_threads.h \
< 	${bits_srcdir}/stl_tree.h \
< 	${bits_srcdir}/stl_uninitialized.h \
< 	${bits_srcdir}/stl_vector.h \
< 	${bits_srcdir}/streambuf.tcc \
< 	${bits_srcdir}/stringfwd.h \
< 	${bits_srcdir}/type_traits.h \
< 	${bits_srcdir}/valarray_array.h \
< 	${bits_srcdir}/valarray_array.tcc \
< 	${bits_srcdir}/valarray_meta.h
---
> bits_headers =  	${bits_srcdir}/basic_file.h 	${bits_srcdir}/basic_ios.h 	${bits_srcdir}/basic_ios.tcc 	${bits_srcdir}/basic_string.h 	${bits_srcdir}/basic_string.tcc 	${bits_srcdir}/boost_concept_check.h 	${bits_srcdir}/char_traits.h 	${bits_srcdir}/codecvt.h 	${bits_srcdir}/concept_check.h 	${bits_srcdir}/cpp_type_traits.h 	${bits_srcdir}/fpos.h 	${bits_srcdir}/fstream.tcc 	${bits_srcdir}/functexcept.h 	${bits_srcdir}/generic_shadow.h 	${bits_srcdir}/gslice.h 	${bits_srcdir}/gslice_array.h 	${bits_srcdir}/indirect_array.h 	${bits_srcdir}/ios_base.h 	${bits_srcdir}/istream.tcc 	${bits_srcdir}/locale_facets.h 	${bits_srcdir}/locale_facets.tcc 	${bits_srcdir}/localefwd.h 	${bits_srcdir}/mask_array.h 	${bits_srcdir}/ostream.tcc 	${bits_srcdir}/pthread_allocimpl.h 	${bits_srcdir}/sbuf_iter.h 	${bits_srcdir}/slice.h 	${bits_srcdir}/slice_array.h 	${bits_srcdir}/sstream.tcc 	${bits_srcdir}/std_algorithm.h 	${bits_srcdir}/std_bitset.h 	${bits_srcdir}/std_complex.h 	${bits_srcdir}/std_deque.h 	${bits_srcdir}/std_fstream.h 	${bits_srcdir}/std_functional.h 	${bits_srcdir}/std_iomanip.h 	${bits_srcdir}/std_ios.h 	${bits_srcdir}/std_iosfwd.h 	${bits_srcdir}/std_iostream.h 	${bits_srcdir}/std_istream.h 	${bits_srcdir}/std_iterator.h         ${bits_srcdir}/std_limits.h 	${bits_srcdir}/std_list.h 	${bits_srcdir}/std_locale.h 	${bits_srcdir}/std_map.h 	${bits_srcdir}/std_memory.h 	${bits_srcdir}/std_numeric.h 	${bits_srcdir}/std_ostream.h 	${bits_srcdir}/std_queue.h 	${bits_srcdir}/std_set.h 	${bits_srcdir}/std_sstream.h 	${bits_srcdir}/std_stack.h 	${bits_srcdir}/std_stdexcept.h 	${bits_srcdir}/std_streambuf.h 	${bits_srcdir}/std_string.h 	${bits_srcdir}/std_utility.h 	${bits_srcdir}/std_valarray.h 	${bits_srcdir}/std_vector.h 	${bits_srcdir}/stl_algo.h 	${bits_srcdir}/stl_algobase.h 	${bits_srcdir}/stl_alloc.h 	${bits_srcdir}/stl_bvector.h 	${bits_srcdir}/stl_construct.h 	${bits_srcdir}/stl_deque.h 	${bits_srcdir}/stl_function.h 	${bits_srcdir}/stl_heap.h 	${bits_srcdir}/stl_iterator.h 	${bits_srcdir}/stl_iterator_base_funcs.h 	${bits_srcdir}/stl_iterator_base_types.h 	${bits_srcdir}/stl_list.h 	${bits_srcdir}/stl_map.h 	${bits_srcdir}/stl_multimap.h 	${bits_srcdir}/stl_multiset.h 	${bits_srcdir}/stl_numeric.h 	${bits_srcdir}/stl_pair.h 	${bits_srcdir}/stl_pthread_alloc.h 	${bits_srcdir}/stl_queue.h 	${bits_srcdir}/stl_raw_storage_iter.h 	${bits_srcdir}/stl_relops.h 	${bits_srcdir}/stl_set.h 	${bits_srcdir}/stl_stack.h 	${bits_srcdir}/stl_tempbuf.h 	${bits_srcdir}/stl_threads.h 	${bits_srcdir}/stl_tree.h 	${bits_srcdir}/stl_uninitialized.h 	${bits_srcdir}/stl_vector.h 	${bits_srcdir}/streambuf.tcc 	${bits_srcdir}/stringfwd.h 	${bits_srcdir}/type_traits.h 	${bits_srcdir}/valarray_array.h 	${bits_srcdir}/valarray_array.tcc 	${bits_srcdir}/valarray_meta.h
232,269c140
< backward_headers = \
< 	${backward_srcdir}/complex.h \
< 	${backward_srcdir}/iomanip.h \
< 	${backward_srcdir}/istream.h \
< 	${backward_srcdir}/ostream.h \
< 	${backward_srcdir}/stream.h \
< 	${backward_srcdir}/streambuf.h \
< 	${backward_srcdir}/algo.h \
< 	${backward_srcdir}/algobase.h \
< 	${backward_srcdir}/alloc.h \
< 	${backward_srcdir}/bvector.h \
< 	${backward_srcdir}/defalloc.h \
< 	${backward_srcdir}/deque.h \
< 	${backward_srcdir}/function.h \
< 	${backward_srcdir}/hash_map.h \
< 	${backward_srcdir}/hash_set.h \
< 	${backward_srcdir}/hashtable.h \
< 	${backward_srcdir}/heap.h \
< 	${backward_srcdir}/iostream.h \
< 	${backward_srcdir}/iterator.h \
< 	${backward_srcdir}/list.h \
< 	${backward_srcdir}/map.h \
< 	${backward_srcdir}/multimap.h \
< 	${backward_srcdir}/new.h \
< 	${backward_srcdir}/multiset.h \
< 	${backward_srcdir}/pair.h \
< 	${backward_srcdir}/queue.h \
< 	${backward_srcdir}/rope.h \
< 	${backward_srcdir}/set.h \
< 	${backward_srcdir}/slist.h \
< 	${backward_srcdir}/stack.h \
< 	${backward_srcdir}/tempbuf.h \
< 	${backward_srcdir}/tree.h \
< 	${backward_srcdir}/vector.h \
< 	${backward_srcdir}/fstream.h \
< 	${backward_srcdir}/strstream.h \
< 	${backward_srcdir}/strstream \
< 	${backward_srcdir}/backward_warning.h
---
> backward_headers =  	${backward_srcdir}/complex.h 	${backward_srcdir}/iomanip.h 	${backward_srcdir}/istream.h 	${backward_srcdir}/ostream.h 	${backward_srcdir}/stream.h 	${backward_srcdir}/streambuf.h 	${backward_srcdir}/algo.h 	${backward_srcdir}/algobase.h 	${backward_srcdir}/alloc.h 	${backward_srcdir}/bvector.h 	${backward_srcdir}/defalloc.h 	${backward_srcdir}/deque.h 	${backward_srcdir}/function.h 	${backward_srcdir}/hash_map.h 	${backward_srcdir}/hash_set.h 	${backward_srcdir}/hashtable.h 	${backward_srcdir}/heap.h 	${backward_srcdir}/iostream.h 	${backward_srcdir}/iterator.h 	${backward_srcdir}/list.h 	${backward_srcdir}/map.h 	${backward_srcdir}/multimap.h 	${backward_srcdir}/new.h 	${backward_srcdir}/multiset.h 	${backward_srcdir}/pair.h 	${backward_srcdir}/queue.h 	${backward_srcdir}/rope.h 	${backward_srcdir}/set.h 	${backward_srcdir}/slist.h 	${backward_srcdir}/stack.h 	${backward_srcdir}/tempbuf.h 	${backward_srcdir}/tree.h 	${backward_srcdir}/vector.h 	${backward_srcdir}/fstream.h 	${backward_srcdir}/strstream.h 	${backward_srcdir}/strstream 	${backward_srcdir}/backward_warning.h
274,282c145
< ext_headers = \
< 	${ext_srcdir}/rope \
< 	${ext_srcdir}/ropeimpl.h \
< 	${ext_srcdir}/stl_rope.h \
< 	${ext_srcdir}/slist \
< 	${ext_srcdir}/hash_map \
< 	${ext_srcdir}/hash_set \
< 	${ext_srcdir}/stl_hashtable.h \
< 	${ext_srcdir}/stl_hash_fun.h
---
> ext_headers =  	${ext_srcdir}/rope 	${ext_srcdir}/ropeimpl.h 	${ext_srcdir}/stl_rope.h 	${ext_srcdir}/slist 	${ext_srcdir}/hash_map 	${ext_srcdir}/hash_set 	${ext_srcdir}/stl_hashtable.h 	${ext_srcdir}/stl_hash_fun.h
288,306c151
< c_base_headers = \
< 	${c_base_srcdir}/std_cassert.h \
< 	${c_base_srcdir}/std_cctype.h \
< 	${c_base_srcdir}/std_cerrno.h \
< 	${c_base_srcdir}/std_cfloat.h \
< 	${c_base_srcdir}/std_climits.h \
< 	${c_base_srcdir}/std_clocale.h \
< 	${c_base_srcdir}/std_cmath.h \
< 	${c_base_srcdir}/std_csetjmp.h \
< 	${c_base_srcdir}/std_csignal.h \
< 	${c_base_srcdir}/std_cstdarg.h \
< 	${c_base_srcdir}/std_cstddef.h \
< 	${c_base_srcdir}/std_cstdio.h \
< 	${c_base_srcdir}/std_cstdlib.h \
< 	${c_base_srcdir}/std_cstring.h \
< 	${c_base_srcdir}/std_ctime.h \
< 	${c_base_srcdir}/std_cwchar.h \
< 	${c_base_srcdir}/std_cwctype.h \
< 	${c_base_srcdir}/cmath.tcc 
---
> c_base_headers =  	${c_base_srcdir}/std_cassert.h 	${c_base_srcdir}/std_cctype.h 	${c_base_srcdir}/std_cerrno.h 	${c_base_srcdir}/std_cfloat.h 	${c_base_srcdir}/std_climits.h 	${c_base_srcdir}/std_clocale.h 	${c_base_srcdir}/std_cmath.h 	${c_base_srcdir}/std_csetjmp.h 	${c_base_srcdir}/std_csignal.h 	${c_base_srcdir}/std_cstdarg.h 	${c_base_srcdir}/std_cstddef.h 	${c_base_srcdir}/std_cstdio.h 	${c_base_srcdir}/std_cstdlib.h 	${c_base_srcdir}/std_cstring.h 	${c_base_srcdir}/std_ctime.h 	${c_base_srcdir}/std_cwchar.h 	${c_base_srcdir}/std_cwctype.h 	${c_base_srcdir}/cmath.tcc 
311,358c156
< std_headers = \
< 	${std_srcdir}/algorithm \
< 	${std_srcdir}/bitset \
< 	${std_srcdir}/complex \
< 	${std_srcdir}/deque \
< 	${std_srcdir}/fstream \
< 	${std_srcdir}/functional \
< 	${std_srcdir}/iomanip \
< 	${std_srcdir}/ios \
< 	${std_srcdir}/iosfwd \
< 	${std_srcdir}/iostream \
< 	${std_srcdir}/istream \
< 	${std_srcdir}/iterator \
< 	${std_srcdir}/limits \
< 	${std_srcdir}/list \
< 	${std_srcdir}/locale \
< 	${std_srcdir}/map \
< 	${std_srcdir}/memory \
< 	${std_srcdir}/numeric \
< 	${std_srcdir}/ostream \
< 	${std_srcdir}/queue \
< 	${std_srcdir}/set \
< 	${std_srcdir}/sstream \
< 	${std_srcdir}/stack \
< 	${std_srcdir}/stdexcept \
< 	${std_srcdir}/streambuf \
< 	${std_srcdir}/string \
< 	${std_srcdir}/utility \
< 	${std_srcdir}/valarray \
< 	${std_srcdir}/vector \
< 	${std_srcdir}/cassert \
< 	${std_srcdir}/cctype \
< 	${std_srcdir}/cerrno \
< 	${std_srcdir}/cfloat \
< 	${std_srcdir}/climits \
< 	${std_srcdir}/clocale \
< 	${std_srcdir}/ciso646 \
< 	${std_srcdir}/cmath \
< 	${std_srcdir}/csetjmp \
< 	${std_srcdir}/csignal \
< 	${std_srcdir}/cstdarg \
< 	${std_srcdir}/cstddef \
< 	${std_srcdir}/cstdio \
< 	${std_srcdir}/cstdlib \
< 	${std_srcdir}/cstring \
< 	${std_srcdir}/ctime \
< 	${std_srcdir}/cwchar \
< 	${std_srcdir}/cwctype
---
> std_headers =  	${std_srcdir}/algorithm 	${std_srcdir}/bitset 	${std_srcdir}/complex 	${std_srcdir}/deque 	${std_srcdir}/fstream 	${std_srcdir}/functional 	${std_srcdir}/iomanip 	${std_srcdir}/ios 	${std_srcdir}/iosfwd 	${std_srcdir}/iostream 	${std_srcdir}/istream 	${std_srcdir}/iterator 	${std_srcdir}/limits 	${std_srcdir}/list 	${std_srcdir}/locale 	${std_srcdir}/map 	${std_srcdir}/memory 	${std_srcdir}/numeric 	${std_srcdir}/ostream 	${std_srcdir}/queue 	${std_srcdir}/set 	${std_srcdir}/sstream 	${std_srcdir}/stack 	${std_srcdir}/stdexcept 	${std_srcdir}/streambuf 	${std_srcdir}/string 	${std_srcdir}/utility 	${std_srcdir}/valarray 	${std_srcdir}/vector 	${std_srcdir}/cassert 	${std_srcdir}/cctype 	${std_srcdir}/cerrno 	${std_srcdir}/cfloat 	${std_srcdir}/climits 	${std_srcdir}/clocale 	${std_srcdir}/ciso646 	${std_srcdir}/cmath 	${std_srcdir}/csetjmp 	${std_srcdir}/csignal 	${std_srcdir}/cstdarg 	${std_srcdir}/cstddef 	${std_srcdir}/cstdio 	${std_srcdir}/cstdlib 	${std_srcdir}/cstring 	${std_srcdir}/ctime 	${std_srcdir}/cwchar 	${std_srcdir}/cwctype
363,369c161
< target_headers = \
< 	${target_srcdir}/ctype_base.h \
< 	${target_srcdir}/ctype_inline.h \
< 	${target_srcdir}/ctype_noninline.h \
< 	${target_srcdir}/os_defines.h \
< 	${glibcpp_srcdir}/@ATOMICITY_INC_SRCDIR@/atomicity.h \
< 	${glibcpp_srcdir}/@LIMITS_INC_SRCDIR@/limits.h
---
> target_headers =  	${target_srcdir}/ctype_base.h 	${target_srcdir}/ctype_inline.h 	${target_srcdir}/ctype_noninline.h 	${target_srcdir}/os_defines.h 	${glibcpp_srcdir}/@ATOMICITY_INC_SRCDIR@/atomicity.h 	${glibcpp_srcdir}/@LIMITS_INC_SRCDIR@/limits.h
375,378c167
< thread_headers = \
< 	${thread_builddir}/gthr.h \
< 	${thread_builddir}/gthr-single.h \
< 	${thread_builddir}/gthr-default.h
---
> thread_headers =  	${thread_builddir}/gthr.h 	${thread_builddir}/gthr-single.h 	${thread_builddir}/gthr-default.h
384,385c173
< allstamps = stamp-std stamp-bits stamp-c_base stamp-backward stamp-ext \
< 	stamp-target stamp-thread stamp-file_model stamp-io stamp-locale
---
> allstamps = stamp-std stamp-bits stamp-c_base stamp-backward stamp-ext 	stamp-target stamp-thread stamp-file_model stamp-io stamp-locale
405c193
< TAR = tar
---
> TAR = gtar
428c216
< 	    cp -pr $$d/$$file $(distdir)/$$file; \
---
> 	    cp -pr $$/$$file $(distdir)/$$file; \
Index: include/bits/locale_facets.tcc
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/include/bits/locale_facets.tcc,v
retrieving revision 1.8.2.5
diff -r1.8.2.5 locale_facets.tcc
422a423,426
> #  ifdef _GLIBCPP_USE_LIBIBERTY_STRTOLL
>   extern "C" long long strtoll(const char*, char**, int);
> #  endif
> 
530a535,538
> #  ifdef _GLIBCPP_USE_LIBIBERTY_STRTOLL
>   extern "C" unsigned long long strtoull(const char*, char**, int);
> #  endif
> 
Index: libio/Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/libio/Makefile.in,v
retrieving revision 1.65.2.10
diff -r1.65.2.10 Makefile.in
1c1
< # Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
---
> # Makefile.in generated automatically by automake 1.4 from Makefile.am
3c3
< # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
---
> # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
128c128
< @GLIBCPP_BUILD_LIBIO_TRUE@noinst_LTLIBRARIES = @GLIBCPP_BUILD_LIBIO_TRUE@libio.la
---
> @GLIBCPP_BUILD_LIBIO_TRUE@noinst_LTLIBRARIES = libio.la
136,138c136
< INCLUDES = \
< 	-nostdinc++ \
< 	$(GLIBCPP_INCLUDES) $(LIBIO_INCLUDES) $(TOPLEVEL_INCLUDES)	
---
> INCLUDES =  	-nostdinc++ 	$(GLIBCPP_INCLUDES) $(LIBIO_INCLUDES) $(TOPLEVEL_INCLUDES)	
141,142c139
< libio_headers = \
<         libio.h libioP.h iolibio.h
---
> libio_headers =          libio.h libioP.h iolibio.h
144,146c141
< @GLIBCPP_NEED_LIBIO_TRUE@LIBIO_SRCS = @GLIBCPP_NEED_LIBIO_TRUE@\
< @GLIBCPP_NEED_LIBIO_TRUE@	filedoalloc.c genops.c fileops.c stdfiles.c c_codecvt.c \
< @GLIBCPP_NEED_LIBIO_TRUE@	iofclose.c iofopen.c 
---
> @GLIBCPP_NEED_LIBIO_TRUE@LIBIO_SRCS = 	filedoalloc.c genops.c fileops.c stdfiles.c c_codecvt.c 	iofclose.c iofopen.c 
148,149c143
< @GLIBCPP_NEED_WLIBIO_TRUE@LIBIO_WSRCS = @GLIBCPP_NEED_WLIBIO_TRUE@\
< @GLIBCPP_NEED_WLIBIO_TRUE@	wfiledoalloc.c wfileops.c wgenops.c iofwide.c
---
> @GLIBCPP_NEED_WLIBIO_TRUE@LIBIO_WSRCS = 	wfiledoalloc.c wfileops.c wgenops.c iofwide.c
312c306
< 	    cp -pr $$d/$$file $(distdir)/$$file; \
---
> 	    cp -pr $$/$$file $(distdir)/$$file; \
Index: libmath/Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/libmath/Makefile.in,v
retrieving revision 1.37.2.13
diff -r1.37.2.13 Makefile.in
1c1
< # Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
---
> # Makefile.in generated automatically by automake 1.4 from Makefile.am
3c3
< # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
---
> # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
137,139c137
< libmath_la_LIBADD = \
< 	@LIBMATHOBJS@ \
< 	$(EXTRA_LONG_DOUBLE_$(USE_COMPLEX_LONG_DOUBLE)) 
---
> libmath_la_LIBADD =  	@LIBMATHOBJS@ 	$(EXTRA_LONG_DOUBLE_$(USE_COMPLEX_LONG_DOUBLE)) 
151,152c149
< INCLUDES = \
< 	$(TOPLEVEL_INCLUDES) 
---
> INCLUDES =  	$(TOPLEVEL_INCLUDES) 
283c280
< 	    cp -pr $$d/$$file $(distdir)/$$file; \
---
> 	    cp -pr $$/$$file $(distdir)/$$file; \
Index: libsupc++/Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/libsupc++/Makefile.in,v
retrieving revision 1.39.2.14
diff -r1.39.2.14 Makefile.in
1c1
< # Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
---
> # Makefile.in generated automatically by automake 1.4 from Makefile.am
3c3
< # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
---
> # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
148,149c148
< CONFIG_CXXFLAGS = \
< 	@EXTRA_CXX_FLAGS@ @SECTION_FLAGS@ @CSHADOW_FLAGS@ @DEBUG_FLAGS@ 
---
> CONFIG_CXXFLAGS =  	@EXTRA_CXX_FLAGS@ @SECTION_FLAGS@ @CSHADOW_FLAGS@ @DEBUG_FLAGS@ 
153,154c152
< WARN_CXXFLAGS = \
< 	@WARN_FLAGS@ $(WERROR) -fdiagnostics-show-location=once
---
> WARN_CXXFLAGS =  	@WARN_FLAGS@ $(WERROR) -fdiagnostics-show-location=once
161,191c159,165
< INCLUDES = \
< 	-I$(toplevel_srcdir)/gcc -I$(toplevel_srcdir)/include \
< 	$(GLIBCPP_INCLUDES) $(LIBSUPCXX_INCLUDES)
< 
< 
< headers = \
< 	exception new typeinfo cxxabi.h exception_defines.h 
< 
< 
< sources = \
< 	del_op.cc \
< 	del_opnt.cc \
< 	del_opv.cc \
< 	del_opvnt.cc \
< 	eh_alloc.cc \
< 	eh_aux_runtime.cc \
< 	eh_catch.cc \
< 	eh_exception.cc \
< 	eh_globals.cc \
< 	eh_personality.cc \
< 	eh_terminate.cc \
< 	eh_throw.cc \
< 	new_handler.cc \
< 	new_op.cc \
< 	new_opnt.cc \
< 	new_opv.cc \
< 	new_opvnt.cc \
< 	pure.cc \
< 	tinfo.cc \
< 	tinfo2.cc \
< 	vec.cc
---
> INCLUDES =  	-I$(toplevel_srcdir)/gcc -I$(toplevel_srcdir)/include 	$(GLIBCPP_INCLUDES) $(LIBSUPCXX_INCLUDES)
> 
> 
> headers =  	exception new typeinfo cxxabi.h exception_defines.h 
> 
> 
> sources =  	del_op.cc 	del_opnt.cc 	del_opv.cc 	del_opvnt.cc 	eh_alloc.cc 	eh_aux_runtime.cc 	eh_catch.cc 	eh_exception.cc 	eh_globals.cc 	eh_personality.cc 	eh_terminate.cc 	eh_throw.cc 	new_handler.cc 	new_op.cc 	new_opnt.cc 	new_opv.cc 	new_opvnt.cc 	pure.cc 	tinfo.cc 	tinfo2.cc 	vec.cc
207,212c181
< AM_CXXFLAGS = \
< 	-fno-implicit-templates \
< 	$(LIBSUPCXX_CXXFLAGS) \
< 	$(WARN_CXXFLAGS) \
< 	$(OPTIMIZE_CXXFLAGS) \
< 	$(CONFIG_CXXFLAGS) 
---
> AM_CXXFLAGS =  	-fno-implicit-templates 	$(LIBSUPCXX_CXXFLAGS) 	$(WARN_CXXFLAGS) 	$(OPTIMIZE_CXXFLAGS) 	$(CONFIG_CXXFLAGS) 
236,238c205
< LTCXXCOMPILE = $(LIBTOOL) --tag CXX --tag disable-shared \
<                --mode=compile $(CXX) $(INCLUDES) \
< 	       $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(AM_CXXFLAGS) 
---
> LTCXXCOMPILE = $(LIBTOOL) --tag CXX --tag disable-shared                --mode=compile $(CXX) $(INCLUDES) 	       $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(AM_CXXFLAGS) 
247,249c214
< CXXLINK = $(LIBTOOL) --tag CXX --tag disable-shared \
<           --mode=link $(CXX) \
<           @OPT_LDFLAGS@ @SECTION_LDFLAGS@ $(AM_CXXFLAGS) $(LDFLAGS) -o $@
---
> CXXLINK = $(LIBTOOL) --tag CXX --tag disable-shared           --mode=link $(CXX)           @OPT_LDFLAGS@ @SECTION_LDFLAGS@ $(AM_CXXFLAGS) $(LDFLAGS) -o $@
426c391
< 	    cp -pr $$d/$$file $(distdir)/$$file; \
---
> 	    cp -pr $$/$$file $(distdir)/$$file; \
Index: src/Makefile.am
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/src/Makefile.am,v
retrieving revision 1.71.2.14
diff -r1.71.2.14 Makefile.am
137a138
> LIBS = -L../../libiberty -liberty
Index: src/Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/src/Makefile.in,v
retrieving revision 1.95.2.18
diff -r1.95.2.18 Makefile.in
1c1
< # Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
---
> # Makefile.in generated automatically by automake 1.4 from Makefile.am
3c3
< # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
---
> # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
140,141c140
< CONFIG_CXXFLAGS = \
< 	@EXTRA_CXX_FLAGS@ @SECTION_FLAGS@ @CSHADOW_FLAGS@ @DEBUG_FLAGS@ 
---
> CONFIG_CXXFLAGS =  	@EXTRA_CXX_FLAGS@ @SECTION_FLAGS@ @CSHADOW_FLAGS@ @DEBUG_FLAGS@ 
145,146c144
< WARN_CXXFLAGS = \
< 	@WARN_FLAGS@ $(WERROR) -fdiagnostics-show-location=once
---
> WARN_CXXFLAGS =  	@WARN_FLAGS@ $(WERROR) -fdiagnostics-show-location=once
156,160c154
< INCLUDES = \
< 	-nostdinc++ \
< 	$(GLIBCPP_INCLUDES) \
< 	$(LIBSUPCXX_INCLUDES) $(LIBIO_INCLUDES) $(LIBMATH_INCLUDES) \
< 	$(TOPLEVEL_INCLUDES)
---
> INCLUDES =  	-nostdinc++ 	$(GLIBCPP_INCLUDES) 	$(LIBSUPCXX_INCLUDES) $(LIBIO_INCLUDES) $(LIBMATH_INCLUDES) 	$(TOPLEVEL_INCLUDES)
163,168c157
< sources = \
< 	basic_file.cc bitset.cc c++locale.cc cmath.cc codecvt.cc \
< 	complex_io.cc functexcept.cc globals.cc ios.cc limits.cc \
< 	locale.cc locale-inst.cc localename.cc misc-inst.cc stdexcept.cc \
< 	stl-inst.cc string-inst.cc strstream.cc valarray-inst.cc \
< 	wstring-inst.cc
---
> sources =  	basic_file.cc bitset.cc c++locale.cc cmath.cc codecvt.cc 	complex_io.cc functexcept.cc globals.cc ios.cc limits.cc 	locale.cc locale-inst.cc localename.cc misc-inst.cc stdexcept.cc 	stl-inst.cc string-inst.cc strstream.cc valarray-inst.cc 	wstring-inst.cc
175,177c164
< libstdc___la_LIBADD = \
< 	../libmath/libmath.la @libio_la@ \
< 	../libsupc++/libsupc++convenience.la
---
> libstdc___la_LIBADD =  	../libmath/libmath.la @libio_la@ 	../libsupc++/libsupc++convenience.la
197,202c184
< AM_CXXFLAGS = \
< 	-fno-implicit-templates \
< 	$(LIBSUPCXX_CXXFLAGS) \
< 	$(WARN_CXXFLAGS) \
< 	$(OPTIMIZE_CXXFLAGS) \
< 	$(CONFIG_CXXFLAGS) 
---
> AM_CXXFLAGS =  	-fno-implicit-templates 	$(LIBSUPCXX_CXXFLAGS) 	$(WARN_CXXFLAGS) 	$(OPTIMIZE_CXXFLAGS) 	$(CONFIG_CXXFLAGS) 
223,224c205
< LTCXXCOMPILE = $(LIBTOOL) --tag CXX --mode=compile $(CXX) $(INCLUDES) \
< 	       $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(AM_CXXFLAGS) 
---
> LTCXXCOMPILE = $(LIBTOOL) --tag CXX --mode=compile $(CXX) $(INCLUDES) 	       $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(AM_CXXFLAGS) 
233,234c214,215
< CXXLINK = $(LIBTOOL) --tag CXX --mode=link $(CXX) \
< 	  @OPT_LDFLAGS@ @SECTION_LDFLAGS@ $(AM_CXXFLAGS) $(LDFLAGS) -o $@
---
> LIBS = -L../../libiberty -liberty
> CXXLINK = $(LIBTOOL) --tag CXX --mode=link $(CXX) 	  @OPT_LDFLAGS@ @SECTION_LDFLAGS@ $(AM_CXXFLAGS) $(LDFLAGS) -o $@
244d224
< LIBS = @LIBS@
389c369
< 	    cp -pr $$d/$$file $(distdir)/$$file; \
---
> 	    cp -pr $$/$$file $(distdir)/$$file; \
Index: testsuite/Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libstdc++-v3/testsuite/Makefile.in,v
retrieving revision 1.6.2.8
diff -r1.6.2.8 Makefile.in
1c1
< # Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
---
> # Makefile.in generated automatically by automake 1.4 from Makefile.am
3c3
< # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
---
> # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
132,134c132
< EXPECT = `if [ -f @glibcpp_builddir@/../../expect/expect ] ; then \
<             echo @glibcpp_builddir@/../../expect/expect ; \
<           else echo expect ; fi`
---
> EXPECT = `if [ -f @glibcpp_builddir@/../../expect/expect ] ; then             echo @glibcpp_builddir@/../../expect/expect ;           else echo expect ; fi`
137,139c135
< RUNTEST = `if [ -f @glibcpp_srcdir@/../dejagnu/runtest ] ; then \
< 	       echo @glibcpp_srcdir@/../dejagnu/runtest ; \
< 	    else echo runtest; fi`
---
> RUNTEST = `if [ -f @glibcpp_srcdir@/../dejagnu/runtest ] ; then 	       echo @glibcpp_srcdir@/../dejagnu/runtest ; 	    else echo runtest; fi`
174c170
< 	    cp -pr $$d/$$file $(distdir)/$$file; \
---
> 	    cp -pr $$/$$file $(distdir)/$$file; \
? strtoull.c
? strtoll.c
Index: Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libiberty/Makefile.in,v
retrieving revision 1.57.4.2
diff -c -3 -p -r1.57.4.2 Makefile.in
*** Makefile.in	7 Dec 2001 03:39:16 -0000	1.57.4.2
--- Makefile.in	18 Feb 2002 14:48:39 -0000
*************** CFILES = asprintf.c alloca.c argv.c atex
*** 134,140 ****
  	partition.c pexecute.c putenv.c random.c rename.c rindex.c setenv.c   \
  	sigsetmask.c safe-ctype.c sort.c spaces.c splay-tree.c strcasecmp.c   \
  	strncasecmp.c strchr.c strdup.c strerror.c strncmp.c strrchr.c        \
! 	strsignal.c strstr.c strtod.c strtol.c strtoul.c tmpnam.c vasprintf.c \
  	vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c xatexit.c xexit.c   \
  	xmalloc.c xmemdup.c xstrdup.c xstrerror.c
  
--- 134,141 ----
  	partition.c pexecute.c putenv.c random.c rename.c rindex.c setenv.c   \
  	sigsetmask.c safe-ctype.c sort.c spaces.c splay-tree.c strcasecmp.c   \
  	strncasecmp.c strchr.c strdup.c strerror.c strncmp.c strrchr.c        \
! 	strsignal.c strstr.c strtod.c strtol.c strtoul.c strtoll.c strtoull.c \
!         tmpnam.c vasprintf.c \
  	vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c xatexit.c xexit.c   \
  	xmalloc.c xmemdup.c xstrdup.c xstrerror.c
  
*************** install_to_tooldir: all
*** 172,178 ****
  # to include there.  Do not add anything LGPL to this list; libstdc++
  # can't use anything encumbering.
  NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
! 	 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
  	 vfork waitpid bcmp bcopy bzero
  needed-list: Makefile
  	rm -f needed-list; touch needed-list; \
--- 173,180 ----
  # to include there.  Do not add anything LGPL to this list; libstdc++
  # can't use anything encumbering.
  NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
! 	 strerror strncmp strrchr strstr strtol strtoul strtoll strtoull \
!          stmpnam vfprintf vprintf \
  	 vfork waitpid bcmp bcopy bzero
  needed-list: Makefile
  	rm -f needed-list; touch needed-list; \
*************** strerror.o: config.h $(INCDIR)/libiberty
*** 299,304 ****
--- 301,308 ----
  strsignal.o: config.h $(INCDIR)/libiberty.h
  strtol.o: config.h
  strtoul.o: config.h
+ strtoll.o: config.h
+ strtoull.o: config.h
  vasprintf.o: config.h
  xatexit.o: $(INCDIR)/libiberty.h
  xexit.o: config.h $(INCDIR)/libiberty.h
Index: configure
===================================================================
RCS file: /cvsroot/gcc/gcc/libiberty/configure,v
retrieving revision 1.28.4.2
diff -c -3 -p -r1.28.4.2 configure
*** configure	22 Jan 2002 22:29:04 -0000	1.28.4.2
--- configure	18 Feb 2002 14:48:39 -0000
*************** funcs="$funcs strstr"
*** 1354,1359 ****
--- 1354,1361 ----
  funcs="$funcs strtod"
  funcs="$funcs strtol"
  funcs="$funcs strtoul"
+ funcs="$funcs strtoll"
+ funcs="$funcs strtoull"
  funcs="$funcs tmpnam"
  funcs="$funcs vasprintf"
  funcs="$funcs vfprintf"
*************** if test "x" = "y"; then
*** 1373,1384 ****
    for ac_func in asprintf atexit basename bcmp bcopy bsearch bzero calloc clock
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1377: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1382 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 1375,1386 ----
    for ac_func in asprintf atexit basename bcmp bcopy bsearch bzero calloc clock
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1379: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1384 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 1401,1407 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:1405: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 1403,1409 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:1407: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** done
*** 1428,1439 ****
    for ac_func in getcwd getpagesize index insque mkstemps memchr memcmp memcpy
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1432: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1437 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 1430,1441 ----
    for ac_func in getcwd getpagesize index insque mkstemps memchr memcmp memcpy
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1434: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1439 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 1456,1462 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:1460: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 1458,1464 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:1462: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** done
*** 1483,1494 ****
    for ac_func in memmove memset putenv random rename rindex sigsetmask
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1487: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1492 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 1485,1496 ----
    for ac_func in memmove memset putenv random rename rindex sigsetmask
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1489: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1494 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 1511,1517 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:1515: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 1513,1519 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:1517: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** done
*** 1538,1549 ****
    for ac_func in strcasecmp setenv strchr strdup strncasecmp strrchr strstr
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1542: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1547 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 1540,1551 ----
    for ac_func in strcasecmp setenv strchr strdup strncasecmp strrchr strstr
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1544: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1549 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 1566,1572 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:1570: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 1568,1574 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:1572: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** else
*** 1590,1604 ****
  fi
  done
  
!   for ac_func in strtod strtol strtoul tmpnam vasprintf vfprintf vprintf
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1597: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1602 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 1592,1606 ----
  fi
  done
  
!   for ac_func in strtod strtol strtoul strtoll strtoull
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1599: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1604 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 1621,1627 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:1625: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 1623,1684 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:1627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
!   rm -rf conftest*
!   eval "ac_cv_func_$ac_func=yes"
! else
!   echo "configure: failed program was:" >&5
!   cat conftest.$ac_ext >&5
!   rm -rf conftest*
!   eval "ac_cv_func_$ac_func=no"
! fi
! rm -f conftest*
! fi
! 
! if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
!   echo "$ac_t""yes" 1>&6
!     ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
!   cat >> confdefs.h <<EOF
! #define $ac_tr_func 1
! EOF
!  
! else
!   echo "$ac_t""no" 1>&6
! fi
! done
! 
!   for ac_func in tmpnam vasprintf vfprintf vprintf
! do
! echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1654: checking for $ac_func" >&5
! if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
!   echo $ac_n "(cached) $ac_c" 1>&6
! else
!   cat > conftest.$ac_ext <<EOF
! #line 1659 "configure"
! #include "confdefs.h"
! /* System header to define __stub macros and hopefully few prototypes,
!     which can conflict with char $ac_func(); below.  */
! #include <assert.h>
! /* Override any gcc2 internal prototype to avoid an error.  */
! /* We use char because int might match the return type of a gcc2
!     builtin and then its argument prototype would still apply.  */
! char $ac_func();
! 
! int main() {
! 
! /* The GNU C library defines this for functions which it implements
!     to always fail with ENOSYS.  Some functions are actually named
!     something starting with __ and the normal name is an alias.  */
! #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
! choke me
! #else
! $ac_func();
! #endif
! 
! ; return 0; }
! EOF
! if { (eval echo configure:1682: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** done
*** 1648,1659 ****
    for ac_func in vsprintf waitpid getrusage on_exit psignal strerror strsignal
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1652: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1657 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 1705,1716 ----
    for ac_func in vsprintf waitpid getrusage on_exit psignal strerror strsignal
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1709: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1714 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 1676,1682 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:1680: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 1733,1739 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:1737: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** done
*** 1703,1714 ****
    for ac_func in sysconf times sbrk gettimeofday
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1707: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1712 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 1760,1771 ----
    for ac_func in sysconf times sbrk gettimeofday
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1764: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1769 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 1731,1737 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:1735: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 1788,1794 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:1792: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** if test -z "${setobjs}"; then
*** 1930,1936 ****
    # We haven't set the list of objects yet.  Use the standard autoconf
    # tests.  This will only work if the compiler works.
    echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
! echo "configure:1934: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  
  ac_ext=c
  # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
--- 1987,1993 ----
    # We haven't set the list of objects yet.  Use the standard autoconf
    # tests.  This will only work if the compiler works.
    echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
! echo "configure:1991: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  
  ac_ext=c
  # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
*************** cross_compiling=$ac_cv_prog_cc_cross
*** 1941,1952 ****
  
  cat > conftest.$ac_ext << EOF
  
! #line 1945 "configure"
  #include "confdefs.h"
  
  main(){return(0);}
  EOF
! if { (eval echo configure:1950: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    ac_cv_prog_cc_works=yes
    # If we can't run a trivial program, we are probably using a cross compiler.
    if (./conftest; exit) 2>/dev/null; then
--- 1998,2009 ----
  
  cat > conftest.$ac_ext << EOF
  
! #line 2002 "configure"
  #include "confdefs.h"
  
  main(){return(0);}
  EOF
! if { (eval echo configure:2007: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    ac_cv_prog_cc_works=yes
    # If we can't run a trivial program, we are probably using a cross compiler.
    if (./conftest; exit) 2>/dev/null; then
*************** if test $ac_cv_prog_cc_works = no; then
*** 1972,1990 ****
    { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
  fi
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
! echo "configure:1976: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  cross_compiling=$ac_cv_prog_cc_cross
  
    for ac_func in $funcs
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:1983: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 1988 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 2029,2047 ----
    { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
  fi
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
! echo "configure:2033: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  cross_compiling=$ac_cv_prog_cc_cross
  
    for ac_func in $funcs
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:2040: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2045 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 2007,2013 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:2011: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 2064,2070 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:2068: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** EOF
*** 2054,2072 ****
      # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  # for constant arguments.  Useless!
  echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
! echo "configure:2058: checking for working alloca.h" >&5
  if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2063 "configure"
  #include "confdefs.h"
  #include <alloca.h>
  int main() {
  char *p = alloca(2 * sizeof(int));
  ; return 0; }
  EOF
! if { (eval echo configure:2070: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    ac_cv_header_alloca_h=yes
  else
--- 2111,2129 ----
      # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  # for constant arguments.  Useless!
  echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
! echo "configure:2115: checking for working alloca.h" >&5
  if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2120 "configure"
  #include "confdefs.h"
  #include <alloca.h>
  int main() {
  char *p = alloca(2 * sizeof(int));
  ; return 0; }
  EOF
! if { (eval echo configure:2127: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    ac_cv_header_alloca_h=yes
  else
*************** EOF
*** 2087,2098 ****
  fi
  
  echo $ac_n "checking for alloca""... $ac_c" 1>&6
! echo "configure:2091: checking for alloca" >&5
  if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2096 "configure"
  #include "confdefs.h"
  
  #ifdef __GNUC__
--- 2144,2155 ----
  fi
  
  echo $ac_n "checking for alloca""... $ac_c" 1>&6
! echo "configure:2148: checking for alloca" >&5
  if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2153 "configure"
  #include "confdefs.h"
  
  #ifdef __GNUC__
*************** int main() {
*** 2120,2126 ****
  char *p = (char *) alloca(1);
  ; return 0; }
  EOF
! if { (eval echo configure:2124: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    ac_cv_func_alloca_works=yes
  else
--- 2177,2183 ----
  char *p = (char *) alloca(1);
  ; return 0; }
  EOF
! if { (eval echo configure:2181: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    ac_cv_func_alloca_works=yes
  else
*************** EOF
*** 2152,2163 ****
  
  
  echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
! echo "configure:2156: checking whether alloca needs Cray hooks" >&5
  if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2161 "configure"
  #include "confdefs.h"
  #if defined(CRAY) && ! defined(CRAY2)
  webecray
--- 2209,2220 ----
  
  
  echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
! echo "configure:2213: checking whether alloca needs Cray hooks" >&5
  if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2218 "configure"
  #include "confdefs.h"
  #if defined(CRAY) && ! defined(CRAY2)
  webecray
*************** echo "$ac_t""$ac_cv_os_cray" 1>&6
*** 2182,2193 ****
  if test $ac_cv_os_cray = yes; then
  for ac_func in _getb67 GETB67 getb67; do
    echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:2186: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2191 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 2239,2250 ----
  if test $ac_cv_os_cray = yes; then
  for ac_func in _getb67 GETB67 getb67; do
    echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:2243: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2248 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 2210,2216 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:2214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 2267,2273 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:2271: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** done
*** 2237,2243 ****
  fi
  
  echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
! echo "configure:2241: checking stack direction for C alloca" >&5
  if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 2294,2300 ----
  fi
  
  echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
! echo "configure:2298: checking stack direction for C alloca" >&5
  if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
*************** else
*** 2245,2251 ****
    ac_cv_c_stack_direction=0
  else
    cat > conftest.$ac_ext <<EOF
! #line 2249 "configure"
  #include "confdefs.h"
  find_stack_direction ()
  {
--- 2302,2308 ----
    ac_cv_c_stack_direction=0
  else
    cat > conftest.$ac_ext <<EOF
! #line 2306 "configure"
  #include "confdefs.h"
  find_stack_direction ()
  {
*************** main ()
*** 2264,2270 ****
    exit (find_stack_direction() < 0);
  }
  EOF
! if { (eval echo configure:2268: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    ac_cv_c_stack_direction=1
  else
--- 2321,2327 ----
    exit (find_stack_direction() < 0);
  }
  EOF
! if { (eval echo configure:2325: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    ac_cv_c_stack_direction=1
  else
*************** fi
*** 2289,2300 ****
    esac
  
    echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
! echo "configure:2293: checking for ANSI C header files" >&5
  if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2298 "configure"
  #include "confdefs.h"
  #include <stdlib.h>
  #include <stdarg.h>
--- 2346,2357 ----
    esac
  
    echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
! echo "configure:2350: checking for ANSI C header files" >&5
  if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2355 "configure"
  #include "confdefs.h"
  #include <stdlib.h>
  #include <stdarg.h>
*************** else
*** 2302,2308 ****
  #include <float.h>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:2306: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
--- 2359,2365 ----
  #include <float.h>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:2363: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
*************** rm -f conftest*
*** 2319,2325 ****
  if test $ac_cv_header_stdc = yes; then
    # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  cat > conftest.$ac_ext <<EOF
! #line 2323 "configure"
  #include "confdefs.h"
  #include <string.h>
  EOF
--- 2376,2382 ----
  if test $ac_cv_header_stdc = yes; then
    # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  cat > conftest.$ac_ext <<EOF
! #line 2380 "configure"
  #include "confdefs.h"
  #include <string.h>
  EOF
*************** fi
*** 2337,2343 ****
  if test $ac_cv_header_stdc = yes; then
    # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  cat > conftest.$ac_ext <<EOF
! #line 2341 "configure"
  #include "confdefs.h"
  #include <stdlib.h>
  EOF
--- 2394,2400 ----
  if test $ac_cv_header_stdc = yes; then
    # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  cat > conftest.$ac_ext <<EOF
! #line 2398 "configure"
  #include "confdefs.h"
  #include <stdlib.h>
  EOF
*************** if test "$cross_compiling" = yes; then
*** 2358,2364 ****
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2362 "configure"
  #include "confdefs.h"
  #include <ctype.h>
  #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
--- 2415,2421 ----
    :
  else
    cat > conftest.$ac_ext <<EOF
! #line 2419 "configure"
  #include "confdefs.h"
  #include <ctype.h>
  #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
*************** if (XOR (islower (i), ISLOWER (i)) || to
*** 2369,2375 ****
  exit (0); }
  
  EOF
! if { (eval echo configure:2373: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    :
  else
--- 2426,2432 ----
  exit (0); }
  
  EOF
! if { (eval echo configure:2430: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    :
  else
*************** EOF
*** 2393,2404 ****
  fi
  
  echo $ac_n "checking for pid_t""... $ac_c" 1>&6
! echo "configure:2397: checking for pid_t" >&5
  if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2402 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
  #if STDC_HEADERS
--- 2450,2461 ----
  fi
  
  echo $ac_n "checking for pid_t""... $ac_c" 1>&6
! echo "configure:2454: checking for pid_t" >&5
  if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2459 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
  #if STDC_HEADERS
*************** fi
*** 2427,2443 ****
  
  ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'`
  echo $ac_n "checking for vfork.h""... $ac_c" 1>&6
! echo "configure:2431: checking for vfork.h" >&5
  if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2436 "configure"
  #include "confdefs.h"
  #include <vfork.h>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:2441: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
--- 2484,2500 ----
  
  ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'`
  echo $ac_n "checking for vfork.h""... $ac_c" 1>&6
! echo "configure:2488: checking for vfork.h" >&5
  if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2493 "configure"
  #include "confdefs.h"
  #include <vfork.h>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:2498: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
*************** else
*** 2462,2479 ****
  fi
  
  echo $ac_n "checking for working vfork""... $ac_c" 1>&6
! echo "configure:2466: checking for working vfork" >&5
  if eval "test \"`echo '$''{'ac_cv_func_vfork_works'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    if test "$cross_compiling" = yes; then
    echo $ac_n "checking for vfork""... $ac_c" 1>&6
! echo "configure:2472: checking for vfork" >&5
  if eval "test \"`echo '$''{'ac_cv_func_vfork'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2477 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char vfork(); below.  */
--- 2519,2536 ----
  fi
  
  echo $ac_n "checking for working vfork""... $ac_c" 1>&6
! echo "configure:2523: checking for working vfork" >&5
  if eval "test \"`echo '$''{'ac_cv_func_vfork_works'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    if test "$cross_compiling" = yes; then
    echo $ac_n "checking for vfork""... $ac_c" 1>&6
! echo "configure:2529: checking for vfork" >&5
  if eval "test \"`echo '$''{'ac_cv_func_vfork'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2534 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char vfork(); below.  */
*************** vfork();
*** 2496,2502 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:2500: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_vfork=yes"
  else
--- 2553,2559 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:2557: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_vfork=yes"
  else
*************** fi
*** 2518,2524 ****
  ac_cv_func_vfork_works=$ac_cv_func_vfork
  else
    cat > conftest.$ac_ext <<EOF
! #line 2522 "configure"
  #include "confdefs.h"
  /* Thanks to Paul Eggert for this test.  */
  #include <stdio.h>
--- 2575,2581 ----
  ac_cv_func_vfork_works=$ac_cv_func_vfork
  else
    cat > conftest.$ac_ext <<EOF
! #line 2579 "configure"
  #include "confdefs.h"
  /* Thanks to Paul Eggert for this test.  */
  #include <stdio.h>
*************** main() {
*** 2613,2619 ****
    }
  }
  EOF
! if { (eval echo configure:2617: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    ac_cv_func_vfork_works=yes
  else
--- 2670,2676 ----
    }
  }
  EOF
! if { (eval echo configure:2674: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    ac_cv_func_vfork_works=yes
  else
*************** fi
*** 2640,2658 ****
    fi
    for v in $vars; do
      echo $ac_n "checking for $v""... $ac_c" 1>&6
! echo "configure:2644: checking for $v" >&5
      if eval "test \"`echo '$''{'libiberty_cv_var_$v'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2649 "configure"
  #include "confdefs.h"
  int *p;
  int main() {
  extern int $v []; p = &$v;
  ; return 0; }
  EOF
! if { (eval echo configure:2656: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "libiberty_cv_var_$v=yes"
  else
--- 2697,2715 ----
    fi
    for v in $vars; do
      echo $ac_n "checking for $v""... $ac_c" 1>&6
! echo "configure:2701: checking for $v" >&5
      if eval "test \"`echo '$''{'libiberty_cv_var_$v'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2706 "configure"
  #include "confdefs.h"
  int *p;
  int main() {
  extern int $v []; p = &$v;
  ; return 0; }
  EOF
! if { (eval echo configure:2713: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "libiberty_cv_var_$v=yes"
  else
*************** EOF
*** 2678,2689 ****
    for ac_func in $checkfuncs
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:2682: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2687 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 2735,2746 ----
    for ac_func in $checkfuncs
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:2739: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2744 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 2706,2712 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:2710: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 2763,2769 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:2767: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** for ac_hdr in unistd.h
*** 2736,2752 ****
  do
  ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
! echo "configure:2740: checking for $ac_hdr" >&5
  if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2745 "configure"
  #include "confdefs.h"
  #include <$ac_hdr>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:2750: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
--- 2793,2809 ----
  do
  ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
! echo "configure:2797: checking for $ac_hdr" >&5
  if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2802 "configure"
  #include "confdefs.h"
  #include <$ac_hdr>
  EOF
  ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
! { (eval echo configure:2807: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
  if test -z "$ac_err"; then
    rm -rf conftest*
*************** done
*** 2775,2786 ****
  for ac_func in getpagesize
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:2779: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2784 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
--- 2832,2843 ----
  for ac_func in getpagesize
  do
  echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
! echo "configure:2836: checking for $ac_func" >&5
  if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 2841 "configure"
  #include "confdefs.h"
  /* System header to define __stub macros and hopefully few prototypes,
      which can conflict with char $ac_func(); below.  */
*************** $ac_func();
*** 2803,2809 ****
  
  ; return 0; }
  EOF
! if { (eval echo configure:2807: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
--- 2860,2866 ----
  
  ; return 0; }
  EOF
! if { (eval echo configure:2864: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    eval "ac_cv_func_$ac_func=yes"
  else
*************** fi
*** 2828,2834 ****
  done
  
  echo $ac_n "checking for working mmap""... $ac_c" 1>&6
! echo "configure:2832: checking for working mmap" >&5
  if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 2885,2891 ----
  done
  
  echo $ac_n "checking for working mmap""... $ac_c" 1>&6
! echo "configure:2889: checking for working mmap" >&5
  if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
*************** else
*** 2836,2842 ****
    ac_cv_func_mmap_fixed_mapped=no
  else
    cat > conftest.$ac_ext <<EOF
! #line 2840 "configure"
  #include "confdefs.h"
  
  /* Thanks to Mike Haertel and Jim Avera for this test.
--- 2893,2899 ----
    ac_cv_func_mmap_fixed_mapped=no
  else
    cat > conftest.$ac_ext <<EOF
! #line 2897 "configure"
  #include "confdefs.h"
  
  /* Thanks to Mike Haertel and Jim Avera for this test.
*************** main()
*** 2976,2982 ****
  }
  
  EOF
! if { (eval echo configure:2980: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    ac_cv_func_mmap_fixed_mapped=yes
  else
--- 3033,3039 ----
  }
  
  EOF
! if { (eval echo configure:3037: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    ac_cv_func_mmap_fixed_mapped=yes
  else
*************** fi
*** 3000,3006 ****
  
  
  echo $ac_n "checking for working strncmp""... $ac_c" 1>&6
! echo "configure:3004: checking for working strncmp" >&5
  if eval "test \"`echo '$''{'ac_cv_func_strncmp_works'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
--- 3057,3063 ----
  
  
  echo $ac_n "checking for working strncmp""... $ac_c" 1>&6
! echo "configure:3061: checking for working strncmp" >&5
  if eval "test \"`echo '$''{'ac_cv_func_strncmp_works'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
*************** else
*** 3008,3014 ****
    ac_cv_func_strncmp_works=no
  else
    cat > conftest.$ac_ext <<EOF
! #line 3012 "configure"
  #include "confdefs.h"
  
  /* Test by Jim Wilson and Kaveh Ghazi.
--- 3065,3071 ----
    ac_cv_func_strncmp_works=no
  else
    cat > conftest.$ac_ext <<EOF
! #line 3069 "configure"
  #include "confdefs.h"
  
  /* Test by Jim Wilson and Kaveh Ghazi.
*************** main ()
*** 3069,3075 ****
  }
  
  EOF
! if { (eval echo configure:3073: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    ac_cv_func_strncmp_works=yes
  else
--- 3126,3132 ----
  }
  
  EOF
! if { (eval echo configure:3130: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  then
    ac_cv_func_strncmp_works=yes
  else
Index: configure.in
===================================================================
RCS file: /cvsroot/gcc/gcc/libiberty/configure.in,v
retrieving revision 1.31.4.2
diff -c -3 -p -r1.31.4.2 configure.in
*** configure.in	22 Jan 2002 22:29:04 -0000	1.31.4.2
--- configure.in	18 Feb 2002 14:48:39 -0000
*************** funcs="$funcs strstr"
*** 112,117 ****
--- 112,119 ----
  funcs="$funcs strtod"
  funcs="$funcs strtol"
  funcs="$funcs strtoul"
+ funcs="$funcs strtoll"
+ funcs="$funcs strtoull"
  funcs="$funcs tmpnam"
  funcs="$funcs vasprintf"
  funcs="$funcs vfprintf"
*************** if test "x" = "y"; then
*** 132,138 ****
    AC_CHECK_FUNCS(getcwd getpagesize index insque mkstemps memchr memcmp memcpy)
    AC_CHECK_FUNCS(memmove memset putenv random rename rindex sigsetmask)
    AC_CHECK_FUNCS(strcasecmp setenv strchr strdup strncasecmp strrchr strstr)
!   AC_CHECK_FUNCS(strtod strtol strtoul tmpnam vasprintf vfprintf vprintf)
    AC_CHECK_FUNCS(vsprintf waitpid getrusage on_exit psignal strerror strsignal)
    AC_CHECK_FUNCS(sysconf times sbrk gettimeofday)
    AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])
--- 134,141 ----
    AC_CHECK_FUNCS(getcwd getpagesize index insque mkstemps memchr memcmp memcpy)
    AC_CHECK_FUNCS(memmove memset putenv random rename rindex sigsetmask)
    AC_CHECK_FUNCS(strcasecmp setenv strchr strdup strncasecmp strrchr strstr)
!   AC_CHECK_FUNCS(strtod strtol strtoul strtoll strtoull)
!   AC_CHECK_FUNCS(tmpnam vasprintf vfprintf vprintf)
    AC_CHECK_FUNCS(vsprintf waitpid getrusage on_exit psignal strerror strsignal)
    AC_CHECK_FUNCS(sysconf times sbrk gettimeofday)
    AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]