pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2015-07-23
2015-07-23 20:20:28 by 0
2cb289605b3b5508271f0f3f7e01583595d118e6 (
11
lines) (+
11
/-
0
)
[
Show
|
Annotate
]
Branch:
8.1
Switch from finite() to isfinite() since the former is flagged as
deprecated on OS X.
4717:
exit(_isnan(0.0)); ]) #############################################################################
+
# isfinite() is a macro on at least OS X and Linux which doesn't play well
+
# with AC_CHECK_FUNCS().
+
MY_CHECK_FUNCTION(isfinite,
+
[
+
#include <math.h>
+
], [
+
int t = isfinite(0.0);
+
exit(0);
+
])
+
#############################################################################
# FreeBSD 3.0 has broken F_SETFD when running with threads.