From 7f6657912310444684f4c0c1cd2203ce28133fb6 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Thu, 24 Apr 2003 04:13:41 +0000 Subject: [PATCH] added check for tanf --- stepmania/configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stepmania/configure.ac b/stepmania/configure.ac index 1ffe284193..c8e3cd595b 100644 --- a/stepmania/configure.ac +++ b/stepmania/configure.ac @@ -23,7 +23,7 @@ AC_PROG_CXX AM_PATH_SDL # We could do this more cleanly with an AC_CHECK_FUNCS wrapper. -AC_CHECK_FUNCS([powf sqrtf sinf cosf acosf]) +AC_CHECK_FUNCS([powf sqrtf sinf tanf cosf acosf]) AH_VERBATIM([VA_ZZZ_NEEDED_FUNCS], [#if !defined(HAVE_POWF) #define NEED_POWF @@ -37,6 +37,9 @@ AH_VERBATIM([VA_ZZZ_NEEDED_FUNCS], #if !defined(HAVE_COSF) #define NEED_COSF #endif +#if !defined(HAVE_TANF) +#define NEED_TANF +#endif #if !defined(HAVE_ACOSF) #define NEED_ACOSF #endif