diff options
author | Magnus Hagander <magnus@hagander.net> | 2017-04-11 15:14:26 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2017-04-11 15:22:21 +0200 |
commit | 6da56f3f84d430671d5edd8f9336bd744c089e31 (patch) | |
tree | b1fab20e1548779ada4c80e20946d021c04667ff /src/bin/psql/command.c | |
parent | 258cef12540fa1cb244881a0f019cefd698c809e (diff) |
Remove support for bcc and msvc standalone libpq builds
This removes the support for building just libpq using Borland C++ or
Visual C++. This has not worked properly for years, and given the number
of complaints it's clearly not worth the maintenance burden.
Building libpq using the standard MSVC build system is of course still
supported, along with mingw.
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 494f4685758..859ded71f61 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -8,10 +8,6 @@ #include "postgres_fe.h" #include "command.h" -#ifdef __BORLANDC__ /* needed for BCC */ -#undef mkdir -#endif - #include <ctype.h> #include <time.h> #include <pwd.h> |