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
24262be5
Commit
24262be5
authored
Mar 02, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing checks for Borland C compiler.
L J Bayuk
parent
03e2a47e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
src/include/pgstat.h
src/include/pgstat.h
+2
-2
src/include/port/win32.h
src/include/port/win32.h
+2
-2
src/port/thread.c
src/port/thread.c
+2
-2
No files found.
src/include/pgstat.h
View file @
24262be5
...
...
@@ -5,7 +5,7 @@
*
* Copyright (c) 2001-2003, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/include/pgstat.h,v 1.1
8 2003/12/25 03:52:51
momjian Exp $
* $PostgreSQL: pgsql/src/include/pgstat.h,v 1.1
9 2004/03/02 18:35:58
momjian Exp $
* ----------
*/
#ifndef PGSTAT_H
...
...
@@ -271,7 +271,7 @@ typedef struct PgStat_MsgTabstat
* ----------
*/
#define PGSTAT_NUM_TABPURGE ((1000 - sizeof(PgStat_MsgHdr)) \
/ sizeof(
PgStat_TableEntry
))
/ sizeof(
Oid
))
/* ----------
* PgStat_MsgTabpurge Sent by the backend to tell the collector
...
...
src/include/port/win32.h
View file @
24262be5
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.
19 2004/02/23 20:48:03 tgl
Exp $ */
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.
20 2004/03/02 18:35:59 momjian
Exp $ */
/* undefine and redefine after #include */
#undef mkdir
...
...
@@ -27,7 +27,7 @@
#define DLLIMPORT __declspec (dllimport)
#endif
#elif defined(WIN32) &&
defined(_MSC_VER
)
/* not CYGWIN or MingW */
#elif defined(WIN32) &&
(defined(_MSC_VER) || defined(__BORLANDC__)
)
/* not CYGWIN or MingW */
#if defined(_DLL)
#define DLLIMPORT __declspec (dllexport)
...
...
src/port/thread.c
View file @
24262be5
...
...
@@ -7,7 +7,7 @@
*
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/port/thread.c,v 1.1
5 2004/02/11 21:44:06
momjian Exp $
* $PostgreSQL: pgsql/src/port/thread.c,v 1.1
6 2004/03/02 18:35:59
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -16,7 +16,7 @@
#include <sys/types.h>
#include <errno.h>
#if defined(WIN32) &&
defined(_MSC_VER
)
#if defined(WIN32) &&
(defined(_MSC_VER) || defined(__BORLANDC__)
)
#undef ERROR
#else
#include <pwd.h>
...
...
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