1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Add MSVC support for utility commands and pg_dump.

Hiroshi Saito
This commit is contained in:
Bruce Momjian
2006-02-12 06:11:51 +00:00
parent 025ffe586f
commit 58634caa0f
11 changed files with 241 additions and 10 deletions

View File

@ -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.68 2006/02/09 18:28:29 tgl Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.69 2006/02/12 06:11:50 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -15,7 +15,10 @@
#include "pg_backup_db.h"
#include "dumputils.h"
#ifndef WIN32_CLIENT_ONLY
#include <unistd.h>
#endif
#include <ctype.h>
#ifdef HAVE_TERMIOS_H