diff options
author | Chris Robinson <[email protected]> | 2018-08-29 03:51:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-08-29 03:53:09 -0700 |
commit | 21dc2c761d87592feb8b42a4556e2786f2e4581f (patch) | |
tree | dd451ac272dd3d0b669092f270c6b86b3e89fc0b /CMakeLists.txt | |
parent | 529f387695d10368aca3460baa428ee90eea8332 (diff) |
Check for and use copysignf
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a7d13777..16daa8d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -536,6 +536,7 @@ CHECK_SYMBOL_EXISTS(lrintf math.h HAVE_LRINTF) CHECK_SYMBOL_EXISTS(modff math.h HAVE_MODFF) CHECK_SYMBOL_EXISTS(log2f math.h HAVE_LOG2F) CHECK_SYMBOL_EXISTS(cbrtf math.h HAVE_CBRTF) +CHECK_SYMBOL_EXISTS(copysignf math.h HAVE_COPYSIGNF) IF(HAVE_FLOAT_H) CHECK_SYMBOL_EXISTS(_controlfp float.h HAVE__CONTROLFP) |