]> granicus.if.org Git - postgresql/blob - src/include/pg_config.h.in
Enable compiling with the mingw-w64 32 bit compiler.
[postgresql] / src / include / pg_config.h.in
1 /* src/include/pg_config.h.in.  Generated from configure.in by autoheader.  */
2
3 /* Define to the type of arg 1 of 'accept' */
4 #undef ACCEPT_TYPE_ARG1
5
6 /* Define to the type of arg 2 of 'accept' */
7 #undef ACCEPT_TYPE_ARG2
8
9 /* Define to the type of arg 3 of 'accept' */
10 #undef ACCEPT_TYPE_ARG3
11
12 /* Define to the return type of 'accept' */
13 #undef ACCEPT_TYPE_RETURN
14
15 /* Define if building universal (internal helper macro) */
16 #undef AC_APPLE_UNIVERSAL_BUILD
17
18 /* The normal alignment of `double', in bytes. */
19 #undef ALIGNOF_DOUBLE
20
21 /* The normal alignment of `int', in bytes. */
22 #undef ALIGNOF_INT
23
24 /* The normal alignment of `long', in bytes. */
25 #undef ALIGNOF_LONG
26
27 /* The normal alignment of `long long int', in bytes. */
28 #undef ALIGNOF_LONG_LONG_INT
29
30 /* The normal alignment of `short', in bytes. */
31 #undef ALIGNOF_SHORT
32
33 /* Size of a disk block --- this also limits the size of a tuple. You can set
34    it bigger if you need bigger tuples (although TOAST should reduce the need
35    to have large tuples, since fields can be spread across multiple tuples).
36    BLCKSZ must be a power of 2. The maximum possible value of BLCKSZ is
37    currently 2^15 (32768). This is determined by the 15-bit widths of the
38    lp_off and lp_len fields in ItemIdData (see include/storage/itemid.h).
39    Changing BLCKSZ requires an initdb. */
40 #undef BLCKSZ
41
42 /* Define to the default TCP port number on which the server listens and to
43    which clients will try to connect. This can be overridden at run-time, but
44    it's convenient if your clients have the right default compiled in.
45    (--with-pgport=PORTNUM) */
46 #undef DEF_PGPORT
47
48 /* Define to the default TCP port number as a string constant. */
49 #undef DEF_PGPORT_STR
50
51 /* Define to 1 to enable DTrace support. (--enable-dtrace) */
52 #undef ENABLE_DTRACE
53
54 /* Define to build with GSSAPI support. (--with-gssapi) */
55 #undef ENABLE_GSS
56
57 /* Define to 1 if you want National Language Support. (--enable-nls) */
58 #undef ENABLE_NLS
59
60 /* Define to 1 to build client libraries as thread-safe code.
61    (--enable-thread-safety) */
62 #undef ENABLE_THREAD_SAFETY
63
64 /* Define to nothing if C supports flexible array members, and to 1 if it does
65    not. That way, with a declaration like `struct s { int n; double
66    d[FLEXIBLE_ARRAY_MEMBER]; };', the struct hack can be used with pre-C99
67    compilers. When computing the size of such an object, don't use 'sizeof
68    (struct s)' as it overestimates the size. Use 'offsetof (struct s, d)'
69    instead. Don't use 'offsetof (struct s, d[0])', as this doesn't work with
70    MSVC and with C++ compilers. */
71 #undef FLEXIBLE_ARRAY_MEMBER
72
73 /* float4 values are passed by value if 'true', by reference if 'false' */
74 #undef FLOAT4PASSBYVAL
75
76 /* float8, int8, and related values are passed by value if 'true', by
77    reference if 'false' */
78 #undef FLOAT8PASSBYVAL
79
80 /* Define to 1 if getpwuid_r() takes a 5th argument. */
81 #undef GETPWUID_R_5ARG
82
83 /* Define to 1 if gettimeofday() takes only 1 argument. */
84 #undef GETTIMEOFDAY_1ARG
85
86 #ifdef GETTIMEOFDAY_1ARG
87 # define gettimeofday(a,b) gettimeofday(a)
88 #endif
89
90 /* Define to 1 if you have the `append_history' function. */
91 #undef HAVE_APPEND_HISTORY
92
93 /* Define to 1 if you have the `atexit' function. */
94 #undef HAVE_ATEXIT
95
96 /* Define to 1 if you have the `cbrt' function. */
97 #undef HAVE_CBRT
98
99 /* Define to 1 if you have the `class' function. */
100 #undef HAVE_CLASS
101
102 /* Define to 1 if you have the <crtdefs.h> header file. */
103 #undef HAVE_CRTDEFS_H
104
105 /* Define to 1 if you have the `crypt' function. */
106 #undef HAVE_CRYPT
107
108 /* Define to 1 if you have the <crypt.h> header file. */
109 #undef HAVE_CRYPT_H
110
111 /* Define to 1 if you have the declaration of `fdatasync', and to 0 if you
112    don't. */
113 #undef HAVE_DECL_FDATASYNC
114
115 /* Define to 1 if you have the declaration of `F_FULLFSYNC', and to 0 if you
116    don't. */
117 #undef HAVE_DECL_F_FULLFSYNC
118
119 /* Define to 1 if you have the declaration of `posix_fadvise', and to 0 if you
120    don't. */
121 #undef HAVE_DECL_POSIX_FADVISE
122
123 /* Define to 1 if you have the declaration of `snprintf', and to 0 if you
124    don't. */
125 #undef HAVE_DECL_SNPRINTF
126
127 /* Define to 1 if you have the declaration of `strlcat', and to 0 if you
128    don't. */
129 #undef HAVE_DECL_STRLCAT
130
131 /* Define to 1 if you have the declaration of `strlcpy', and to 0 if you
132    don't. */
133 #undef HAVE_DECL_STRLCPY
134
135 /* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you
136    don't. */
137 #undef HAVE_DECL_SYS_SIGLIST
138
139 /* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
140    don't. */
141 #undef HAVE_DECL_VSNPRINTF
142
143 /* Define to 1 if you have the <dld.h> header file. */
144 #undef HAVE_DLD_H
145
146 /* Define to 1 if you have the `dlopen' function. */
147 #undef HAVE_DLOPEN
148
149 /* Define to 1 if you have the <editline/history.h> header file. */
150 #undef HAVE_EDITLINE_HISTORY_H
151
152 /* Define to 1 if you have the <editline/readline.h> header file. */
153 #undef HAVE_EDITLINE_READLINE_H
154
155 /* Define to 1 if you have the `ERR_set_mark' function. */
156 #undef HAVE_ERR_SET_MARK
157
158 /* Define to 1 if you have the `fcvt' function. */
159 #undef HAVE_FCVT
160
161 /* Define to 1 if you have the `fdatasync' function. */
162 #undef HAVE_FDATASYNC
163
164 /* Define to 1 if you have the `fpclass' function. */
165 #undef HAVE_FPCLASS
166
167 /* Define to 1 if you have the `fp_class' function. */
168 #undef HAVE_FP_CLASS
169
170 /* Define to 1 if you have the `fp_class_d' function. */
171 #undef HAVE_FP_CLASS_D
172
173 /* Define to 1 if you have the <fp_class.h> header file. */
174 #undef HAVE_FP_CLASS_H
175
176 /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
177 #undef HAVE_FSEEKO
178
179 /* Define to 1 if your compiler understands __func__. */
180 #undef HAVE_FUNCNAME__FUNC
181
182 /* Define to 1 if your compiler understands __FUNCTION__. */
183 #undef HAVE_FUNCNAME__FUNCTION
184
185 /* Define to 1 if you have the `getaddrinfo' function. */
186 #undef HAVE_GETADDRINFO
187
188 /* Define to 1 if you have the `gethostbyname_r' function. */
189 #undef HAVE_GETHOSTBYNAME_R
190
191 /* Define to 1 if you have the `getifaddrs' function. */
192 #undef HAVE_GETIFADDRS
193
194 /* Define to 1 if you have the `getopt' function. */
195 #undef HAVE_GETOPT
196
197 /* Define to 1 if you have the <getopt.h> header file. */
198 #undef HAVE_GETOPT_H
199
200 /* Define to 1 if you have the `getopt_long' function. */
201 #undef HAVE_GETOPT_LONG
202
203 /* Define to 1 if you have the `getpeereid' function. */
204 #undef HAVE_GETPEEREID
205
206 /* Define to 1 if you have the `getpeerucred' function. */
207 #undef HAVE_GETPEERUCRED
208
209 /* Define to 1 if you have the `getpwuid_r' function. */
210 #undef HAVE_GETPWUID_R
211
212 /* Define to 1 if you have the `getrlimit' function. */
213 #undef HAVE_GETRLIMIT
214
215 /* Define to 1 if you have the `getrusage' function. */
216 #undef HAVE_GETRUSAGE
217
218 /* Define to 1 if you have the `gettimeofday' function. */
219 #undef HAVE_GETTIMEOFDAY
220
221 /* Define to 1 if you have the <gssapi/gssapi.h> header file. */
222 #undef HAVE_GSSAPI_GSSAPI_H
223
224 /* Define to 1 if you have the <gssapi.h> header file. */
225 #undef HAVE_GSSAPI_H
226
227 /* Define to 1 if you have the <history.h> header file. */
228 #undef HAVE_HISTORY_H
229
230 /* Define to 1 if you have the `history_truncate_file' function. */
231 #undef HAVE_HISTORY_TRUNCATE_FILE
232
233 /* Define to 1 if you have the <ieeefp.h> header file. */
234 #undef HAVE_IEEEFP_H
235
236 /* Define to 1 if you have the <ifaddrs.h> header file. */
237 #undef HAVE_IFADDRS_H
238
239 /* Define to 1 if you have the `inet_aton' function. */
240 #undef HAVE_INET_ATON
241
242 /* Define to 1 if the system has the type `int64'. */
243 #undef HAVE_INT64
244
245 /* Define to 1 if the system has the type `int8'. */
246 #undef HAVE_INT8
247
248 /* Define to 1 if the system has the type `intptr_t'. */
249 #undef HAVE_INTPTR_T
250
251 /* Define to 1 if you have the <inttypes.h> header file. */
252 #undef HAVE_INTTYPES_H
253
254 /* Define to 1 if you have the global variable 'int opterr'. */
255 #undef HAVE_INT_OPTERR
256
257 /* Define to 1 if you have the global variable 'int optreset'. */
258 #undef HAVE_INT_OPTRESET
259
260 /* Define to 1 if you have the global variable 'int timezone'. */
261 #undef HAVE_INT_TIMEZONE
262
263 /* Define to 1 if you have support for IPv6. */
264 #undef HAVE_IPV6
265
266 /* Define to 1 if you have isinf(). */
267 #undef HAVE_ISINF
268
269 /* Define to 1 if you have the <kernel/image.h> header file. */
270 #undef HAVE_KERNEL_IMAGE_H
271
272 /* Define to 1 if you have the <kernel/OS.h> header file. */
273 #undef HAVE_KERNEL_OS_H
274
275 /* Define to 1 if `e_data' is member of `krb5_error'. */
276 #undef HAVE_KRB5_ERROR_E_DATA
277
278 /* Define to 1 if `text.data' is member of `krb5_error'. */
279 #undef HAVE_KRB5_ERROR_TEXT_DATA
280
281 /* Define to 1 if you have krb5_free_unparsed_name */
282 #undef HAVE_KRB5_FREE_UNPARSED_NAME
283
284 /* Define to 1 if `client' is member of `krb5_ticket'. */
285 #undef HAVE_KRB5_TICKET_CLIENT
286
287 /* Define to 1 if `enc_part2' is member of `krb5_ticket'. */
288 #undef HAVE_KRB5_TICKET_ENC_PART2
289
290 /* Define to 1 if you have the <langinfo.h> header file. */
291 #undef HAVE_LANGINFO_H
292
293 /* Define to 1 if you have the <ldap.h> header file. */
294 #undef HAVE_LDAP_H
295
296 /* Define to 1 if you have the `crypto' library (-lcrypto). */
297 #undef HAVE_LIBCRYPTO
298
299 /* Define to 1 if you have the `eay32' library (-leay32). */
300 #undef HAVE_LIBEAY32
301
302 /* Define to 1 if you have the `ldap' library (-lldap). */
303 #undef HAVE_LIBLDAP
304
305 /* Define to 1 if you have the `ldap_r' library (-lldap_r). */
306 #undef HAVE_LIBLDAP_R
307
308 /* Define to 1 if you have the `m' library (-lm). */
309 #undef HAVE_LIBM
310
311 /* Define to 1 if you have the `pam' library (-lpam). */
312 #undef HAVE_LIBPAM
313
314 /* Define if you have a function readline library */
315 #undef HAVE_LIBREADLINE
316
317 /* Define to 1 if you have the `selinux' library (-lselinux). */
318 #undef HAVE_LIBSELINUX
319
320 /* Define to 1 if you have the `ssl' library (-lssl). */
321 #undef HAVE_LIBSSL
322
323 /* Define to 1 if you have the `ssleay32' library (-lssleay32). */
324 #undef HAVE_LIBSSLEAY32
325
326 /* Define to 1 if you have the `wldap32' library (-lwldap32). */
327 #undef HAVE_LIBWLDAP32
328
329 /* Define to 1 if you have the `xml2' library (-lxml2). */
330 #undef HAVE_LIBXML2
331
332 /* Define to 1 if you have the `xslt' library (-lxslt). */
333 #undef HAVE_LIBXSLT
334
335 /* Define to 1 if you have the `z' library (-lz). */
336 #undef HAVE_LIBZ
337
338 /* Define to 1 if constants of type 'long long int' should have the suffix LL.
339    */
340 #undef HAVE_LL_CONSTANTS
341
342 /* Define to 1 if the system has the type `locale_t'. */
343 #undef HAVE_LOCALE_T
344
345 /* Define to 1 if `long int' works and is 64 bits. */
346 #undef HAVE_LONG_INT_64
347
348 /* Define to 1 if the system has the type `long long int'. */
349 #undef HAVE_LONG_LONG_INT
350
351 /* Define to 1 if `long long int' works and is 64 bits. */
352 #undef HAVE_LONG_LONG_INT_64
353
354 /* Define to 1 if you have the `memmove' function. */
355 #undef HAVE_MEMMOVE
356
357 /* Define to 1 if you have the <memory.h> header file. */
358 #undef HAVE_MEMORY_H
359
360 /* Define to 1 if the system has the type `MINIDUMP_TYPE'. */
361 #undef HAVE_MINIDUMP_TYPE
362
363 /* Define to 1 if you have the <netinet/in.h> header file. */
364 #undef HAVE_NETINET_IN_H
365
366 /* Define to 1 if you have the <netinet/tcp.h> header file. */
367 #undef HAVE_NETINET_TCP_H
368
369 /* Define to 1 if you have the <net/if.h> header file. */
370 #undef HAVE_NET_IF_H
371
372 /* Define to 1 if you have the `on_exit' function. */
373 #undef HAVE_ON_EXIT
374
375 /* Define to 1 if you have the <ossp/uuid.h> header file. */
376 #undef HAVE_OSSP_UUID_H
377
378 /* Define to 1 if you have the <pam/pam_appl.h> header file. */
379 #undef HAVE_PAM_PAM_APPL_H
380
381 /* Define to 1 if you have the `poll' function. */
382 #undef HAVE_POLL
383
384 /* Define to 1 if you have the <poll.h> header file. */
385 #undef HAVE_POLL_H
386
387 /* Define to 1 if you have the `posix_fadvise' function. */
388 #undef HAVE_POSIX_FADVISE
389
390 /* Define to 1 if you have the POSIX signal interface. */
391 #undef HAVE_POSIX_SIGNALS
392
393 /* Define to 1 if you have the `pstat' function. */
394 #undef HAVE_PSTAT
395
396 /* Define to 1 if the PS_STRINGS thing exists. */
397 #undef HAVE_PS_STRINGS
398
399 /* Define if you have POSIX threads libraries and header files. */
400 #undef HAVE_PTHREAD
401
402 /* Define to 1 if you have the <pwd.h> header file. */
403 #undef HAVE_PWD_H
404
405 /* Define to 1 if you have the `random' function. */
406 #undef HAVE_RANDOM
407
408 /* Define to 1 if you have the <readline.h> header file. */
409 #undef HAVE_READLINE_H
410
411 /* Define to 1 if you have the <readline/history.h> header file. */
412 #undef HAVE_READLINE_HISTORY_H
413
414 /* Define to 1 if you have the <readline/readline.h> header file. */
415 #undef HAVE_READLINE_READLINE_H
416
417 /* Define to 1 if you have the `readlink' function. */
418 #undef HAVE_READLINK
419
420 /* Define to 1 if you have the `rint' function. */
421 #undef HAVE_RINT
422
423 /* Define to 1 if you have the global variable
424    'rl_completion_append_character'. */
425 #undef HAVE_RL_COMPLETION_APPEND_CHARACTER
426
427 /* Define to 1 if you have the `rl_completion_matches' function. */
428 #undef HAVE_RL_COMPLETION_MATCHES
429
430 /* Define to 1 if you have the `rl_filename_completion_function' function. */
431 #undef HAVE_RL_FILENAME_COMPLETION_FUNCTION
432
433 /* Define to 1 if you have the <security/pam_appl.h> header file. */
434 #undef HAVE_SECURITY_PAM_APPL_H
435
436 /* Define to 1 if you have the `setproctitle' function. */
437 #undef HAVE_SETPROCTITLE
438
439 /* Define to 1 if you have the `setsid' function. */
440 #undef HAVE_SETSID
441
442 /* Define to 1 if you have the `sigprocmask' function. */
443 #undef HAVE_SIGPROCMASK
444
445 /* Define to 1 if you have sigsetjmp(). */
446 #undef HAVE_SIGSETJMP
447
448 /* Define to 1 if the system has the type `sig_atomic_t'. */
449 #undef HAVE_SIG_ATOMIC_T
450
451 /* Define to 1 if you have the `snprintf' function. */
452 #undef HAVE_SNPRINTF
453
454 /* Define to 1 if you have spinlocks. */
455 #undef HAVE_SPINLOCKS
456
457 /* Define to 1 if you have the `srandom' function. */
458 #undef HAVE_SRANDOM
459
460 /* Define to 1 if you have the <stdint.h> header file. */
461 #undef HAVE_STDINT_H
462
463 /* Define to 1 if you have the <stdlib.h> header file. */
464 #undef HAVE_STDLIB_H
465
466 /* Define to 1 if you have the `strdup' function. */
467 #undef HAVE_STRDUP
468
469 /* Define to 1 if you have the `strerror' function. */
470 #undef HAVE_STRERROR
471
472 /* Define to 1 if you have the `strerror_r' function. */
473 #undef HAVE_STRERROR_R
474
475 /* Define to 1 if cpp supports the ANSI # stringizing operator. */
476 #undef HAVE_STRINGIZE
477
478 /* Define to 1 if you have the <strings.h> header file. */
479 #undef HAVE_STRINGS_H
480
481 /* Define to 1 if you have the <string.h> header file. */
482 #undef HAVE_STRING_H
483
484 /* Define to 1 if you have the `strlcat' function. */
485 #undef HAVE_STRLCAT
486
487 /* Define to 1 if you have the `strlcpy' function. */
488 #undef HAVE_STRLCPY
489
490 /* Define to 1 if you have the `strtol' function. */
491 #undef HAVE_STRTOL
492
493 /* Define to 1 if you have the `strtoll' function. */
494 #undef HAVE_STRTOLL
495
496 /* Define to 1 if you have the `strtoq' function. */
497 #undef HAVE_STRTOQ
498
499 /* Define to 1 if you have the `strtoul' function. */
500 #undef HAVE_STRTOUL
501
502 /* Define to 1 if you have the `strtoull' function. */
503 #undef HAVE_STRTOULL
504
505 /* Define to 1 if you have the `strtouq' function. */
506 #undef HAVE_STRTOUQ
507
508 /* Define to 1 if the system has the type `struct addrinfo'. */
509 #undef HAVE_STRUCT_ADDRINFO
510
511 /* Define to 1 if the system has the type `struct cmsgcred'. */
512 #undef HAVE_STRUCT_CMSGCRED
513
514 /* Define to 1 if the system has the type `struct option'. */
515 #undef HAVE_STRUCT_OPTION
516
517 /* Define to 1 if `sa_len' is member of `struct sockaddr'. */
518 #undef HAVE_STRUCT_SOCKADDR_SA_LEN
519
520 /* Define to 1 if the system has the type `struct sockaddr_storage'. */
521 #undef HAVE_STRUCT_SOCKADDR_STORAGE
522
523 /* Define to 1 if `ss_family' is member of `struct sockaddr_storage'. */
524 #undef HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY
525
526 /* Define to 1 if `ss_len' is member of `struct sockaddr_storage'. */
527 #undef HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN
528
529 /* Define to 1 if `__ss_family' is member of `struct sockaddr_storage'. */
530 #undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY
531
532 /* Define to 1 if `__ss_len' is member of `struct sockaddr_storage'. */
533 #undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN
534
535 /* Define to 1 if the system has the type `struct sockaddr_un'. */
536 #undef HAVE_STRUCT_SOCKADDR_UN
537
538 /* Define to 1 if `tm_zone' is member of `struct tm'. */
539 #undef HAVE_STRUCT_TM_TM_ZONE
540
541 /* Define to 1 if you have the <SupportDefs.h> header file. */
542 #undef HAVE_SUPPORTDEFS_H
543
544 /* Define to 1 if you have the `symlink' function. */
545 #undef HAVE_SYMLINK
546
547 /* Define to 1 if you have the `sysconf' function. */
548 #undef HAVE_SYSCONF
549
550 /* Define to 1 if you have the syslog interface. */
551 #undef HAVE_SYSLOG
552
553 /* Define to 1 if you have the <sys/ioctl.h> header file. */
554 #undef HAVE_SYS_IOCTL_H
555
556 /* Define to 1 if you have the <sys/ipc.h> header file. */
557 #undef HAVE_SYS_IPC_H
558
559 /* Define to 1 if you have the <sys/poll.h> header file. */
560 #undef HAVE_SYS_POLL_H
561
562 /* Define to 1 if you have the <sys/pstat.h> header file. */
563 #undef HAVE_SYS_PSTAT_H
564
565 /* Define to 1 if you have the <sys/resource.h> header file. */
566 #undef HAVE_SYS_RESOURCE_H
567
568 /* Define to 1 if you have the <sys/select.h> header file. */
569 #undef HAVE_SYS_SELECT_H
570
571 /* Define to 1 if you have the <sys/sem.h> header file. */
572 #undef HAVE_SYS_SEM_H
573
574 /* Define to 1 if you have the <sys/shm.h> header file. */
575 #undef HAVE_SYS_SHM_H
576
577 /* Define to 1 if you have the <sys/socket.h> header file. */
578 #undef HAVE_SYS_SOCKET_H
579
580 /* Define to 1 if you have the <sys/sockio.h> header file. */
581 #undef HAVE_SYS_SOCKIO_H
582
583 /* Define to 1 if you have the <sys/stat.h> header file. */
584 #undef HAVE_SYS_STAT_H
585
586 /* Define to 1 if you have the <sys/tas.h> header file. */
587 #undef HAVE_SYS_TAS_H
588
589 /* Define to 1 if you have the <sys/time.h> header file. */
590 #undef HAVE_SYS_TIME_H
591
592 /* Define to 1 if you have the <sys/types.h> header file. */
593 #undef HAVE_SYS_TYPES_H
594
595 /* Define to 1 if you have the <sys/ucred.h> header file. */
596 #undef HAVE_SYS_UCRED_H
597
598 /* Define to 1 if you have the <sys/un.h> header file. */
599 #undef HAVE_SYS_UN_H
600
601 /* Define to 1 if you have the <termios.h> header file. */
602 #undef HAVE_TERMIOS_H
603
604 /* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
605    `HAVE_STRUCT_TM_TM_ZONE' instead. */
606 #undef HAVE_TM_ZONE
607
608 /* Define to 1 if you have the `towlower' function. */
609 #undef HAVE_TOWLOWER
610
611 /* Define to 1 if you have the external array `tzname'. */
612 #undef HAVE_TZNAME
613
614 /* Define to 1 if you have the <ucred.h> header file. */
615 #undef HAVE_UCRED_H
616
617 /* Define to 1 if the system has the type `uint64'. */
618 #undef HAVE_UINT64
619
620 /* Define to 1 if the system has the type `uint8'. */
621 #undef HAVE_UINT8
622
623 /* Define to 1 if the system has the type `uintptr_t'. */
624 #undef HAVE_UINTPTR_T
625
626 /* Define to 1 if the system has the type `union semun'. */
627 #undef HAVE_UNION_SEMUN
628
629 /* Define to 1 if you have the <unistd.h> header file. */
630 #undef HAVE_UNISTD_H
631
632 /* Define to 1 if you have unix sockets. */
633 #undef HAVE_UNIX_SOCKETS
634
635 /* Define to 1 if you have the `unsetenv' function. */
636 #undef HAVE_UNSETENV
637
638 /* Define to 1 if you have the `utime' function. */
639 #undef HAVE_UTIME
640
641 /* Define to 1 if you have the `utimes' function. */
642 #undef HAVE_UTIMES
643
644 /* Define to 1 if you have the <utime.h> header file. */
645 #undef HAVE_UTIME_H
646
647 /* Define to 1 if you have the <uuid.h> header file. */
648 #undef HAVE_UUID_H
649
650 /* Define to 1 if you have the `vsnprintf' function. */
651 #undef HAVE_VSNPRINTF
652
653 /* Define to 1 if you have the `waitpid' function. */
654 #undef HAVE_WAITPID
655
656 /* Define to 1 if you have the <wchar.h> header file. */
657 #undef HAVE_WCHAR_H
658
659 /* Define to 1 if you have the `wcstombs' function. */
660 #undef HAVE_WCSTOMBS
661
662 /* Define to 1 if you have the `wcstombs_l' function. */
663 #undef HAVE_WCSTOMBS_L
664
665 /* Define to 1 if you have the <wctype.h> header file. */
666 #undef HAVE_WCTYPE_H
667
668 /* Define to 1 if you have the <winldap.h> header file. */
669 #undef HAVE_WINLDAP_H
670
671 /* Define to 1 if your libxml has xmlStructuredErrorContext. */
672 #undef HAVE_XMLSTRUCTUREDERRORCONTEXT
673
674 /* Define to the appropriate snprintf format for 64-bit ints. */
675 #undef INT64_FORMAT
676
677 /* Define to build with Kerberos 5 support. (--with-krb5) */
678 #undef KRB5
679
680 /* Define to 1 if `locale_t' requires <xlocale.h>. */
681 #undef LOCALE_T_IN_XLOCALE
682
683 /* Define as the maximum alignment requirement of any C data type. */
684 #undef MAXIMUM_ALIGNOF
685
686 /* Define bytes to use libc memset(). */
687 #undef MEMSET_LOOP_LIMIT
688
689 /* Define to the address where bug reports for this package should be sent. */
690 #undef PACKAGE_BUGREPORT
691
692 /* Define to the full name of this package. */
693 #undef PACKAGE_NAME
694
695 /* Define to the full name and version of this package. */
696 #undef PACKAGE_STRING
697
698 /* Define to the one symbol short name of this package. */
699 #undef PACKAGE_TARNAME
700
701 /* Define to the version of this package. */
702 #undef PACKAGE_VERSION
703
704 /* Define to the name of the default PostgreSQL service principal in Kerberos.
705    (--with-krb-srvnam=NAME) */
706 #undef PG_KRB_SRVNAM
707
708 /* PostgreSQL major version as a string */
709 #undef PG_MAJORVERSION
710
711 /* PostgreSQL version as a string */
712 #undef PG_VERSION
713
714 /* PostgreSQL version as a number */
715 #undef PG_VERSION_NUM
716
717 /* A string containing the version number, platform, and C compiler */
718 #undef PG_VERSION_STR
719
720 /* Define to 1 to allow profiling output to be saved separately for each
721    process. */
722 #undef PROFILE_PID_DIR
723
724 /* Define to the necessary symbol if this constant uses a non-standard name on
725    your system. */
726 #undef PTHREAD_CREATE_JOINABLE
727
728 /* RELSEG_SIZE is the maximum number of blocks allowed in one disk file. Thus,
729    the maximum size of a single file is RELSEG_SIZE * BLCKSZ; relations bigger
730    than that are divided into multiple files. RELSEG_SIZE * BLCKSZ must be
731    less than your OS' limit on file size. This is often 2 GB or 4GB in a
732    32-bit operating system, unless you have large file support enabled. By
733    default, we make the limit 1 GB to avoid any possible integer-overflow
734    problems within the OS. A limit smaller than necessary only means we divide
735    a large relation into more chunks than necessary, so it seems best to err
736    in the direction of a small limit. A power-of-2 value is recommended to
737    save a few cycles in md.c, but is not absolutely required. Changing
738    RELSEG_SIZE requires an initdb. */
739 #undef RELSEG_SIZE
740
741 /* The size of `long', as computed by sizeof. */
742 #undef SIZEOF_LONG
743
744 /* The size of `off_t', as computed by sizeof. */
745 #undef SIZEOF_OFF_T
746
747 /* The size of `size_t', as computed by sizeof. */
748 #undef SIZEOF_SIZE_T
749
750 /* The size of `void *', as computed by sizeof. */
751 #undef SIZEOF_VOID_P
752
753 /* Define to 1 if you have the ANSI C header files. */
754 #undef STDC_HEADERS
755
756 /* Define to 1 if strerror_r() returns a int. */
757 #undef STRERROR_R_INT
758
759 /* Define to 1 if your <sys/time.h> declares `struct tm'. */
760 #undef TM_IN_SYS_TIME
761
762 /* Define to the appropriate snprintf format for unsigned 64-bit ints. */
763 #undef UINT64_FORMAT
764
765 /* Define to 1 to build with assertion checks. (--enable-cassert) */
766 #undef USE_ASSERT_CHECKING
767
768 /* Define to 1 to build with Bonjour support. (--with-bonjour) */
769 #undef USE_BONJOUR
770
771 /* Define to 1 if you want float4 values to be passed by value.
772    (--enable-float4-byval) */
773 #undef USE_FLOAT4_BYVAL
774
775 /* Define to 1 if you want float8, int8, etc values to be passed by value.
776    (--enable-float8-byval) */
777 #undef USE_FLOAT8_BYVAL
778
779 /* Define to 1 if "static inline" works without unwanted warnings from
780    compilations where static inline functions are defined but not called. */
781 #undef USE_INLINE
782
783 /* Define to 1 if you want 64-bit integer timestamp and interval support.
784    (--enable-integer-datetimes) */
785 #undef USE_INTEGER_DATETIMES
786
787 /* Define to 1 to build with LDAP support. (--with-ldap) */
788 #undef USE_LDAP
789
790 /* Define to 1 to build with XML support. (--with-libxml) */
791 #undef USE_LIBXML
792
793 /* Define to 1 to use XSLT support when building contrib/xml2.
794    (--with-libxslt) */
795 #undef USE_LIBXSLT
796
797 /* Define to select named POSIX semaphores. */
798 #undef USE_NAMED_POSIX_SEMAPHORES
799
800 /* Define to 1 to build with PAM support. (--with-pam) */
801 #undef USE_PAM
802
803 /* Use replacement snprintf() functions. */
804 #undef USE_REPL_SNPRINTF
805
806 /* Define to build with (Open)SSL support. (--with-openssl) */
807 #undef USE_SSL
808
809 /* Define to select SysV-style semaphores. */
810 #undef USE_SYSV_SEMAPHORES
811
812 /* Define to select SysV-style shared memory. */
813 #undef USE_SYSV_SHARED_MEMORY
814
815 /* Define to select unnamed POSIX semaphores. */
816 #undef USE_UNNAMED_POSIX_SEMAPHORES
817
818 /* Define to select Win32-style semaphores. */
819 #undef USE_WIN32_SEMAPHORES
820
821 /* Define to select Win32-style shared memory. */
822 #undef USE_WIN32_SHARED_MEMORY
823
824 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
825    significant byte first (like Motorola and SPARC, unlike Intel). */
826 #if defined AC_APPLE_UNIVERSAL_BUILD
827 # if defined __BIG_ENDIAN__
828 #  define WORDS_BIGENDIAN 1
829 # endif
830 #else
831 # ifndef WORDS_BIGENDIAN
832 #  undef WORDS_BIGENDIAN
833 # endif
834 #endif
835
836 /* Size of a WAL file block. This need have no particular relation to BLCKSZ.
837    XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
838    XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
839    buffers, else direct I/O may fail. Changing XLOG_BLCKSZ requires an initdb.
840    */
841 #undef XLOG_BLCKSZ
842
843 /* XLOG_SEG_SIZE is the size of a single WAL file. This must be a power of 2
844    and larger than XLOG_BLCKSZ (preferably, a great deal larger than
845    XLOG_BLCKSZ). Changing XLOG_SEG_SIZE requires an initdb. */
846 #undef XLOG_SEG_SIZE
847
848 /* Number of bits in a file offset, on hosts where this is settable. */
849 #undef _FILE_OFFSET_BITS
850
851 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
852 #undef _LARGEFILE_SOURCE
853
854 /* Define for large files, on AIX-style hosts. */
855 #undef _LARGE_FILES
856
857 /* Define to empty if `const' does not conform to ANSI C. */
858 #undef const
859
860 /* Define to `__inline__' or `__inline' if that's what the C compiler
861    calls it, or to nothing if 'inline' is not supported under any name.  */
862 #ifndef __cplusplus
863 #undef inline
864 #endif
865
866 /* Define to the type of a signed integer type wide enough to hold a pointer,
867    if such a type exists, and if the system does not define it. */
868 #undef intptr_t
869
870 /* Define to empty if the C compiler does not understand signed types. */
871 #undef signed
872
873 /* Define to the type of an unsigned integer type wide enough to hold a
874    pointer, if such a type exists, and if the system does not define it. */
875 #undef uintptr_t
876
877 /* Define to empty if the keyword `volatile' does not work. Warning: valid
878    code using `volatile' can become incorrect without. Disable with care. */
879 #undef volatile