From 8864ee0b6b45d52d85f67e3e027e119e2700c3f4 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 7 Jun 1999 14:29:20 +0000 Subject: > Here is a small patch that should only affect win32 building > (native win32, not cygnus). > It does the following: > Patches two win32.mak files to DEFINE HAVE_VSNPRINTF and > HAVE_STRDUP. This is required to build at all. > Bumps the version number on libpq.dll from 6.4 to 6.5. > Required for install programs to work. > Adds defintions for BLCKSZ and MAXIMUM_ALIGN to "win32.h" in > the client-side libpiq directory. > > All these files are only used when building on native win32, > so it should be safe I think. > > Again, really sorry to throw this in so late, but I would > hate to do the same thing as with 6.4 (which required 6.4.1 > to at all compile on Win32). > > Thanks, > > //Magnus --- src/interfaces/libpq/win32.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/interfaces/libpq/win32.h') diff --git a/src/interfaces/libpq/win32.h b/src/interfaces/libpq/win32.h index 2565700c92..d3e9b34815 100644 --- a/src/interfaces/libpq/win32.h +++ b/src/interfaces/libpq/win32.h @@ -29,7 +29,7 @@ * Parts of config.h that you get with autoconf on other systems */ -/* - * Default port to connect to - */ #define DEF_PGPORT "5432" +#define BLCKSZ 8192 +#define MAXIMUM_ALIGNOF 4 + -- cgit v1.2.1