fix acosh and asinh on win64 with vs2013+

This commit is contained in:
Anatol Belski 2014-09-01 14:21:53 +02:00
parent d4a05d1990
commit 8a7d434025

View file

@ -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();
}