mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
Remove symbol WIN32_ONLY_COMPILER
This used to mean "Visual C++ except in those parts where Borland C++ was supported where it meant one of those". Now that we don't support Borland C++ anymore, simplify by using _MSC_VER which is the normal way to detect Visual C++.
This commit is contained in:
@ -49,7 +49,7 @@
|
||||
* GSSAPI authentication system.
|
||||
*/
|
||||
|
||||
#if defined(WIN32) && !defined(WIN32_ONLY_COMPILER)
|
||||
#if defined(WIN32) && !defined(_MSC_VER)
|
||||
/*
|
||||
* MIT Kerberos GSSAPI DLL doesn't properly export the symbols for MingW
|
||||
* that contain the OIDs required. Redefine here, values copied
|
||||
|
Reference in New Issue
Block a user