2006-11-03 18:04:08 +00:00
|
|
|
#
|
2012-07-23 08:51:15 +00:00
|
|
|
# This function determins if the HUGE_VAL macro is compilable with the
|
2006-11-03 18:04:08 +00:00
|
|
|
# -pedantic switch or not. XCode < 2.4.1 doesn't get it right.
|
|
|
|
#
|
|
|
|
AC_DEFUN([AC_HUGE_VAL_CHECK],[
|
|
|
|
AC_CACHE_CHECK([for HUGE_VAL sanity], [ac_cv_huge_val_sanity],[
|
2006-11-03 19:49:16 +00:00
|
|
|
AC_LANG_PUSH([C++])
|
2010-03-02 05:06:54 +00:00
|
|
|
ac_save_CXXFLAGS=$CXXFLAGS
|
2012-04-02 06:54:01 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -pedantic"
|
2013-01-30 01:37:55 +00:00
|
|
|
AC_RUN_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]],
|
|
|
|
[[double x = HUGE_VAL; return x != x;]])],
|
|
|
|
[ac_cv_huge_val_sanity=yes],[ac_cv_huge_val_sanity=no],
|
|
|
|
[ac_cv_huge_val_sanity=yes])
|
2010-03-02 05:06:54 +00:00
|
|
|
CXXFLAGS=$ac_save_CXXFLAGS
|
2006-11-03 19:49:16 +00:00
|
|
|
AC_LANG_POP([C++])
|
2006-11-03 18:04:08 +00:00
|
|
|
])
|
|
|
|
AC_SUBST(HUGE_VAL_SANITY,$ac_cv_huge_val_sanity)
|
|
|
|
])
|