Dimitry Markman <dmarkman@mathworks.com> writes:
> Im looking at config_default.pl file and I can see the line
> gss => undef, # --with-gssapi=<path>
> I was advised to use SSPI API that is built-in (windows) instead of MIT Kerberos
> So what should I set and where to ensure that result PostgreSQL build will support SSPI?
SSPI != GSS. SSPI support is always built in Windows builds, see
win32_port.h:
#define ENABLE_SSPI 1
(Perhaps not the best place for such a thing, but somebody put it there.)
regards, tom lane