summaryrefslogtreecommitdiff
path: root/src/bin/psql/command.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-04-29 13:42:21 +0000
committerBruce Momjian <bruce@momjian.us>2005-04-29 13:42:21 +0000
commit7cebfdf2114ddefb949436c14ed7d0b31fb97442 (patch)
treece8c661d8cdd5cfafba1c9b75c46aa217e549d11 /src/bin/psql/command.c
parent18b5ef5a76f39436782d3fc0c76e3712027cc235 (diff)
Backpatch BCC compile changes to 8.0.X for psql.
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r--src/bin/psql/command.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 351813feb8e..7523f67eb63 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -3,11 +3,15 @@
*
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.142 2005/03/16 21:27:23 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.143 2005/04/29 13:42:20 momjian Exp $
*/
#include "postgres_fe.h"
#include "command.h"
+#ifdef WIN32_CLIENT_ONLY /* needed for BCC */
+#undef mkdir
+#endif
+
#include <errno.h>
#include <ctype.h>
#ifdef HAVE_PWD_H