YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/build/debugcov-clang-dynamic-arm64-ninja/postgres_build/src/include/pg_config.h
Line
Count
Source
1
/* src/include/pg_config.h.  Generated from pg_config.h.in by configure.  */
2
/* src/include/pg_config.h.in.  Generated from configure.in by autoheader.  */
3
4
/* Define to the type of arg 1 of 'accept' */
5
#define ACCEPT_TYPE_ARG1 int
6
7
/* Define to the type of arg 2 of 'accept' */
8
#define ACCEPT_TYPE_ARG2 struct sockaddr *
9
10
/* Define to the type of arg 3 of 'accept' */
11
2.13k
#define ACCEPT_TYPE_ARG3 socklen_t
12
13
/* Define to the return type of 'accept' */
14
#define ACCEPT_TYPE_RETURN int
15
16
/* Define if building universal (internal helper macro) */
17
/* #undef AC_APPLE_UNIVERSAL_BUILD */
18
19
/* The normal alignment of `double', in bytes. */
20
#define ALIGNOF_DOUBLE 8
21
22
/* The normal alignment of `int', in bytes. */
23
#define ALIGNOF_INT 4
24
25
/* The normal alignment of `long', in bytes. */
26
#define ALIGNOF_LONG 8
27
28
/* The normal alignment of `long long int', in bytes. */
29
/* #undef ALIGNOF_LONG_LONG_INT */
30
31
/* The normal alignment of `PG_INT128_TYPE', in bytes. */
32
#define ALIGNOF_PG_INT128_TYPE 16
33
34
/* The normal alignment of `short', in bytes. */
35
#define ALIGNOF_SHORT 2
36
37
/* Size of a disk block --- this also limits the size of a tuple. You can set
38
   it bigger if you need bigger tuples (although TOAST should reduce the need
39
   to have large tuples, since fields can be spread across multiple tuples).
40
   BLCKSZ must be a power of 2. The maximum possible value of BLCKSZ is
41
   currently 2^15 (32768). This is determined by the 15-bit widths of the
42
   lp_off and lp_len fields in ItemIdData (see include/storage/itemid.h).
43
   Changing BLCKSZ requires an initdb. */
44
2.85M
#define BLCKSZ 8192
45
46
/* Define to the default TCP port number on which the server listens and to
47
   which clients will try to connect. This can be overridden at run-time, but
48
   it's convenient if your clients have the right default compiled in.
49
   (--with-pgport=PORTNUM) */
50
#define DEF_PGPORT 5432
51
52
/* Define to the default TCP port number as a string constant. */
53
#define DEF_PGPORT_STR "5432"
54
55
/* Define to build with GSSAPI support. (--with-gssapi) */
56
/* #undef ENABLE_GSS */
57
58
/* Define to 1 if you want National Language Support. (--enable-nls) */
59
/* #undef ENABLE_NLS */
60
61
/* Define to 1 to build client libraries as thread-safe code.
62
   (--enable-thread-safety) */
63
#define ENABLE_THREAD_SAFETY 1
64
65
/* Define to nothing if C supports flexible array members, and to 1 if it does
66
   not. That way, with a declaration like `struct s { int n; double
67
   d[FLEXIBLE_ARRAY_MEMBER]; };', the struct hack can be used with pre-C99
68
   compilers. When computing the size of such an object, don't use 'sizeof
69
   (struct s)' as it overestimates the size. Use 'offsetof (struct s, d)'
70
   instead. Don't use 'offsetof (struct s, d[0])', as this doesn't work with
71
   MSVC and with C++ compilers. */
72
#define FLEXIBLE_ARRAY_MEMBER /**/
73
74
/* float4 values are passed by value if 'true', by reference if 'false' */
75
1.67k
#define FLOAT4PASSBYVAL true
76
77
/* float8, int8, and related values are passed by value if 'true', by
78
   reference if 'false' */
79
1.07k
#define FLOAT8PASSBYVAL true
80
81
/* Define to 1 if gettimeofday() takes only 1 argument. */
82
/* #undef GETTIMEOFDAY_1ARG */
83
84
#ifdef GETTIMEOFDAY_1ARG
85
# define gettimeofday(a,b) gettimeofday(a)
86
#endif
87
88
/* Define to 1 if you have the `append_history' function. */
89
#define HAVE_APPEND_HISTORY 1
90
91
/* Define to 1 if you have the `ASN1_STRING_get0_data' function. */
92
#define HAVE_ASN1_STRING_GET0_DATA 1
93
94
/* Define to 1 if you want to use atomics if available. */
95
#define HAVE_ATOMICS 1
96
97
/* Define to 1 if you have the <atomic.h> header file. */
98
/* #undef HAVE_ATOMIC_H */
99
100
/* Define to 1 if you have the `BIO_get_data' function. */
101
#define HAVE_BIO_GET_DATA 1
102
103
/* Define to 1 if you have the `BIO_meth_new' function. */
104
#define HAVE_BIO_METH_NEW 1
105
106
/* Define to 1 if you have the `cbrt' function. */
107
#define HAVE_CBRT 1
108
109
/* Define to 1 if you have the `class' function. */
110
/* #undef HAVE_CLASS */
111
112
/* Define to 1 if you have the `clock_gettime' function. */
113
#define HAVE_CLOCK_GETTIME 1
114
115
/* Define to 1 if your compiler handles computed gotos. */
116
#define HAVE_COMPUTED_GOTO 1
117
118
/* Define to 1 if you have the <crtdefs.h> header file. */
119
/* #undef HAVE_CRTDEFS_H */
120
121
/* Define to 1 if you have the `crypt' function. */
122
#define HAVE_CRYPT 1
123
124
/* Define to 1 if you have the `CRYPTO_lock' function. */
125
/* #undef HAVE_CRYPTO_LOCK */
126
127
/* Define to 1 if you have the <crypt.h> header file. */
128
/* #undef HAVE_CRYPT_H */
129
130
/* Define to 1 if you have the declaration of `fdatasync', and to 0 if you
131
   don't. */
