Skip to content

Commit 50aa69a

Browse files
committed
Fix re-inclusion of port header file on Windows, per Magnus.
1 parent c2f3c16 commit 50aa69a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/include/c.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
1313
* Portions Copyright (c) 1994, Regents of the University of California
1414
*
15-
* $PostgreSQL: pgsql/src/include/c.h,v 1.203 2006/06/07 22:24:45 momjian Exp $
15+
* $PostgreSQL: pgsql/src/include/c.h,v 1.204 2006/06/24 14:52:48 tgl Exp $
1616
*
1717
*-------------------------------------------------------------------------
1818
*/
@@ -80,11 +80,8 @@
8080
#endif
8181

8282
#if defined(WIN32) || defined(__CYGWIN__)
83-
/* We have to redefine some system functions after they are included above.
84-
*
85-
* use port/win32.h directly to work on both mingw and non-mingw.
86-
*/
87-
#include "port/win32.h"
83+
/* We have to redefine some system functions after they are included above. */
84+
#include "pg_config_os.h"
8885
#endif
8986

9087
/* Must be before gettext() games below */

0 commit comments

Comments
 (0)