diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-14 10:25:54 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-14 10:25:54 +0000 |
commit | f64b8403871fbb8a5cd475f58dd432a53549a60d (patch) | |
tree | 038ebc1218e286105fdba624a7a53cd7d26518a2 /src/backend/port/win32 | |
parent | 7ac541daf1b0bba6274f280eedba01166f97cbe8 (diff) | |
download | postgresql-f64b8403871fbb8a5cd475f58dd432a53549a60d.tar.gz postgresql-f64b8403871fbb8a5cd475f58dd432a53549a60d.zip |
Remove most compile-time options, add a few runtime options to make up for it.
In particular, no more compiled-in default for PGDATA or LIBDIR. Commands
that need them need either invocation options or environment variables.
PGPORT default is hardcoded as 5432, but overrideable with options or
environment variables.
Diffstat (limited to 'src/backend/port/win32')
-rw-r--r-- | src/backend/port/win32/nt.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/port/win32/nt.h b/src/backend/port/win32/nt.h index a879e37f166..6dc54ae651f 100644 --- a/src/backend/port/win32/nt.h +++ b/src/backend/port/win32/nt.h @@ -30,7 +30,6 @@ struct sembuf #define MAXHOSTNAMELEN 12 /* where is the official definition of this? */ #define MAXPATHLEN _MAX_PATH /* in winsock.h */ -#define POSTPORT "5432" /* NT has stricmp not strcasecmp. Which is ANSI? */ #define strcasecmp(a,b) _stricmp(a,b) @@ -46,5 +45,3 @@ struct sembuf #define GETNCNT 5 #define GETVAL 6 -#define POSTGRESDIR "d:\\pglite" -#define PGDATADIR "d:\\pglite\\data" |