Commit ee9007a2 authored by Bruce Momjian's avatar Bruce Momjian

Allow libpq to build on MS Visual Studio .NET 2003 on Windows XP.

parent eebece7d
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.40 2004/11/17 00:14:14 tgl Exp $ */ /* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.41 2004/12/01 23:42:26 momjian Exp $ */
/* undefine and redefine after #include */ /* undefine and redefine after #include */
#undef mkdir #undef mkdir
...@@ -210,6 +210,10 @@ typedef int gid_t; ...@@ -210,6 +210,10 @@ typedef int gid_t;
#endif #endif
typedef long key_t; typedef long key_t;
#ifdef WIN32_CLIENT_ONLY
typedef int pid_t;
#endif
/* /*
* Supplement to <sys/stat.h>. * Supplement to <sys/stat.h>.
*/ */
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.289 2004/10/30 23:11:26 tgl Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.290 2004/12/01 23:42:26 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -20,7 +20,9 @@ ...@@ -20,7 +20,9 @@
#include <fcntl.h> #include <fcntl.h>
#include <ctype.h> #include <ctype.h>
#include <time.h> #include <time.h>
#ifndef WIN32_CLIENT_ONLY
#include <unistd.h> #include <unistd.h>
#endif
#ifndef HAVE_STRDUP #ifndef HAVE_STRDUP
#include "strdup.h" #include "strdup.h"
...@@ -35,7 +37,6 @@ ...@@ -35,7 +37,6 @@
#include "win32.h" #include "win32.h"
#else #else
#include <sys/socket.h> #include <sys/socket.h>
#include <unistd.h>
#include <netdb.h> #include <netdb.h>
#include <netinet/in.h> #include <netinet/in.h>
#ifdef HAVE_NETINET_TCP_H #ifdef HAVE_NETINET_TCP_H
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment