crossconfig.m4 (*-mingw32*): Define HAVE_STRTOF and HAVE_STRTOLD.

* crossconfig.m4 (*-mingw32*): Define HAVE_STRTOF and
	HAVE_STRTOLD.
	* configure: Regenerate.

From-SVN: r132859
This commit is contained in:
Joseph Myers 2008-03-04 12:44:31 +00:00 committed by Joseph Myers
parent 649af4e870
commit 676e18068f
3 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-03-04 Joseph Myers <joseph@codesourcery.com>
* crossconfig.m4 (*-mingw32*): Define HAVE_STRTOF and
HAVE_STRTOLD.
* configure: Regenerate.
2008-03-02 Hans-Peter Nilsson <hp@axis.com>
* testsuite/20_util/shared_ptr/assign/shared_ptr_neg.cc,

View File

@ -17976,7 +17976,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
# Fake what AC_TRY_COMPILE does. XXX Look at redoing this new-style.
cat > conftest.$ac_ext << EOF
#line 17851 "configure"
#line 17979 "configure"
int main()
{
// NB: _Atomic_word not necessarily int.
@ -110019,6 +110019,14 @@ fi
done
cat >>confdefs.h <<\_ACEOF
#define HAVE_STRTOF 1
_ACEOF
cat >>confdefs.h <<\_ACEOF
#define HAVE_STRTOLD 1
_ACEOF
# If we're not using GNU ld, then there's no point in even trying these
# tests. Check for that first. We should have already tested for gld

View File

@ -234,6 +234,8 @@ case "${host}" in
;;
*-mingw32*)
AC_CHECK_HEADERS([sys/types.h locale.h float.h])
AC_DEFINE(HAVE_STRTOF)
AC_DEFINE(HAVE_STRTOLD)
GLIBCXX_CHECK_LINKER_FEATURES
GLIBCXX_CHECK_COMPLEX_MATH_SUPPORT
;;