|
12 | 12 | * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
|
13 | 13 | * Portions Copyright (c) 1994, Regents of the University of California
|
14 | 14 | *
|
15 |
| - * $PostgreSQL: pgsql/src/include/c.h,v 1.169 2004/09/09 00:59:41 momjian Exp $ |
| 15 | + * $PostgreSQL: pgsql/src/include/c.h,v 1.170 2004/09/10 15:20:19 momjian Exp $ |
16 | 16 | *
|
17 | 17 | *-------------------------------------------------------------------------
|
18 | 18 | */
|
|
52 | 52 |
|
53 | 53 | #include"pg_config.h"
|
54 | 54 | #include"pg_config_manual.h"/* must be after pg_config.h */
|
55 |
| -#ifndefWIN32 |
| 55 | +#if !defined(WIN32)|| !defined(__CYGWIN__) |
56 | 56 | #include"pg_config_os.h"/* must be before any system header files */
|
57 | 57 | #endif
|
58 | 58 | #include"postgres_ext.h"
|
|
75 | 75 | #include<SupportDefs.h>
|
76 | 76 | #endif
|
77 | 77 |
|
78 |
| -#if defined(WIN32)&& !defined(_MSC_VER)&& !defined(__BORLANDC__) |
| 78 | +#if (defined(WIN32)|| defined(__CYGWIN__))&& \ |
| 79 | +!defined(_MSC_VER)&& !defined(__BORLANDC__) |
79 | 80 | /* We have to redefine some system functions after they are included above */
|
80 | 81 | #include"pg_config_os.h"
|
81 | 82 | #endif
|
|