1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Use _timezone global on Cygwin instead of timezone.

This commit is contained in:
Bruce Momjian
2004-09-08 19:43:12 +00:00
parent cef30c650b
commit e97c817092
5 changed files with 21 additions and 17 deletions

4
configure vendored
View File

@ -10725,7 +10725,11 @@ int res;
int
main ()
{
#ifndef __CYGWIN__
res = timezone / 60;
#else
res = _timezone / 60;
#endif
;
return 0;
}