mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
fix acosh and asinh on win64 with vs2013+
This commit is contained in:
parent
d4a05d1990
commit
8a7d434025
1 changed files with 7 additions and 0 deletions
|
@ -1887,6 +1887,13 @@ function generate_config_h()
|
|||
|
||||
outfile.WriteLine("#define " + keys[i] + " " + pieces);
|
||||
}
|
||||
|
||||
if (VCVERS >= 1800) {
|
||||
outfile.WriteLine("");
|
||||
outfile.WriteLine("#define HAVE_ACOSH 1");
|
||||
outfile.WriteLine("#define HAVE_ASINH 1");
|
||||
}
|
||||
|
||||
|
||||
outfile.Close();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue