More Win32 cleanups for Dave Page.
authorBruce Momjian <bruce@momjian.us>
Mon, 27 Sep 2004 22:11:23 +0000 (22:11 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 27 Sep 2004 22:11:23 +0000 (22:11 +0000)
src/include/c.h
src/port/exec.c

index cf97f34edda0898460ac573f701a439c61364e5f..fcdf6b404be782d991e0e29f73dc661680f9b599 100644 (file)
@@ -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.175 2004/09/27 04:18:28 neilc Exp $
+ * $PostgreSQL: pgsql/src/include/c.h,v 1.176 2004/09/27 22:11:22 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -80,7 +80,7 @@
 /* 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 */
+#include "port/win32.h"    /* We didn't run configure, but this is our port file */
 #endif
 #endif
 
index cd583d5234d0425800c1e18a5963fb53d2fb05a3..3958e78781aca1b83978b2062d78c567ad300a1a 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/port/exec.c,v 1.26 2004/09/27 22:06:41 momjian Exp $
+ *   $PostgreSQL: pgsql/src/port/exec.c,v 1.27 2004/09/27 22:11:23 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -24,8 +24,6 @@
 #include <sys/wait.h>
 #if !defined(_MSC_VER) && !defined(__BORLANDC__)
 #include <unistd.h>
-#else
-#include "port/win32.h"
 #endif
 
 #include "miscadmin.h"