mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
Checkpint disbale use of gettime() under _WIN32 or _WIN64
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -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.
|
||||
|
||||
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:
|
||||
|
||||
|
@@ -49,7 +49,7 @@
|
||||
int
|
||||
main(void)
|
||||
{
|
||||
#if defined(HAVE_NO_GETTIME)
|
||||
#if defined(HAVE_NO_GETTIME) || defined(_WIN32) || defined(_WIN64)
|
||||
|
||||
printf("#undef HAVE_GETTIME /* no */\n");
|
||||
|
||||
|
Reference in New Issue
Block a user