132
#define HAVE_DECL_FDATASYNC 0
133
134
/* Define to 1 if you have the declaration of `F_FULLFSYNC', and to 0 if you
135
   don't. */
136
#define HAVE_DECL_F_FULLFSYNC 1
137
138
/* Define to 1 if you have the declaration of
139
   `LLVMCreateGDBRegistrationListener', and to 0 if you don't. */
140
/* #undef HAVE_DECL_LLVMCREATEGDBREGISTRATIONLISTENER */
141
142
/* Define to 1 if you have the declaration of
143
   `LLVMCreatePerfJITEventListener', and to 0 if you don't. */
144
/* #undef HAVE_DECL_LLVMCREATEPERFJITEVENTLISTENER */
145
146
/* Define to 1 if you have the declaration of `LLVMGetHostCPUFeatures', and to
147
   0 if you don't. */
148
/* #undef HAVE_DECL_LLVMGETHOSTCPUFEATURES */
149
150
/* Define to 1 if you have the declaration of `LLVMGetHostCPUName', and to 0
151
   if you don't. */
152
/* #undef HAVE_DECL_LLVMGETHOSTCPUNAME */
153
154
/* Define to 1 if you have the declaration of `LLVMOrcGetSymbolAddressIn', and
155
   to 0 if you don't. */
156
/* #undef HAVE_DECL_LLVMORCGETSYMBOLADDRESSIN */
157
158
/* Define to 1 if you have the declaration of `posix_fadvise', and to 0 if you
159
   don't. */
160
#define HAVE_DECL_POSIX_FADVISE 0
161
162
/* Define to 1 if you have the declaration of `snprintf', and to 0 if you
163
   don't. */
164
#define HAVE_DECL_SNPRINTF 1
165
166
/* Define to 1 if you have the declaration of `strlcat', and to 0 if you
167
   don't. */
168
#define HAVE_DECL_STRLCAT 1
169
170
/* Define to 1 if you have the declaration of `strlcpy', and to 0 if you
171
   don't. */
172
#define HAVE_DECL_STRLCPY 1
173
174
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
175
   don't. */
176
#define HAVE_DECL_STRNLEN 1
177
178
/* Define to 1 if you have the declaration of `strtoll', and to 0 if you
179
   don't. */
180
#define HAVE_DECL_STRTOLL 1
181
182
/* Define to 1 if you have the declaration of `strtoull', and to 0 if you
183
   don't. */
184
#define HAVE_DECL_STRTOULL 1
185
186
/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you
187
   don't. */
188
#define HAVE_DECL_SYS_SIGLIST 1
189
190
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
191
   don't. */
192
#define HAVE_DECL_VSNPRINTF 1
193
194
/* Define to 1 if you have the <dld.h> header file. */
195
/* #undef HAVE_DLD_H */
196
197
/* Define to 1 if you have the `dlopen' function. */
198
#define HAVE_DLOPEN 1
199
200
/* Define to 1 if you have the <editline/history.h> header file. */
201
/* #undef HAVE_EDITLINE_HISTORY_H */
202
203
/* Define to 1 if you have the <editline/readline.h> header file. */
204
#define HAVE_EDITLINE_READLINE_H 1
205
206
/* Define to 1 if you have the `fdatasync' function. */
207
#define HAVE_FDATASYNC 1
208
209
/* Define to 1 if you have the `fls' function. */
210
#define HAVE_FLS 1
211
212
/* Define to 1 if you have the `fpclass' function. */
213
/* #undef HAVE_FPCLASS */
214
215
/* Define to 1 if you have the `fp_class' function. */
216
/* #undef HAVE_FP_CLASS */
217
218
/* Define to 1 if you have the `fp_class_d' function. */
219
/* #undef HAVE_FP_CLASS_D */
220
221
/* Define to 1 if you have the <fp_class.h> header file. */
222
/* #undef HAVE_FP_CLASS_H */
223
224
/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
225
#define HAVE_FSEEKO 1
226
227
/* Define to 1 if your compiler understands __func__. */
228
#define HAVE_FUNCNAME__FUNC 1
229
230
/* Define to 1 if your compiler understands __FUNCTION__. */
231
/* #undef HAVE_FUNCNAME__FUNCTION */
232
233
/* Define to 1 if you have __atomic_compare_exchange_n(int *, int *, int). */
234
#define HAVE_GCC__ATOMIC_INT32_CAS 1
235
236
/* Define to 1 if you have __atomic_compare_exchange_n(int64 *, int64 *,
237
   int64). */
238
#define HAVE_GCC__ATOMIC_INT64_CAS 1
239
240
/* Define to 1 if you have __sync_lock_test_and_set(char *) and friends. */
241
#define HAVE_GCC__SYNC_CHAR_TAS 1
242
243
/* Define to 1 if you have __sync_val_compare_and_swap(int *, int, int). */
244
#define HAVE_GCC__SYNC_INT32_CAS 1
245
246
/* Define to 1 if you have __sync_lock_test_and_set(int *) and friends. */
247
#define HAVE_GCC__SYNC_INT32_TAS 1
248
249
/* Define to 1 if you have __sync_val_compare_and_swap(int64 *, int64, int64).
250
   */
