pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2015-07-23
2015-07-23 19:58:49 by 0
e0651e7375028d7f2edff087fae5ad4298f98c12 (
11
lines) (+
11
/-
0
)
[
Show
|
Annotate
]
Branch:
8.0
Switch from finite() to isfinite() since the former is flagged as
deprecated on OS X.
4719:
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.