Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/libc_compat/libc_compat.c')
-rw-r--r--intern/libc_compat/libc_compat.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/intern/libc_compat/libc_compat.c b/intern/libc_compat/libc_compat.c
index bc1a43c6fb1..8da3ca218af 100644
--- a/intern/libc_compat/libc_compat.c
+++ b/intern/libc_compat/libc_compat.c
@@ -21,7 +21,11 @@
* incompatible with the system libraries that Blender is built on. To solve
* this we add a few -ffast-math symbols that can be missing. */
-#include <math.h>
+#ifdef __linux__
+# include <features.h>
+# include <math.h>
+
+# if defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 31)
double __exp_finite(double x);
double __acos_finite(double x);
@@ -107,3 +111,6 @@ float __powf_finite(float x, float y)
{
return powf(x, y);
}
+
+# endif /* __GLIBC_PREREQ */
+#endif /* __linux__ */