From: Taylor R Campbell Date: Mon, 1 Nov 2010 05:18:42 +0000 (+0000) Subject: Check for the C99 fenv operations in microcode/configure. X-Git-Tag: 20101212-Gtk~22 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=3321d5a6c5e05d141a8598eb9c850e3d555b3b37;p=mit-scheme.git Check for the C99 fenv operations in microcode/configure. --- diff --git a/src/microcode/configure.ac b/src/microcode/configure.ac index 9081ac32b..5badbcca8 100644 --- a/src/microcode/configure.ac +++ b/src/microcode/configure.ac @@ -667,8 +667,11 @@ AC_FUNC_VPRINTF AC_FUNC_WAIT3 AC_CHECK_FUNCS([ctermid]) AC_CHECK_FUNCS([dup2]) -AC_CHECK_FUNCS([fcntl fdatasync fegetround fesetround floor fpathconf frexp]) -AC_CHECK_FUNCS([fpgetround fpsetround fsync fsync_range ftruncate]) +AC_CHECK_FUNCS([fcntl fdatasync feclearexcept fedisableexcept feenableexcept]) +AC_CHECK_FUNCS([fegetenv fegetexcept fegetexceptflag fegetround feholdexcept]) +AC_CHECK_FUNCS([feraiseexcept fesetenv fesetexceptflag fesetround]) +AC_CHECK_FUNCS([fetestexcept feupdateenv floor fpathconf frexp fpgetround]) +AC_CHECK_FUNCS([fpsetround fsync fsync_range ftruncate]) AC_CHECK_FUNCS([getcwd gethostbyname gethostname getlogin getpagesize getpgrp]) AC_CHECK_FUNCS([getpt gettimeofday getwd grantpt]) AC_CHECK_FUNCS([kill])