251
#define HAVE_GCC__SYNC_INT64_CAS 1
252
253
/* Define to 1 if you have the `getaddrinfo' function. */
254
#define HAVE_GETADDRINFO 1
255
256
/* Define to 1 if you have the `gethostbyname_r' function. */
257
/* #undef HAVE_GETHOSTBYNAME_R */
258
259
/* Define to 1 if you have the `getifaddrs' function. */
260
#define HAVE_GETIFADDRS 1
261
262
/* Define to 1 if you have the `getopt' function. */
263
#define HAVE_GETOPT 1
264
265
/* Define to 1 if you have the <getopt.h> header file. */
266
#define HAVE_GETOPT_H 1
267
268
/* Define to 1 if you have the `getopt_long' function. */
269
#define HAVE_GETOPT_LONG 1
270
271
/* Define to 1 if you have the `getpeereid' function. */
272
#define HAVE_GETPEEREID 1
273
274
/* Define to 1 if you have the `getpeerucred' function. */
275
/* #undef HAVE_GETPEERUCRED */
276
277
/* Define to 1 if you have the `getpwuid_r' function. */
278
#define HAVE_GETPWUID_R 1
279
280
/* Define to 1 if you have the `getrlimit' function. */
281
#define HAVE_GETRLIMIT 1
282
283
/* Define to 1 if you have the `getrusage' function. */
284
#define HAVE_GETRUSAGE 1
285
286
/* Define to 1 if you have the `gettimeofday' function. */
287
/* #undef HAVE_GETTIMEOFDAY */
288
289
/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
290
/* #undef HAVE_GSSAPI_GSSAPI_H */
291
292
/* Define to 1 if you have the <gssapi.h> header file. */
293
/* #undef HAVE_GSSAPI_H */
294
295
/* Define to 1 if you have the <history.h> header file. */
296
/* #undef HAVE_HISTORY_H */
297
298
/* Define to 1 if you have the `history_truncate_file' function. */
299
#define HAVE_HISTORY_TRUNCATE_FILE 1
300
301
/* Define to 1 if you have the <ieeefp.h> header file. */
302
/* #undef HAVE_IEEEFP_H */
303
304
/* Define to 1 if you have the <ifaddrs.h> header file. */
305
#define HAVE_IFADDRS_H 1
306
307
/* Define to 1 if you have the `inet_aton' function. */
308
#define HAVE_INET_ATON 1
309
310
/* Define to 1 if the system has the type `int64'. */
311
/* #undef HAVE_INT64 */
312
313
/* Define to 1 if the system has the type `int8'. */
314
/* #undef HAVE_INT8 */
315
316
/* Define to 1 if the system has the type `intptr_t'. */
317
#define HAVE_INTPTR_T 1
318
319
/* Define to 1 if you have the <inttypes.h> header file. */
320
#define HAVE_INTTYPES_H 1
321
322
/* Define to 1 if you have the global variable 'int opterr'. */
323
#define HAVE_INT_OPTERR 1
324
325
/* Define to 1 if you have the global variable 'int optreset'. */
326
#define HAVE_INT_OPTRESET 1
327
328
/* Define to 1 if you have the global variable 'int timezone'. */
329
#define HAVE_INT_TIMEZONE 1
330
331
/* Define to 1 if you have support for IPv6. */
332
#define HAVE_IPV6 1
333
334
/* Define to 1 if you have isinf(). */
335
#define HAVE_ISINF 1
336
337
/* Define to 1 if you have the <langinfo.h> header file. */
338
#define HAVE_LANGINFO_H 1
339
340
/* Define to 1 if you have the <ldap.h> header file. */
341
#define HAVE_LDAP_H 1
342
343
/* Define to 1 if you have the `ldap_initialize' function. */
344
#define HAVE_LDAP_INITIALIZE 1
345
346
/* Define to 1 if you have the `crypto' library (-lcrypto). */
347
#define HAVE_LIBCRYPTO 1
348
349
/* Define to 1 if you have the `ldap' library (-lldap). */
350
#define HAVE_LIBLDAP 1
351
352
/* Define to 1 if you have the `ldap_r' library (-lldap_r). */
353
#define HAVE_LIBLDAP_R 1
354
355
/* Define to 1 if you have the `m' library (-lm). */
356
#define HAVE_LIBM 1
357
358
/* Define to 1 if you have the `pam' library (-lpam). */
359
/* #undef HAVE_LIBPAM */
360
361
/* Define if you have a function readline library */
362
#define HAVE_LIBREADLINE 1
363
364
/* Define to 1 if you have the `selinux' library (-lselinux). */
365
/* #undef HAVE_LIBSELINUX */
366
367
/* Define to 1 if you have the `ssl' library (-lssl). */
368
#define HAVE_LIBSSL 1
369
370
/* Define to 1 if you have the `wldap32' library (-lwldap32). */
371
/* #undef HAVE_LIBWLDAP32 */
372
373
/* Define to 1 if you have the `xml2' library (-lxml2). */
374
/* #undef HAVE_LIBXML2 */
375
376
/* Define to 1 if you have the `xslt' library (-lxslt). */
377
/* #undef HAVE_LIBXSLT */
378
379
/* Define to 1 if you have the `z' library (-lz). */
380
#define HAVE_LIBZ 1
381
382
/* Define to 1 if the system has the type `locale_t'. */
383
#define HAVE_LOCALE_T 1
384
385
/* Define to 1 if `long int' works and is 64 bits. */
386
#define HAVE_LONG_INT_64 1
387
388
/* Define to 1 if the system has the type `long long int'. */
389
#define HAVE_LONG_LONG_INT 1
390
391
/* Define to 1 if `long long int' works and is 64 bits. */
392
/* #undef HAVE_LONG_LONG_INT_64 */
393
394
/* Define to 1 if you have the <mbarrier.h> header file. */
395
/* #undef HAVE_MBARRIER_H */
396
397
/* Define to 1 if you have the `mbstowcs_l' function. */
398
#define HAVE_MBSTOWCS_L 1
399
400
/* Define to 1 if you have the `memmove' function. */
401
#define HAVE_MEMMOVE 1
402
403
/* Define to 1 if you have the <memory.h> header file. */
404
#define HAVE_MEMORY_H 1
405
406
/* Define to 1 if the system has the type `MINIDUMP_TYPE'. */
407
/* #undef HAVE_MINIDUMP_TYPE */
408
409
/* Define to 1 if you have the `mkdtemp' function. */
410
#define HAVE_MKDTEMP 1
411
412
/* Define to 1 if you have the <netinet/tcp.h> header file. */
413
#define HAVE_NETINET_TCP_H 1
414
415
/* Define to 1 if you have the <net/if.h> header file. */
416
#define HAVE_NET_IF_H 1
417
418
/* Define to 1 if you have the `OPENSSL_init_ssl' function. */
419
#define HAVE_OPENSSL_INIT_SSL 1
420
421
/* Define to 1 if you have the <ossp/uuid.h> header file. */
422
/* #undef HAVE_OSSP_UUID_H */
423
424
/* Define to 1 if you have the <pam/pam_appl.h> header file. */
425
/* #undef HAVE_PAM_PAM_APPL_H */
426
427
/* Define to 1 if you have the `poll' function. */
428
#define HAVE_POLL 1
429
430
/* Define to 1 if you have the <poll.h> header file. */
431
#define HAVE_POLL_H 1
432
433
/* Define to 1 if you have the `posix_fadvise' function. */
434
/* #undef HAVE_POSIX_FADVISE */
435
436
/* Define to 1 if you have the `posix_fallocate' function. */
437
/* #undef HAVE_POSIX_FALLOCATE */
438
439
/* Define to 1 if the assembler supports PPC's LWARX mutex hint bit. */
440
/* #undef HAVE_PPC_LWARX_MUTEX_HINT */
441
442
/* Define to 1 if you have the `pstat' function. */
443
/* #undef HAVE_PSTAT */
444
445
/* Define to 1 if the PS_STRINGS thing exists. */
446
/* #undef HAVE_PS_STRINGS */
447
448
/* Define if you have POSIX threads libraries and header files. */
449
#define HAVE_PTHREAD 1
450
451
/* Define to 1 if you have the `pthread_is_threaded_np' function. */
452
#define HAVE_PTHREAD_IS_THREADED_NP 1
453
454
/* Have PTHREAD_PRIO_INHERIT. */
455
#define HAVE_PTHREAD_PRIO_INHERIT 1
456
457
/* Define to 1 if you have the `random' function. */
458
#define HAVE_RANDOM 1
459
460
/* Define to 1 if you have the `RAND_OpenSSL' function. */
461
#define HAVE_RAND_OPENSSL 1
462
463
/* Define to 1 if you have the <readline.h> header file. */
464
/* #undef HAVE_READLINE_H */
465
466
/* Define to 1 if you have the <readline/history.h> header file. */
467
#define HAVE_READLINE_HISTORY_H 1
468
469
/* Define to 1 if you have the <readline/readline.h> header file. */
470
/* #undef HAVE_READLINE_READLINE_H */
471
472
/* Define to 1 if you have the `readlink' function. */
473
#define HAVE_READLINK 1
474
475
/* Define to 1 if you have the `rint' function. */
476
#define HAVE_RINT 1
477
478
/* Define to 1 if you have the global variable
479
   'rl_completion_append_character'. */
