acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1): Include ieeefp.h for fpclass on UnixWare{2,7}.
2001-02-15 Rodney Brown <RodneyBrown@mynd.com> * acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1): Include ieeefp.h for fpclass on UnixWare{2,7}. * aclocal.m4: Regenerate. * configure: Regenerate. * mkcheck.in (size_command): Do without GNU-grep when using size from binutils. From-SVN: r39733
This commit is contained in:
parent
94083e5ddb
commit
01a49191c1
@ -1,3 +1,12 @@
|
||||
2001-02-15 Rodney Brown <RodneyBrown@mynd.com>
|
||||
|
||||
* acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1):
|
||||
Include ieeefp.h for fpclass on UnixWare{2,7}.
|
||||
* aclocal.m4: Regenerate.
|
||||
* configure: Regenerate.
|
||||
* mkcheck.in (size_command): Do without GNU-grep when using
|
||||
size from binutils.
|
||||
|
||||
2001-02-15 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
Remove old ABI support from libsupc++.
|
||||
|
@ -325,7 +325,11 @@ AC_DEFUN(GLIBCPP_CHECK_MATH_DECL_1, [
|
||||
AC_CACHE_VAL(glibcpp_cv_func_$1_use, [
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
AC_TRY_COMPILE([#include <math.h>],
|
||||
AC_TRY_COMPILE([#include <math.h>
|
||||
#ifdef HAVE_IEEEFP_H
|
||||
#include <ieeefp.h>
|
||||
#endif
|
||||
],
|
||||
[ $1(0);],
|
||||
[glibcpp_cv_func_$1_use=yes], [glibcpp_cv_func_$1_use=no])
|
||||
AC_LANG_RESTORE
|
||||
|
6
libstdc++-v3/aclocal.m4
vendored
6
libstdc++-v3/aclocal.m4
vendored
@ -337,7 +337,11 @@ AC_DEFUN(GLIBCPP_CHECK_MATH_DECL_1, [
|
||||
AC_CACHE_VAL(glibcpp_cv_func_$1_use, [
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
AC_TRY_COMPILE([#include <math.h>],
|
||||
AC_TRY_COMPILE([#include <math.h>
|
||||
#ifdef HAVE_IEEEFP_H
|
||||
#include <ieeefp.h>
|
||||
#endif
|
||||
],
|
||||
[ $1(0);],
|
||||
[glibcpp_cv_func_$1_use=yes], [glibcpp_cv_func_$1_use=no])
|
||||
AC_LANG_RESTORE
|
||||
|
1272
libstdc++-v3/configure
vendored
1272
libstdc++-v3/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -195,7 +195,7 @@ setup_size_command()
|
||||
{
|
||||
case $1 in
|
||||
TEXT) TEXT=$(size -A $EXENAME | grep ^.text | awk '{print $2}') ;;
|
||||
DATA) DATA=$(size -A $EXENAME | grep -w ^.data | awk '{print $2}') ;;
|
||||
DATA) DATA=$(size -A $EXENAME | awk '/^\.data[ ]/{print $2}') ;;
|
||||
SIZE) SIZE=$(size -A $EXENAME | grep otal | awk '{print $2}') ;;
|
||||
esac
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user