summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2019-12-04 14:57:11 +0100
committerGeorge Peter Banyard <girgias@php.net>2019-12-04 14:57:11 +0100
commit4845c3f11dce1859715287cd000fd6ff47b88aaf (patch)
treeee6e0ac08b35a1bfb7e3254ed69f11362bdc1019 /win32
parent039d678fdfa5f0c9d8b70ec644b22a66f57aea74 (diff)
downloadphp-git-4845c3f11dce1859715287cd000fd6ff47b88aaf.tar.gz
Remove configure checks for asinh, acosh, atanh, log1p, hypot
Diffstat (limited to 'win32')
-rw-r--r--win32/build/confutils.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/win32/build/confutils.js b/win32/build/confutils.js
index e5c0ccd2d4..68bfcb431c 100644
--- a/win32/build/confutils.js
+++ b/win32/build/confutils.js
@@ -2300,19 +2300,6 @@ function generate_config_h()
outfile.WriteLine("#define " + keys[i] + " " + pieces);
}
- if (VS_TOOLSET) {
- if (VCVERS >= 1800) {
- outfile.WriteLine("");
- outfile.WriteLine("#define HAVE_ACOSH 1");
- outfile.WriteLine("#define HAVE_ASINH 1");
- outfile.WriteLine("#define HAVE_ATANH 1");
- }
- if (VCVERS >= 1900) {
- outfile.WriteLine("#define HAVE_LOG1P 1");
- }
- }
-
-
outfile.Close();
}