diff options
author | Tom Lane | 1999-10-23 03:28:58 +0000 |
---|---|---|
committer | Tom Lane | 1999-10-23 03:28:58 +0000 |
commit | 2dd82a67e560ac7a6dc6b8373749e6e2bcd9641a (patch) | |
tree | 5a8056caf1c438863ebe3b4abc23c49cb084af63 /src | |
parent | ecd0bfa81a8290219f4973b8fd456a2ffeb11d40 (diff) |
Remove gratuitous redefinitions of BLCKSZ.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/win32.mak | 2 | ||||
-rw-r--r-- | src/interfaces/libpq/win32.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/psql/win32.mak b/src/bin/psql/win32.mak index 0ebc3e512c3..0b0228f3f62 100644 --- a/src/bin/psql/win32.mak +++ b/src/bin/psql/win32.mak @@ -28,7 +28,7 @@ CLEAN : CPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D\ "_MBCS" /Fp"$(INTDIR)\psql.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c \ - /I ..\..\include /I ..\..\interfaces\libpq /D "HAVE_STRDUP" /D "BLCKSZ=8192" + /I ..\..\include /I ..\..\interfaces\libpq /D "HAVE_STRDUP" !IFDEF MULTIBYTE !IFNDEF MBFLAGS diff --git a/src/interfaces/libpq/win32.h b/src/interfaces/libpq/win32.h index 303fbd91ca6..6988bcd98fe 100644 --- a/src/interfaces/libpq/win32.h +++ b/src/interfaces/libpq/win32.h @@ -27,6 +27,5 @@ */ #define DEF_PGPORT "5432" -#define BLCKSZ 8192 #define MAXIMUM_ALIGNOF 4 |