diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-08-04 18:58:33 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-08-04 18:58:33 +0000 |
commit | bf7b205e161a8f11bb3cea39a03d63f79decfc20 (patch) | |
tree | dcf330c731b922948a4d464527649814a776ea24 | |
parent | c8961bf1ce0b51019db31c5572dac18b664e02f1 (diff) | |
download | postgresql-bf7b205e161a8f11bb3cea39a03d63f79decfc20.tar.gz postgresql-bf7b205e161a8f11bb3cea39a03d63f79decfc20.zip |
#ifdef fix for MSVC builds of libpq.
Hiroshi Saito
-rw-r--r-- | src/interfaces/libpq/libpq-int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/libpq-int.h b/src/interfaces/libpq/libpq-int.h index e72d4d911cf..2c5f3f288bb 100644 --- a/src/interfaces/libpq/libpq-int.h +++ b/src/interfaces/libpq/libpq-int.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-int.h,v 1.113 2006/05/21 20:19:23 tgl Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-int.h,v 1.114 2006/08/04 18:58:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -38,7 +38,7 @@ #include <signal.h> #endif -#ifdef WIN32_CLIENT_ONLY +#ifdef WIN32_ONLY_COMPILER typedef int ssize_t; /* ssize_t doesn't exist in VC (at least not * VC6) */ #endif |