480
/* #undef HAVE_RL_COMPLETION_APPEND_CHARACTER */
481
482
/* Define to 1 if you have the `rl_completion_matches' function. */
483
#define HAVE_RL_COMPLETION_MATCHES 1
484
485
/* Define to 1 if you have the `rl_filename_completion_function' function. */
486
#define HAVE_RL_FILENAME_COMPLETION_FUNCTION 1
487
488
/* Define to 1 if you have the `rl_reset_screen_size' function. */
489
/* #undef HAVE_RL_RESET_SCREEN_SIZE */
490
491
/* Define to 1 if you have the <security/pam_appl.h> header file. */
492
/* #undef HAVE_SECURITY_PAM_APPL_H */
493
494
/* Define to 1 if you have the `setproctitle' function. */
495
/* #undef HAVE_SETPROCTITLE */
496
497
/* Define to 1 if you have the `setsid' function. */
498
#define HAVE_SETSID 1
499
500
/* Define to 1 if you have the `shm_open' function. */
501
#define HAVE_SHM_OPEN 1
502
503
/* Define to 1 if you have the `snprintf' function. */
504
#define HAVE_SNPRINTF 1
505
506
/* Define to 1 if you have spinlocks. */
507
#define HAVE_SPINLOCKS 1
508
509
/* Define to 1 if you have the `srandom' function. */
510
#define HAVE_SRANDOM 1
511
512
/* Define to 1 if you have the `SSL_clear_options' function. */
513
#define HAVE_SSL_CLEAR_OPTIONS 1
514
515
/* Define to 1 if you have the `SSL_get_current_compression' function. */
516
#define HAVE_SSL_GET_CURRENT_COMPRESSION 1
517
518
/* Define to 1 if stdbool.h conforms to C99. */
519
#define HAVE_STDBOOL_H 1
520
521
/* Define to 1 if you have the <stdint.h> header file. */
522
#define HAVE_STDINT_H 1
523
524
/* Define to 1 if you have the <stdlib.h> header file. */
525
#define HAVE_STDLIB_H 1
526
527
/* Define to 1 if you have the `strerror' function. */
528
#define HAVE_STRERROR 1
529
530
/* Define to 1 if you have the `strerror_r' function. */
531
#define HAVE_STRERROR_R 1
532
533
/* Define to 1 if you have the <strings.h> header file. */
534
#define HAVE_STRINGS_H 1
535
536
/* Define to 1 if you have the <string.h> header file. */
537
#define HAVE_STRING_H 1
538
539
/* Define to 1 if you have the `strlcat' function. */
540
#define HAVE_STRLCAT 1
541
542
/* Define to 1 if you have the `strlcpy' function. */
543
#define HAVE_STRLCPY 1
544
545
/* Define to 1 if you have the `strnlen' function. */
546
#define HAVE_STRNLEN 1
547
548
/* Define to use have a strong random number source */
549
#define HAVE_STRONG_RANDOM 1
550
551
/* Define to 1 if you have the `strtoll' function. */
552
#define HAVE_STRTOLL 1
553
554
/* Define to 1 if you have the `strtoq' function. */
555
/* #undef HAVE_STRTOQ */
556
557
/* Define to 1 if you have the `strtoull' function. */
558
#define HAVE_STRTOULL 1
559
560
/* Define to 1 if you have the `strtouq' function. */
561
/* #undef HAVE_STRTOUQ */
562
563
/* Define to 1 if the system has the type `struct addrinfo'. */
564
#define HAVE_STRUCT_ADDRINFO 1
565
566
/* Define to 1 if the system has the type `struct cmsgcred'. */
567
/* #undef HAVE_STRUCT_CMSGCRED */
568
569
/* Define to 1 if the system has the type `struct option'. */
570
#define HAVE_STRUCT_OPTION 1
571
572
/* Define to 1 if `sa_len' is a member of `struct sockaddr'. */
573
#define HAVE_STRUCT_SOCKADDR_SA_LEN 1
574
575
/* Define to 1 if the system has the type `struct sockaddr_storage'. */
576
#define HAVE_STRUCT_SOCKADDR_STORAGE 1
577
578
/* Define to 1 if `ss_family' is a member of `struct sockaddr_storage'. */
579
#define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1
580
581
/* Define to 1 if `ss_len' is a member of `struct sockaddr_storage'. */
582
#define HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN 1
583
584
/* Define to 1 if `__ss_family' is a member of `struct sockaddr_storage'. */
585
/* #undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY */
586
587
/* Define to 1 if `__ss_len' is a member of `struct sockaddr_storage'. */
588
/* #undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN */
589
590
/* Define to 1 if `tm_zone' is a member of `struct tm'. */
591
#define HAVE_STRUCT_TM_TM_ZONE 1
592
593
/* Define to 1 if you have the `symlink' function. */
594
#define HAVE_SYMLINK 1
595
596
/* Define to 1 if you have the `sync_file_range' function. */
597
/* #undef HAVE_SYNC_FILE_RANGE */
598
599
/* Define to 1 if you have the syslog interface. */
600
#define HAVE_SYSLOG 1
601
602
/* Define to 1 if you have the <sys/epoll.h> header file. */
603
/* #undef HAVE_SYS_EPOLL_H */
604
605
/* Define to 1 if you have the <sys/ipc.h> header file. */
606
#define HAVE_SYS_IPC_H 1
607
608
/* Define to 1 if you have the <sys/pstat.h> header file. */
609
/* #undef HAVE_SYS_PSTAT_H */
610
611
/* Define to 1 if you have the <sys/resource.h> header file. */
612
#define HAVE_SYS_RESOURCE_H 1
613
614
/* Define to 1 if you have the <sys/select.h> header file. */
615
#define HAVE_SYS_SELECT_H 1
616
617
/* Define to 1 if you have the <sys/sem.h> header file. */
618
#define HAVE_SYS_SEM_H 1
619
620
/* Define to 1 if you have the <sys/shm.h> header file. */
621
#define HAVE_SYS_SHM_H 1
622
623
/* Define to 1 if you have the <sys/sockio.h> header file. */
624
#define HAVE_SYS_SOCKIO_H 1
625
626
/* Define to 1 if you have the <sys/stat.h> header file. */
627
#define HAVE_SYS_STAT_H 1
628
629
/* Define to 1 if you have the <sys/tas.h> header file. */
630
/* #undef HAVE_SYS_TAS_H */
631
632
/* Define to 1 if you have the <sys/types.h> header file. */
633
#define HAVE_SYS_TYPES_H 1
634
635
/* Define to 1 if you have the <sys/ucred.h> header file. */
636
#define HAVE_SYS_UCRED_H 1
637
638
/* Define to 1 if you have the <sys/un.h> header file. */
639
#define HAVE_SYS_UN_H 1
640
641
/* Define to 1 if you have the <termios.h> header file. */
642
#define HAVE_TERMIOS_H 1
643
644
/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
645
   `HAVE_STRUCT_TM_TM_ZONE' instead. */
646
#define HAVE_TM_ZONE 1
647
648
/* Define to 1 if your compiler understands `typeof' or something similar. */
649
#define HAVE_TYPEOF 1
650
651
/* Define to 1 if you have the external array `tzname'. */
652
#define HAVE_TZNAME 1
653
654
/* Define to 1 if you have the <ucred.h> header file. */
655
/* #undef HAVE_UCRED_H */
656
657
/* Define to 1 if the system has the type `uint64'. */
658
/* #undef HAVE_UINT64 */
659
660
/* Define to 1 if the system has the type `uint8'. */
661
/* #undef HAVE_UINT8 */
662
663
/* Define to 1 if the system has the type `uintptr_t'. */
664
#define HAVE_UINTPTR_T 1
665
666
/* Define to 1 if the system has the type `union semun'. */
667
#define HAVE_UNION_SEMUN 1
668
669
/* Define to 1 if you have the <unistd.h> header file. */
670
#define HAVE_UNISTD_H 1
671
672
/* Define to 1 if you have unix sockets. */
673
#define HAVE_UNIX_SOCKETS 1
674
675
/* Define to 1 if you have the `unsetenv' function. */
676
#define HAVE_UNSETENV 1
677
678
/* Define to 1 if the system has the type `unsigned long long int'. */
679
#define HAVE_UNSIGNED_LONG_LONG_INT 1
680
681
/* Define to 1 if you have the `uselocale' function. */
682
#define HAVE_USELOCALE 1
683
684
/* Define to 1 if you have the `utime' function. */
685
#define HAVE_UTIME 1
686
687
/* Define to 1 if you have the `utimes' function. */
688
#define HAVE_UTIMES 1
689
690
/* Define to 1 if you have the <utime.h> header file. */
691
#define HAVE_UTIME_H 1
692
693
/* Define to 1 if you have BSD UUID support. */
694
/* #undef HAVE_UUID_BSD */
695
696
/* Define to 1 if you have E2FS UUID support. */
697
#define HAVE_UUID_E2FS 1
698
699
/* Define to 1 if you have the <uuid.h> header file. */
700
/* #undef HAVE_UUID_H */
701
702
/* Define to 1 if you have OSSP UUID support. */
703
/* #undef HAVE_UUID_OSSP */
704
705
/* Define to 1 if you have the <uuid/uuid.h> header file. */
706
#define HAVE_UUID_UUID_H 1
707
708
/* Define to 1 if you have the `vsnprintf' function. */
709
#define HAVE_VSNPRINTF 1
710
711
/* Define to 1 if you have the <wchar.h> header file. */
712
#define HAVE_WCHAR_H 1
713
714
/* Define to 1 if you have the `wcstombs_l' function. */
715
#define HAVE_WCSTOMBS_L 1
716
717
/* Define to 1 if you have the <wctype.h> header file. */
718
#define HAVE_WCTYPE_H 1
719
720
/* Define to 1 if you have the <winldap.h> header file. */
721
/* #undef HAVE_WINLDAP_H */
722
723
/* Define to 1 if you have the `X509_get_signature_nid' function. */
724
#define HAVE_X509_GET_SIGNATURE_NID 1
725
726
/* Define to 1 if the system has the type `_Bool'. */
727
#define HAVE__BOOL 1
728
729
/* Define to 1 if your compiler understands __builtin_bswap16. */
730
#define HAVE__BUILTIN_BSWAP16 1
731
732
/* Define to 1 if your compiler understands __builtin_bswap32. */
733
#define HAVE__BUILTIN_BSWAP32 1
734
735
/* Define to 1 if your compiler understands __builtin_bswap64. */
736
#define HAVE__BUILTIN_BSWAP64 1
737
738
/* Define to 1 if your compiler understands __builtin_constant_p. */
739
#define HAVE__BUILTIN_CONSTANT_P 1
740
741
/* Define to 1 if your compiler understands __builtin_$op_overflow. */
742
#define HAVE__BUILTIN_OP_OVERFLOW 1
743
744
/* Define to 1 if your compiler understands __builtin_types_compatible_p. */
745
#define HAVE__BUILTIN_TYPES_COMPATIBLE_P 1
746
747
/* Define to 1 if your compiler understands __builtin_unreachable. */
748
#define HAVE__BUILTIN_UNREACHABLE 1
749
750
/* Define to 1 if you have the `_configthreadlocale' function. */
751
/* #undef HAVE__CONFIGTHREADLOCALE */
752
753
/* Define to 1 if you have __cpuid. */
754
/* #undef HAVE__CPUID */
755
756
/* Define to 1 if you have __get_cpuid. */
757
/* #undef HAVE__GET_CPUID */
758
759
/* Define to 1 if your compiler understands _Static_assert. */
760
#define HAVE__STATIC_ASSERT 1
761
762
/* Define to 1 if your compiler understands __VA_ARGS__ in macros. */
763
#define HAVE__VA_ARGS 1
764
765
/* Define to 1 if you have the `__strtoll' function. */
766
/* #undef HAVE___STRTOLL */
767
768
/* Define to 1 if you have the `__strtoull' function. */
769
/* #undef HAVE___STRTOULL */
770
771
/* Define to the appropriate printf length modifier for 64-bit ints. */
772
#define INT64_MODIFIER "l"
773
774
/* Define to 1 if `locale_t' requires <xlocale.h>. */
775
#define LOCALE_T_IN_XLOCALE 1
776
777
/* Define as the maximum alignment requirement of any C data type. */
778
46.5M
#define MAXIMUM_ALIGNOF 8
779
780
/* Define bytes to use libc memset(). */
781
221M
#define MEMSET_LOOP_LIMIT 1024
782
783
/* Define to the address where bug reports for this package should be sent. */
784
#define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org"
785
786
/* Define to the full name of this package. */
787
#define PACKAGE_NAME "PostgreSQL"
788
789
/* Define to the full name and version of this package. */
790
#define PACKAGE_STRING "PostgreSQL 11.2"
791
792
/* Define to the one symbol short name of this package. */
793
#define PACKAGE_TARNAME "postgresql"
794
795
/* Define to the home page for this package. */
796
#define PACKAGE_URL ""
797
798
/* Define to the version of this package. */
799
#define PACKAGE_VERSION "11.2"
800
801
/* Define to the name of a signed 128-bit integer type. */
802
#define PG_INT128_TYPE __int128
803
804
/* Define to the name of a signed 64-bit integer type. */
805
#define PG_INT64_TYPE long int
806
807
/* Define to the name of the default PostgreSQL service principal in Kerberos
808
   (GSSAPI). (--with-krb-srvnam=NAME) */
