Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / include / port / cygwin.h
blob5524cb48cd07675de1e782321bb2735e6e788ece
1 /* $PostgreSQL$ */
3 #include <cygwin/version.h>
5 /*
6 * Check for b20.1 and disable AF_UNIX family socket support.
7 */
8 #if CYGWIN_VERSION_DLL_MAJOR < 1001
9 #undef HAVE_UNIX_SOCKETS
10 #endif
12 #if __GNUC__ && ! defined (__declspec)
13 #error You need egcs 1.1 or newer for compiling!
14 #endif
16 #ifdef BUILDING_DLL
17 #define PGDLLIMPORT __declspec (dllexport)
18 #else
19 #define PGDLLIMPORT __declspec (dllimport)
21 #endif