diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure index 9b0dc313434..073e3c467fa 100755 --- a/configure +++ b/configure @@ -10725,7 +10725,11 @@ int res; int main () { +#ifndef __CYGWIN__ res = timezone / 60; +#else +res = _timezone / 60; +#endif ; return 0; } |