Checkpint disbale use of gettime() under _WIN32 or _WIN64

This commit is contained in:
Landon Curt Noll
2022-02-12 13:52:06 -08:00
parent 7f89af37f5
commit 561928a45c
2 changed files with 3 additions and 1 deletions

View File

@@ -31,6 +31,8 @@ The following are the changes from calc version 2.14.0.15 to date:
Fixed missing quotes in the PASSDOWN makefile variables. Fixed missing quotes in the PASSDOWN makefile variables.
Disable use of gettime() under _WIN32 or _WIN64.
The following are the changes from calc version 2.14.0.14 to 2.14.0.14: The following are the changes from calc version 2.14.0.14 to 2.14.0.14:

View File

@@ -49,7 +49,7 @@
int int
main(void) main(void)
{ {
#if defined(HAVE_NO_GETTIME) #if defined(HAVE_NO_GETTIME) || defined(_WIN32) || defined(_WIN64)
printf("#undef HAVE_GETTIME /* no */\n"); printf("#undef HAVE_GETTIME /* no */\n");