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