809
#define PG_KRB_SRVNAM "postgres"
810
811
/* PostgreSQL major version as a string */
812
107k
#define PG_MAJORVERSION "11"
813
814
/* Define to gnu_printf if compiler supports it, else printf. */
815
#define PG_PRINTF_ATTRIBUTE printf
816
817
/* PostgreSQL version as a string */
818
4.56k
#define PG_VERSION "11.2-YB-2.13.1.0-b0"
819
820
/* PostgreSQL version as a number */
821
907
#define PG_VERSION_NUM 110002
822
823
/* A string containing the version number, platform, and C compiler */
824
38
#define PG_VERSION_STR "PostgreSQL 11.2-YB-2.13.1.0-b0 on arm-apple-darwin21.3.0, compiled by Apple clang version 13.0.0 (clang-1300.0.29.30), 64-bit"
825
826
/* Define to 1 to allow profiling output to be saved separately for each
827
   process. */
828
/* #undef PROFILE_PID_DIR */
829
830
/* Define to necessary symbol if this constant uses a non-standard name on
831
   your system. */
832
/* #undef PTHREAD_CREATE_JOINABLE */
833
834
/* RELSEG_SIZE is the maximum number of blocks allowed in one disk file. Thus,
835
   the maximum size of a single file is RELSEG_SIZE * BLCKSZ; relations bigger
836
   than that are divided into multiple files. RELSEG_SIZE * BLCKSZ must be
837
   less than your OS' limit on file size. This is often 2 GB or 4GB in a
838
   32-bit operating system, unless you have large file support enabled. By
839
   default, we make the limit 1 GB to avoid any possible integer-overflow
840
   problems within the OS. A limit smaller than necessary only means we divide
841
   a large relation into more chunks than necessary, so it seems best to err
842
   in the direction of a small limit. A power-of-2 value is recommended to
843
   save a few cycles in md.c, but is not absolutely required. Changing
844
   RELSEG_SIZE requires an initdb. */
