FluidSynth/fluidsynth
CMakeLists.txt
:796
unset ( HAVE_SINF CACHE )
unset ( HAVE_SINF CACHE )
CHECK_SYMBOL_EXISTS ( sinf "math.h" HAVE_SINF )
endif ( HAVE_SINF )
CHECK_CXX_SOURCE_COMPILES("
#include <math.h>
int main(){sinf(0); return 0;}
" HAVE_SINF
)
unset ( HAVE_SINF CACHE )
CHECK_SYMBOL_EXISTS ( sinf "math.h" HAVE_SINF )
endif ( HAVE_SINF )
check_symbol_exists (sinf "${_math_h}" HAVE_SINF)
CHECK_CXX_SOURCE_COMPILES("#include <math.h>
int main() {sinf(0); return 1;}" HAVE_SINF)