|
1 |
| -/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.82 2007/12/11 14:34:43 mha Exp $ */ |
| 1 | +/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.83 2008/01/09 09:16:43 mha Exp $ */ |
2 | 2 |
|
3 | 3 | #if defined(_MSC_VER)|| defined(__BORLANDC__)
|
4 | 4 | #defineWIN32_ONLY_COMPILER
|
|
50 | 50 | * On Mingw/Msys, that should always be the case, but MSVC++ defaults
|
51 | 51 | * to 64 bits. We set that for our own build in the project files
|
52 | 52 | */
|
53 |
| -#ifdefWIN32_ONLY_COMPILER |
| 53 | +#if defined(WIN32_ONLY_COMPILER)&& !defined(FRONTEND) |
54 | 54 | #ifndef_USE_32BIT_TIME_T
|
55 | 55 | #error "Postgres uses 32 bit time_t - add #define _USE_32BIT_TIME_T on Windows"
|
56 | 56 | #endif
|
|