845
7.44k
#define RELSEG_SIZE 131072
846
847
/* The size of `bool', as computed by sizeof. */
848
#define SIZEOF_BOOL 1
849
850
/* The size of `long', as computed by sizeof. */
851
#define SIZEOF_LONG 8
852
853
/* The size of `off_t', as computed by sizeof. */
854
#define SIZEOF_OFF_T 8
855
856
/* The size of `size_t', as computed by sizeof. */
857
#define SIZEOF_SIZE_T 8
858
859
/* The size of `void *', as computed by sizeof. */
860
#define SIZEOF_VOID_P 8
861
862
/* Define to 1 if you have the ANSI C header files. */
863
#define STDC_HEADERS 1
864
865
/* Define to 1 if strerror_r() returns int. */
866
#define STRERROR_R_INT 1
867
868
/* Define to 1 if your <sys/time.h> declares `struct tm'. */
869
/* #undef TM_IN_SYS_TIME */
870
871
/* Define to 1 to use ARMv8 CRC Extension. */
872
#define USE_ARMV8_CRC32C 1
873
874
/* Define to 1 to use ARMv8 CRC Extension with a runtime check. */
875
/* #undef USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK */
876
877
/* Define to 1 to build with assertion checks. (--enable-cassert) */
878
#define USE_ASSERT_CHECKING 1
879
880
/* Define to 1 to build with Bonjour support. (--with-bonjour) */
881
/* #undef USE_BONJOUR */
882
883
/* Define to 1 to build with BSD Authentication support. (--with-bsd-auth) */
884
/* #undef USE_BSD_AUTH */
885
886
/* Define to use /dev/urandom for random number generation */
887
/* #undef USE_DEV_URANDOM */
888
889
/* Define to 1 if you want float4 values to be passed by value.
890
   (--enable-float4-byval) */
