Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e97c8170
Commit
e97c8170
authored
Sep 08, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use _timezone global on Cygwin instead of timezone.
parent
cef30c65
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
17 deletions
+21
-17
config/c-library.m4
config/c-library.m4
+6
-2
configure
configure
+4
-0
src/include/port.h
src/include/port.h
+9
-1
src/interfaces/ecpg/pgtypeslib/dt.h
src/interfaces/ecpg/pgtypeslib/dt.h
+0
-8
src/timezone/pgtz.c
src/timezone/pgtz.c
+2
-6
No files found.
config/c-library.m4
View file @
e97c8170
# Macros that test various C library quirks
# $PostgreSQL: pgsql/config/c-library.m4,v 1.2
6 2004/06/07 22:39:44
momjian Exp $
# $PostgreSQL: pgsql/config/c-library.m4,v 1.2
7 2004/09/08 19:43:00
momjian Exp $
# PGAC_VAR_INT_TIMEZONE
...
...
@@ -10,7 +10,11 @@ AC_DEFUN([PGAC_VAR_INT_TIMEZONE],
[AC_CACHE_CHECK(for int timezone, pgac_cv_var_int_timezone,
[AC_TRY_LINK([#include <time.h>
int res;],
[res = timezone / 60;],
[#ifndef __CYGWIN__
res = timezone / 60;
#else
res = _timezone / 60;
#endif],
[pgac_cv_var_int_timezone=yes],
[pgac_cv_var_int_timezone=no])])
if test x"$pgac_cv_var_int_timezone" = xyes ; then
...
...
configure
View file @
e97c8170
...
...
@@ -10725,7 +10725,11 @@ int res;
int
main ()
{
#ifndef __CYGWIN__
res = timezone / 60;
#else
res = _timezone / 60;
#endif
;
return 0;
}
...
...
src/include/port.h
View file @
e97c8170
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/port.h,v 1.5
7 2004/08/29 21:08:48 tgl
Exp $
* $PostgreSQL: pgsql/src/include/port.h,v 1.5
8 2004/09/08 19:43:07 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -180,6 +180,14 @@ extern int win32_open(const char *, int,...);
#define pclose(a) _pclose(a)
#endif
/* Global variable holding time zone information. */
#if !defined(__CYGWIN__)
#define TIMEZONE_GLOBAL timezone
#else
#define TIMEZONE_GLOBAL _timezone
#define tzname _tzname
/* should be in time.h? */
#endif
extern
int
copydir
(
char
*
fromdir
,
char
*
todir
);
/* Missing rand functions */
...
...
src/interfaces/ecpg/pgtypeslib/dt.h
View file @
e97c8170
...
...
@@ -216,14 +216,6 @@ do { \
} while(0)
#endif
/* Global variable holding time zone information. */
#if !defined(__CYGWIN__) && !defined(WIN32)
#define TIMEZONE_GLOBAL timezone
#else
#define TIMEZONE_GLOBAL _timezone
#define tzname _tzname
/* should be in time.h? */
#endif
/*
* Date/time validation
* Include check for leap year.
...
...
src/timezone/pgtz.c
View file @
e97c8170
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.2
7 2004/09/02 01:15:06
momjian Exp $
* $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.2
8 2004/09/08 19:43:12
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -96,11 +96,7 @@ get_timezone_offset(struct tm * tm)
#if defined(HAVE_STRUCT_TM_TM_ZONE)
return
tm
->
tm_gmtoff
;
#elif defined(HAVE_INT_TIMEZONE)
#ifdef HAVE_UNDERSCORE_TIMEZONE
return
-
_timezone
;
#else
return
-
timezone
;
#endif
return
-
TIMEZONE_GLOBAL
;
#else
#error No way to determine TZ? Can this happen?
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment