diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-11-24 01:55:26 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-11-24 01:55:26 +0000 |
commit | 0d072761d3d35a600721c3a3eddb8e276f81cf09 (patch) | |
tree | c673fb43f7a81d3708b1ebf1f65cd25ea6f10e3a | |
parent | 7a1b72f6ef9fc93f1c0d3f0f3ce83554e37f7f39 (diff) | |
download | postgresql-0d072761d3d35a600721c3a3eddb8e276f81cf09.tar.gz postgresql-0d072761d3d35a600721c3a3eddb8e276f81cf09.zip |
Borland BCC does not support SSPI, per cnliou9@fastmail.fm.
-rw-r--r-- | src/include/port/win32.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h index 10abc51ab32..e3aade316fd 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.80 2007/11/24 01:32:48 momjian Exp $ */ +/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.81 2007/11/24 01:55:26 momjian Exp $ */ #if defined(_MSC_VER) || defined(__BORLANDC__) #define WIN32_ONLY_COMPILER @@ -9,8 +9,9 @@ * Always build with SSPI support. Keep it as a #define in case * we want a switch to disable it sometime in the future. */ +#ifndef __BORLANDC__ #define ENABLE_SSPI 1 - +#endif /* undefine and redefine after #include */ #undef mkdir |