891
#define USE_FLOAT4_BYVAL 1
892
893
/* Define to 1 if you want float8, int8, etc values to be passed by value.
894
   (--enable-float8-byval) */
895
#define USE_FLOAT8_BYVAL 1
896
897
/* Define to build with ICU support. (--with-icu) */
898
#define USE_ICU 1
899
900
/* Define to 1 to build with LDAP support. (--with-ldap) */
901
#define USE_LDAP 1
902
903
/* Define to 1 to build with XML support. (--with-libxml) */
904
/* #undef USE_LIBXML */
905
906
/* Define to 1 to use XSLT support when building contrib/xml2.
907
   (--with-libxslt) */
908
/* #undef USE_LIBXSLT */
909
910
/* Define to 1 to build with LLVM based JIT support. (--with-llvm) */
911
/* #undef USE_LLVM */
912
913
/* Define to select named POSIX semaphores. */
914
/* #undef USE_NAMED_POSIX_SEMAPHORES */
915
916
/* Define to build with OpenSSL support. (--with-openssl) */
917
#define USE_OPENSSL 1
918
919
/* Define to use OpenSSL for random number generation */
920
#define USE_OPENSSL_RANDOM 1
921
922
/* Define to 1 to build with PAM support. (--with-pam) */
923
/* #undef USE_PAM */
924
925
/* Use replacement snprintf() functions. */
926
/* #undef USE_REPL_SNPRINTF */
927
928
/* Define to 1 to use software CRC-32C implementation (slicing-by-8). */
929
/* #undef USE_SLICING_BY_8_CRC32C */
930
931
/* Define to 1 use Intel SSE 4.2 CRC instructions. */
932
/* #undef USE_SSE42_CRC32C */
933
934
/* Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check. */
935
/* #undef USE_SSE42_CRC32C_WITH_RUNTIME_CHECK */
936
937
/* Define to build with systemd support. (--with-systemd) */
938
/* #undef USE_SYSTEMD */
939
940
/* Define to select SysV-style semaphores. */
941
#define USE_SYSV_SEMAPHORES 1
942
943
/* Define to select SysV-style shared memory. */
944
#define USE_SYSV_SHARED_MEMORY 1
945
946
/* Define to select unnamed POSIX semaphores. */
947
/* #undef USE_UNNAMED_POSIX_SEMAPHORES */
948
949
/* Define to use native Windows API for random number generation */
950
/* #undef USE_WIN32_RANDOM */
951
952
/* Define to select Win32-style semaphores. */
953
/* #undef USE_WIN32_SEMAPHORES */
954
955
/* Define to select Win32-style shared memory. */
956
/* #undef USE_WIN32_SHARED_MEMORY */
957
958
/* Define to 1 if `wcstombs_l' requires <xlocale.h>. */
959
#define WCSTOMBS_L_IN_XLOCALE 1
960
961
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
962
   significant byte first (like Motorola and SPARC, unlike Intel). */
