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
8e4f4078
Commit
8e4f4078
authored
Jan 10, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Un-break MSVC build, per Andrew Dunstan.
parent
ab3bb9cf
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
3 deletions
+17
-3
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/fe-connect.c
+8
-1
src/interfaces/libpq/win32.mak
src/interfaces/libpq/win32.mak
+1
-1
src/port/path.c
src/port/path.c
+8
-1
No files found.
src/interfaces/libpq/fe-connect.c
View file @
8e4f4078
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.
299 2005/01/06 21:41:44
tgl Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.
300 2005/01/10 00:19:43
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -35,7 +35,14 @@
#ifdef WIN32
#include "win32.h"
#ifdef _WIN32_IE
#undef _WIN32_IE
#endif
#define _WIN32_IE 0x0400
#ifdef near
#undef near
#endif
#define near
#include <shlobj.h>
#else
#include <sys/socket.h>
...
...
src/interfaces/libpq/win32.mak
View file @
8e4f4078
...
...
@@ -138,7 +138,7 @@ LIB32_OBJS= \
RSC_PROJ
=
/l 0x409 /fo
"
$(INTDIR)
\l
ibpq.res"
LINK32
=
link.exe
LINK32_FLAGS
=
kernel32.lib user32.lib advapi32.lib wsock32.lib
$(SSL_LIBS)
\
LINK32_FLAGS
=
kernel32.lib user32.lib advapi32.lib
shell32.lib
wsock32.lib
$(SSL_LIBS)
\
/nologo /subsystem:windows /dll
$(LOPT)
/incremental:no
\
/pdb:
"
$(OUTDIR)
\l
ibpqdll.pdb"
/machine:I386 /out:
"
$(OUTDIR)
\$
(OUTFILENAME).dll"
\
/implib:
"
$(OUTDIR)
\$
(OUTFILENAME)dll.lib"
/def:
$(OUTFILENAME)
dll.def
...
...
src/port/path.c
View file @
8e4f4078
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/path.c,v 1.
49 2005/01/06 21:41:45
tgl Exp $
* $PostgreSQL: pgsql/src/port/path.c,v 1.
50 2005/01/10 00:19:51
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -18,7 +18,14 @@
#include <ctype.h>
#include <sys/stat.h>
#ifdef WIN32
#ifdef _WIN32_IE
#undef _WIN32_IE
#endif
#define _WIN32_IE 0x0400
#ifdef near
#undef near
#endif
#define near
#include <shlobj.h>
#else
#include <unistd.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