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
970bb03c
Commit
970bb03c
authored
Jul 06, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Complete zic patch backout by removing NO_PGPORT workaround.
parent
261ffd03
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
src/include/port.h
src/include/port.h
+5
-5
src/timezone/Makefile
src/timezone/Makefile
+2
-2
No files found.
src/include/port.h
View file @
970bb03c
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/port.h,v 1.7
8 2005/07/05 17:24:30
momjian Exp $
* $PostgreSQL: pgsql/src/include/port.h,v 1.7
9 2005/07/06 21:40:09
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -108,7 +108,7 @@ extern int pg_strncasecmp(const char *s1, const char *s2, size_t n);
extern
unsigned
char
pg_toupper
(
unsigned
char
ch
);
extern
unsigned
char
pg_tolower
(
unsigned
char
ch
);
#if
defined(USE_SNPRINTF) && !defined(NO_PGPORT)
#if
def USE_SNPRINTF
extern
int
pg_vsnprintf
(
char
*
str
,
size_t
count
,
const
char
*
fmt
,
va_list
args
);
extern
int
pg_snprintf
(
char
*
str
,
size_t
count
,
const
char
*
fmt
,...)
/* This extension allows gcc to check the format string */
...
...
@@ -178,7 +178,7 @@ extern int pclose_check(FILE *stream);
#define TZNAME_GLOBAL _tzname
#endif
#if
(defined(WIN32) || defined(__CYGWIN__)) && !defined(NO_PGPORT
)
#if
defined(WIN32) || defined(__CYGWIN__
)
/*
* Win32 doesn't have reliable rename/unlink during concurrent access,
* and we need special code to do symlinks.
...
...
@@ -204,11 +204,11 @@ extern int pgsymlink(const char *oldpath, const char *newpath);
#define symlink(oldpath, newpath) pgsymlink(oldpath, newpath)
#endif
#endif
/* defined(WIN32) || defined(__CYGWIN__)
&& !defined(NO_PGPORT)
*/
#endif
/* defined(WIN32) || defined(__CYGWIN__) */
extern
bool
rmtree
(
char
*
path
,
bool
rmtopdir
);
#if defined(WIN32) && !defined(__CYGWIN__)
&& !defined(NO_PGPORT)
#if defined(WIN32) && !defined(__CYGWIN__)
/* open() replacement to allow delete of held files and passing
* of special options. */
...
...
src/timezone/Makefile
View file @
970bb03c
...
...
@@ -4,7 +4,7 @@
# Makefile for the timezone library
# IDENTIFICATION
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.2
1 2005/07/06 21:04:14
momjian Exp $
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.2
2 2005/07/06 21:40:09
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,7 @@ subdir = src/timezone
top_builddir
=
../..
include
$(top_builddir)/src/Makefile.global
override CPPFLAGS
:
= $(CPPFLAGS)
-I$(srcdir) -DNO_PGPORT
override CPPFLAGS
:
= $(CPPFLAGS)
# files to build into backend
OBJS
=
localtime.o strftime.o pgtz.o
...
...
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