From 5db5a8cc34a12a9eb742d4a1e1104aa42823d6b6 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 24 Nov 2007 01:55:26 +0000 Subject: [PATCH] Borland BCC does not support SSPI, per cnliou9@fastmail.fm. --- src/include/port/win32.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/port/win32.h b/src/include/port/win32.h index c2682613f8..d232b8c376 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -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 -- 2.39.5