963
#if defined AC_APPLE_UNIVERSAL_BUILD
964
# if defined __BIG_ENDIAN__
965
#  define WORDS_BIGENDIAN 1
966
# endif
967
#else
968
# ifndef WORDS_BIGENDIAN
969
/* #  undef WORDS_BIGENDIAN */
970
# endif
971
#endif
972
973
/* Size of a WAL file block. This need have no particular relation to BLCKSZ.
974
   XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
975
   XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
976
   buffers, else direct I/O may fail. Changing XLOG_BLCKSZ requires an initdb.
977
   */
978
5.67M
#define XLOG_BLCKSZ 8192
979
980
981
982
/* Number of bits in a file offset, on hosts where this is settable. */
983
/* #undef _FILE_OFFSET_BITS */
984
985
/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
986
/* #undef _LARGEFILE_SOURCE */
987
988
/* Define for large files, on AIX-style hosts. */
989
/* #undef _LARGE_FILES */
990
991
/* Define to `__inline__' or `__inline' if that's what the C compiler
992
   calls it, or to nothing if 'inline' is not supported under any name.  */
993
#ifndef __cplusplus
994
/* #undef inline */
995
#endif
996
997
/* Define to the type of a signed integer type wide enough to hold a pointer,
998
   if such a type exists, and if the system does not define it. */
999
/* #undef intptr_t */
1000
1001
/* Define to keyword to use for C99 restrict support, or to nothing if not
1002
   supported */
1003
#define pg_restrict __restrict
1004
1005
/* Define to the equivalent of the C99 'restrict' keyword, or to
1006
   nothing if this is not supported.  Do not define if restrict is
1007
   supported directly.  */
1008
#define restrict __restrict
1009
/* Work around a bug in Sun C++: it does not support _Restrict or
1010
   __restrict__, even though the corresponding Sun C compiler ends up with
1011
   "#define restrict _Restrict" or "#define restrict __restrict__" in the
1012
   previous line.  Perhaps some future version of Sun C++ will work with
1013
   restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */
1014
#if defined __SUNPRO_CC && !defined __RESTRICT
1015
# define _Restrict
1016
# define __restrict__
1017
#endif
1018
1019
/* Define to empty if the C compiler does not understand signed types. */
1020
/* #undef signed */
1021
1022
/* Define to how the compiler spells `typeof'. */
1023
#define typeof __typeof__
1024
1025
/* Define to the type of an unsigned integer type wide enough to hold a
1026
   pointer, if such a type exists, and if the system does not define it. */
1027
/* #undef uintptr_t */