From 21b860c85759764bbdc392e04c182f9e3007f92f Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Tue, 8 Jul 2003 00:29:59 +0000 Subject: [PATCH] (AC_CHECK_FUNCS): Add sincos. --- configure.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index d1d0f656d..8db890f59 100644 --- a/configure.in +++ b/configure.in @@ -759,10 +759,12 @@ AC_REPLACE_FUNCS(inet_aton putenv strerror memmove mkstemp) AC_CHECK_HEADERS(floatingpoint.h ieeefp.h nan.h) -# asinh, acosh, atanh and trunc (all in -lm) are only C99 standard and older -# systems generally don't have them. +# Reasons for testing: +# asinh, acosh, atanh, trunc - C99 standard, generally not available on +# older systems +# sincos - GLIBC extension # -AC_CHECK_FUNCS(asinh acosh atanh copysign finite isinf isnan trunc) +AC_CHECK_FUNCS(asinh acosh atanh copysign finite isinf isnan sincos trunc) # When testing for the presence of alloca, we need to add alloca.o # explicitly to LIBOBJS to make sure that it is translated to