diff options
| author | Bruce Momjian <bruce@momjian.us> | 2006-06-07 22:24:46 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2006-06-07 22:24:46 +0000 |
| commit | 399a36a75d2d06bfdb91402713d408271b4833ba (patch) | |
| tree | b8391f6bda4680d37ac430c3270c67bde979d842 /src/bin/pg_dump | |
| parent | 877e296306a2017a18fc7086e9742c8ee3e0a665 (diff) | |
| download | postgresql-399a36a75d2d06bfdb91402713d408271b4833ba.tar.gz | |
Prepare code to be built by MSVC:
o remove many WIN32_CLIENT_ONLY defines
o add WIN32_ONLY_COMPILER define
o add 3rd argument to open() for portability
o add include/port/win32_msvc directory for
system includes
Magnus Hagander
Diffstat (limited to 'src/bin/pg_dump')
| -rw-r--r-- | src/bin/pg_dump/pg_backup_archiver.c | 4 | ||||
| -rw-r--r-- | src/bin/pg_dump/pg_backup_db.c | 4 | ||||
| -rw-r--r-- | src/bin/pg_dump/pg_backup_null.c | 4 | ||||
| -rw-r--r-- | src/bin/pg_dump/pg_backup_tar.c | 5 | ||||
| -rw-r--r-- | src/bin/pg_dump/pg_dump.c | 4 | ||||
| -rw-r--r-- | src/bin/pg_dump/pg_dumpall.c | 5 | ||||
| -rw-r--r-- | src/bin/pg_dump/pg_restore.c | 4 |
7 files changed, 7 insertions, 23 deletions
diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index 904de34a7c..61e87ac28c 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -15,7 +15,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.131 2006/05/28 21:13:54 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.132 2006/06/07 22:24:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -28,9 +28,7 @@ #include <ctype.h> -#ifndef WIN32_CLIENT_ONLY #include <unistd.h> -#endif #ifdef WIN32 #include <io.h> diff --git a/src/bin/pg_dump/pg_backup_db.c b/src/bin/pg_dump/pg_backup_db.c index 77c4086d3d..19d0d5bb05 100644 --- a/src/bin/pg_dump/pg_backup_db.c +++ b/src/bin/pg_dump/pg_backup_db.c @@ -5,7 +5,7 @@ * Implements the basic DB functions used by the archiver. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.70 2006/03/03 23:38:29 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.71 2006/06/07 22:24:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,9 +15,7 @@ #include "pg_backup_db.h" #include "dumputils.h" -#ifndef WIN32_CLIENT_ONLY #include <unistd.h> -#endif #include <ctype.h> diff --git a/src/bin/pg_dump/pg_backup_null.c b/src/bin/pg_dump/pg_backup_null.c index 9dd373f252..deecf192b3 100644 --- a/src/bin/pg_dump/pg_backup_null.c +++ b/src/bin/pg_dump/pg_backup_null.c @@ -17,7 +17,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_null.c,v 1.17 2006/02/12 06:11:50 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_null.c,v 1.18 2006/06/07 22:24:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -25,9 +25,7 @@ #include "pg_backup.h" #include "pg_backup_archiver.h" -#ifndef WIN32_CLIENT_ONLY #include <unistd.h> /* for dup */ -#endif #include "libpq/libpq-fs.h" diff --git a/src/bin/pg_dump/pg_backup_tar.c b/src/bin/pg_dump/pg_backup_tar.c index bb490e2aef..5fa080b06a 100644 --- a/src/bin/pg_dump/pg_backup_tar.c +++ b/src/bin/pg_dump/pg_backup_tar.c @@ -16,7 +16,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_tar.c,v 1.51 2006/05/22 11:21:54 petere Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_tar.c,v 1.52 2006/06/07 22:24:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -27,10 +27,7 @@ #include <ctype.h> #include <limits.h> - -#ifndef WIN32_CLIENT_ONLY #include <unistd.h> -#endif static void _ArchiveEntry(ArchiveHandle *AH, TocEntry *te); static void _StartData(ArchiveHandle *AH, TocEntry *te); diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index daf7829b51..2f30b17428 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -12,7 +12,7 @@ * by PostgreSQL * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.436 2006/05/28 21:13:54 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.437 2006/06/07 22:24:45 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -24,9 +24,7 @@ */ #include "postgres.h" -#ifndef WIN32_CLIENT_ONLY #include <unistd.h> -#endif #include <ctype.h> #ifdef ENABLE_NLS diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index e57f9c5050..ecbd15f28c 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.78 2006/05/31 11:02:42 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.79 2006/06/07 22:24:45 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -14,10 +14,7 @@ #include "postgres_fe.h" #include <time.h> - -#ifndef WIN32_CLIENT_ONLY #include <unistd.h> -#endif #ifdef ENABLE_NLS #include <locale.h> diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c index f9799be68b..e34a475051 100644 --- a/src/bin/pg_dump/pg_restore.c +++ b/src/bin/pg_dump/pg_restore.c @@ -34,7 +34,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.77 2006/04/12 22:18:48 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.78 2006/06/07 22:24:45 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,9 +53,7 @@ #include <termios.h> #endif -#ifndef WIN32_CLIENT_ONLY #include <unistd.h> -#endif #include "getopt_long.h" |
