blob: 007fee40efe52f99e31ff208112e7554a5f64138 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef pg_config_h_win32__
#define pg_config_h_win32__
/*
* Parts of pg_config.h that you get with autoconf on other systems
*/
#define PG_VERSION "7.2"
#define PG_VERSION_STR "7.2 (win32)"
#define SYSCONFDIR ""
#define DEF_PGPORT 5432
#define DEF_PGPORT_STR "5432"
#define MAXIMUM_ALIGNOF 4
#define ACCEPT_TYPE_ARG3 int
#define MAXPGPATH 1024
#define BLCKSZ 8192
#define INDEX_MAX_KEYS 16
#define HAVE_ATEXIT
#define HAVE_MEMMOVE
#define HAVE_CXX_STRING_HEADER
#define HAVE_NAMESPACE_STD
/* use _snprintf instead of snprintf */
#define HAVE_SNPRINTF_DECL
#define snprintf _snprintf
#endif /* pg_config_h_win32__ */
|