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