diff options
author | Magnus Hagander | 2017-04-11 13:21:25 +0000 |
---|---|---|
committer | Magnus Hagander | 2017-04-11 13:22:21 +0000 |
commit | a4777f35565b80ae10605d6d417e5d173156f7da (patch) | |
tree | 91b191a40437fd4d98a163bb4ce0f6ad8a3c8aff /src/interfaces/libpq/fe-auth.c | |
parent | 6da56f3f84d430671d5edd8f9336bd744c089e31 (diff) |
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++.
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index 5fe7e565a01..74c8739633b 100644 --- a/src/interfaces/libpq/fe-auth.c +++ b/src/interfaces/libpq/fe-auth.c @@ -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 |