summaryrefslogtreecommitdiff
path: root/src/include/c.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-09-23 13:16:02 +0000
committerBruce Momjian <bruce@momjian.us>2004-09-23 13:16:02 +0000
commit31ae87c33296215681f4bd4e1db5ec9e591ab947 (patch)
tree7b62b95ff2ea369f7465e13a4801c6832e6f475b /src/include/c.h
parent505d9be3e66362ab52cadc5f9236a56cc4725ed0 (diff)
downloadpostgresql-31ae87c33296215681f4bd4e1db5ec9e591ab947.tar.gz
This patch attempts to note the use of the root.crt file in the server.
Given that PostgreSQL will output a message complaining about it's absence if you're using SSL mode, I feel it's important that it gets a mention in the documentation at some point. Dominic Mitchell
Diffstat (limited to 'src/include/c.h')
-rw-r--r--src/include/c.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/include/c.h b/src/include/c.h
index cfce57c070..0c9e88d184 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/c.h,v 1.172 2004/09/16 16:58:38 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/c.h,v 1.173 2004/09/23 13:16:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -75,10 +75,13 @@
#include <SupportDefs.h>
#endif
-#if (defined(WIN32) || defined(__CYGWIN__)) && \
- !defined(_MSC_VER) && !defined(__BORLANDC__)
+#if defined(WIN32) || defined(__CYGWIN__)
+#if !defined(_MSC_VER) && !defined(__BORLANDC__)
/* We have to redefine some system functions after they are included above */
#include "pg_config_os.h"
+#else
+#include <windows.h> /* We don't have a port file for MSC/BCC */
+#endif
#endif
/* Must be before gettext() games below */