diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-02-07 19:30:22 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-02-07 19:30:22 +0000 |
commit | b6ffc70dcc58cbeae372c58675c14a9fe9dac3f9 (patch) | |
tree | 7576d2a592bedc4a7d18038e5cb749940a6d1960 | |
parent | d79ab787b8ef102e712f46a0c91457081bce964b (diff) | |
download | postgresql-b6ffc70dcc58cbeae372c58675c14a9fe9dac3f9.tar.gz postgresql-b6ffc70dcc58cbeae372c58675c14a9fe9dac3f9.zip |
Remove broken (and unnecessary) definition of DEF_PGPORT.
-rw-r--r-- | src/interfaces/libpq/win32.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/interfaces/libpq/win32.h b/src/interfaces/libpq/win32.h index 8079b4b8ed5..98d1a8345c2 100644 --- a/src/interfaces/libpq/win32.h +++ b/src/interfaces/libpq/win32.h @@ -6,8 +6,6 @@ #define strcasecmp(a,b) stricmp(a,b) #define strncasecmp(a,b,c) _strnicmp(a,b,c) -#define ACCEPT_TYPE_ARG3 int - /* * Some compat functions */ @@ -24,11 +22,8 @@ */ #define crypt(a,b) a - - /* * Parts of config.h that you get with autoconf on other systems */ - -#define DEF_PGPORT "5432" #define MAXIMUM_ALIGNOF 4 +#define ACCEPT_TYPE_ARG3 int |