Skip to content

Commit

Permalink
Use AC_CHECK_MATH_FUNC() for all math functions
Browse files Browse the repository at this point in the history
  • Loading branch information
nicowilliams committed May 21, 2017
1 parent 10d6605 commit b0d6d28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ AC_CHECK_MATH_FUNC(log1p,[.5])
AC_CHECK_MATH_FUNC(log2, [.5])
AC_CHECK_MATH_FUNC(log, [.5])
AC_CHECK_MATH_FUNC(logb,[.5])
AC_FIND_FUNC([modf], [m c], [#include <math.h>], [0, 0])
AC_FIND_FUNC([lgamma_r], [m c], [#include <math.h>], [0, 0])
AC_CHECK_MATH_FUNC([modf], [m c], [#include <math.h>], [0, 0])
AC_CHECK_MATH_FUNC([lgamma_r], [m c], [#include <math.h>], [0, 0])
AC_CHECK_MATH_FUNC(nearbyint,[.5])
AC_CHECK_MATH_FUNC(nextafter,[.5,1.0])
AC_CHECK_MATH_FUNC(nexttoward,[.5,1.0])
Expand Down

0 comments on commit b0d6d28

Please # to comment.