summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2006-06-24 14:52:48 +0000
committerTom Lane2006-06-24 14:52:48 +0000
commit50aa69a82577da0f4dacdd26d0eafecad76218ca (patch)
treeb3fbe1e3b99de309dd281ba710ffac5743558eb4
parentc2f3c168fb4a9a8e5af97f642f2f9220966462e6 (diff)
Fix re-inclusion of port header file on Windows, per Magnus.
-rw-r--r--src/include/c.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/include/c.h b/src/include/c.h
index acf5738e4ae..d8ab39f491f 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/c.h,v 1.203 2006/06/07 22:24:45 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/c.h,v 1.204 2006/06/24 14:52:48 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -80,11 +80,8 @@
#endif
#if defined(WIN32) || defined(__CYGWIN__)
-/* We have to redefine some system functions after they are included above.
- *
- * use port/win32.h directly to work on both mingw and non-mingw.
- */
-#include "port/win32.h"
+/* We have to redefine some system functions after they are included above. */
+#include "pg_config_os.h"
#endif
/* Must be before gettext() games below */