Skip to content

Commit 4845c3f

Browse files
committed
Remove configure checks for asinh, acosh, atanh, log1p, hypot
1 parent 039d678 commit 4845c3f

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

ext/standard/config.m4

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -303,12 +303,6 @@ if test "$ac_cv_attribute_aligned" = "yes"; then
303303
AC_DEFINE([HAVE_ATTRIBUTE_ALIGNED], 1, [whether the compiler supports __attribute__ ((__aligned__))])
304304
fi
305305

306-
dnl
307-
dnl Check for available functions
308-
dnl
309-
dnl log2 could be used to improve the log function, however it requires C99. The
310-
dnl check for log2 should be turned on, as soon as we support C99.
311-
AC_CHECK_FUNCS(asinh acosh atanh log1p hypot)
312306
AC_FUNC_FNMATCH
313307

314308
dnl

win32/build/confutils.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2300,19 +2300,6 @@ function generate_config_h()
23002300
outfile.WriteLine("#define " + keys[i] + " " + pieces);
23012301
}
23022302

2303-
if (VS_TOOLSET) {
2304-
if (VCVERS >= 1800) {
2305-
outfile.WriteLine("");
2306-
outfile.WriteLine("#define HAVE_ACOSH 1");
2307-
outfile.WriteLine("#define HAVE_ASINH 1");
2308-
outfile.WriteLine("#define HAVE_ATANH 1");
2309-
}
2310-
if (VCVERS >= 1900) {
2311-
outfile.WriteLine("#define HAVE_LOG1P 1");
2312-
}
2313-
}
2314-
2315-
23162303
outfile.Close();
23172304
}
23182305

0 commit comments

Comments
 (0)