mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +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:
@ -40,7 +40,7 @@
|
||||
#define EAI_MEMORY (-10)
|
||||
#define EAI_SYSTEM (-11)
|
||||
#else /* WIN32 */
|
||||
#ifdef WIN32_ONLY_COMPILER
|
||||
#ifdef _MSC_VER
|
||||
#ifndef WSA_NOT_ENOUGH_MEMORY
|
||||
#define WSA_NOT_ENOUGH_MEMORY (WSAENOBUFS)
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user