aboutsummaryrefslogtreecommitdiff
path: root/src/include/port/cygwin.h
blob: 5c149470c68096c471326c455797f0dc6e250220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* src/include/port/cygwin.h */

#include <cygwin/version.h>

/*
 * Check for b20.1 and disable AF_UNIX family socket support.
 */
#if CYGWIN_VERSION_DLL_MAJOR < 1001
#undef HAVE_UNIX_SOCKETS
#endif

#ifdef BUILDING_DLL
#define PGDLLIMPORT __declspec (dllexport)
#else
#define PGDLLIMPORT __declspec (dllimport)
#endif

#define PGDLLEXPORT