diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-01-06 21:41:45 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-01-06 21:41:45 +0000 |
commit | bbeeea1437e11c5bdeca0c612d2f821b9cd7d251 (patch) | |
tree | e23044f553bfc0de6a34aa3415148eb860b8e36c /src/port/path.c | |
parent | 41ca7563865d0117b4c9055ff96ef08a1a14075b (diff) | |
download | postgresql-bbeeea1437e11c5bdeca0c612d2f821b9cd7d251.tar.gz postgresql-bbeeea1437e11c5bdeca0c612d2f821b9cd7d251.zip |
Minor mop-up for Windows home-directory stuff, per Magnus.
Diffstat (limited to 'src/port/path.c')
-rw-r--r-- | src/port/path.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/port/path.c b/src/port/path.c index 2620f392635..ea45099dab6 100644 --- a/src/port/path.c +++ b/src/port/path.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/path.c,v 1.48 2005/01/06 18:29:11 tgl Exp $ + * $PostgreSQL: pgsql/src/port/path.c,v 1.49 2005/01/06 21:41:45 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -18,6 +18,7 @@ #include <ctype.h> #include <sys/stat.h> #ifdef WIN32 +#define _WIN32_IE 0x0400 #include <shlobj.h> #else #include <unistd.h> |