1 dnl Process this file with autoconf to produce a configure script.
4 dnl Developers, please strive to achieve this order:
6 dnl 0. Initialization and options processing
12 dnl 6. Compiler characteristics
13 dnl 7. Functions, global variables
14 dnl 8. System services
16 dnl Read the Autoconf manual for details.
18 m4_pattern_forbid(^PGAC_)dnl to catch undefined macros
20 AC_INIT([PostgreSQL], [18devel], [pgsql-bugs@lists.postgresql.org], [], [https://www.postgresql.org/])
22 m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.69], [], [m4_fatal([Autoconf version 2.69 is required.
23 Untested combinations of 'autoconf' and PostgreSQL versions are not
24 recommended. You can remove the check from 'configure.ac' but it is then
25 your responsibility whether the result works or not.])])
26 AC_COPYRIGHT([Copyright (c) 1996-2024, PostgreSQL Global Development Group])
27 AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c])
28 AC_CONFIG_AUX_DIR(config)
29 AC_PREFIX_DEFAULT(/usr/local/pgsql)
30 AC_DEFINE_UNQUOTED(CONFIGURE_ARGS, ["$ac_configure_args"], [Saved arguments from configure])
32 [PG_MAJORVERSION=`expr "$PACKAGE_VERSION" : '\([0-9][0-9]*\)'`]
33 [PG_MINORVERSION=`expr "$PACKAGE_VERSION" : '.*\.\([0-9][0-9]*\)'`]
34 test -n "$PG_MINORVERSION" || PG_MINORVERSION=0
35 AC_SUBST(PG_MAJORVERSION)
36 AC_DEFINE_UNQUOTED(PG_MAJORVERSION, "$PG_MAJORVERSION", [PostgreSQL major version as a string])
37 AC_DEFINE_UNQUOTED(PG_MAJORVERSION_NUM, $PG_MAJORVERSION, [PostgreSQL major version number])
38 AC_DEFINE_UNQUOTED(PG_MINORVERSION_NUM, $PG_MINORVERSION, [PostgreSQL minor version number])
40 PGAC_ARG_REQ(with, extra-version, [STRING], [append STRING to version],
41 [PG_VERSION="$PACKAGE_VERSION$withval"],
42 [PG_VERSION="$PACKAGE_VERSION"])
43 AC_DEFINE_UNQUOTED(PG_VERSION, "$PG_VERSION", [PostgreSQL version as a string])
48 AC_MSG_CHECKING([which template to use])
50 PGAC_ARG_REQ(with, template, [NAME], [override operating system template],
53 list) echo; ls "$srcdir/src/template"; exit;;
54 *) if test -f "$srcdir/src/template/$with_template" ; then
57 AC_MSG_ERROR(['$withval' is not a valid template name. Use 'list' for a list.])
62 # --with-template not given
65 cygwin*|msys*) template=cygwin ;;
66 darwin*) template=darwin ;;
67 dragonfly*) template=netbsd ;;
68 freebsd*) template=freebsd ;;
69 linux*|gnu*|k*bsd*-gnu)
71 mingw*) template=win32 ;;
72 netbsd*) template=netbsd ;;
73 openbsd*) template=openbsd ;;
74 solaris*) template=solaris ;;
77 if test x"$template" = x"" ; then
79 *******************************************************************
80 PostgreSQL has apparently not been ported to your platform yet.
81 To try a manual configuration, look into the src/template directory
82 for a similar platform and use the '--with-template=' option.
84 Please also contact <]AC_PACKAGE_BUGREPORT[> to see about
85 rectifying this. Include the above 'checking host system type...'
87 *******************************************************************
93 AC_MSG_RESULT([$template])
98 # Initialize default assumption that we do not need separate assembly code
99 # for TAS (test-and-set). This can be overridden by the template file
100 # when it's executed.
104 # Default, works for most platforms, override in template file if needed
110 ## Command line options
114 # Add non-standard directories to the include path
116 PGAC_ARG_REQ(with, includes, [DIRS], [look for additional header files in DIRS])
120 # Add non-standard directories to the library search path
122 PGAC_ARG_REQ(with, libraries, [DIRS], [look for additional libraries in DIRS],
123 [LIBRARY_DIRS=$withval])
125 PGAC_ARG_REQ(with, libs, [DIRS], [alternative spelling of --with-libraries],
126 [LIBRARY_DIRS=$withval])
130 # 64-bit integer date/time storage is now the only option, but to avoid
131 # unnecessary breakage of build scripts, continue to accept an explicit
132 # "--enable-integer-datetimes" switch.
134 PGAC_ARG_BOOL(enable, integer-datetimes, yes, [obsolete option, no longer supported],
136 [AC_MSG_ERROR([--disable-integer-datetimes is no longer supported])])
142 AC_MSG_CHECKING([whether NLS is wanted])
143 PGAC_ARG_OPTARG(enable, nls,
144 [LANGUAGES], [enable Native Language Support],
146 [WANTED_LANGUAGES=$enableval],
147 [AC_DEFINE(ENABLE_NLS, 1,
148 [Define to 1 if you want National Language Support. (--enable-nls)])])
149 AC_MSG_RESULT([$enable_nls])
151 AC_SUBST(WANTED_LANGUAGES)
154 # Default port number (--with-pgport), default 5432
156 AC_MSG_CHECKING([for default port number])
157 PGAC_ARG_REQ(with, pgport, [PORTNUM], [set default port number [5432]],
158 [default_port=$withval],
160 AC_MSG_RESULT([$default_port])
161 # Need both of these because some places want an integer and some a string
162 AC_DEFINE_UNQUOTED(DEF_PGPORT, ${default_port},
163 [Define to the default TCP port number on which the server listens and
164 to which clients will try to connect. This can be overridden at run-time,
165 but it's convenient if your clients have the right default compiled in.
166 (--with-pgport=PORTNUM)])
167 AC_DEFINE_UNQUOTED(DEF_PGPORT_STR, "${default_port}",
168 [Define to the default TCP port number as a string constant.])
169 AC_SUBST(default_port)
171 # It's worth validating port; you can get very confusing errors otherwise
172 if test x"$default_port" = x""; then
173 AC_MSG_ERROR([invalid --with-pgport specification: empty string])
174 elif test ! x`echo "$default_port" | sed -e 's/[[0-9]]*//'` = x""; then
175 AC_MSG_ERROR([invalid --with-pgport specification: must be a number])
176 elif test ! x`echo "$default_port" | sed -e 's/^0.//'` = x"$default_port"; then
177 AC_MSG_ERROR([invalid --with-pgport specification: must not have leading 0])
178 elif test "$default_port" -lt "1" -o "$default_port" -gt "65535"; then
179 AC_MSG_ERROR([invalid --with-pgport specification: must be between 1 and 65535])
183 # '-rpath'-like feature can be disabled
185 PGAC_ARG_BOOL(enable, rpath, yes,
186 [do not embed shared library search path in executables])
187 AC_SUBST(enable_rpath)
190 # --enable-debug adds -g to compiler flags
192 PGAC_ARG_BOOL(enable, debug, no,
193 [build with debugging symbols (-g)])
194 AC_SUBST(enable_debug)
197 # --enable-profiling enables gcc profiling
199 PGAC_ARG_BOOL(enable, profiling, no,
200 [build with profiling enabled ])
203 # --enable-coverage enables generation of code coverage metrics with gcov
205 PGAC_ARG_BOOL(enable, coverage, no,
206 [build with coverage testing instrumentation],
207 [PGAC_PATH_PROGS(GCOV, gcov)
208 if test -z "$GCOV"; then
209 AC_MSG_ERROR([gcov not found])
211 PGAC_PATH_PROGS(LCOV, lcov)
212 if test -z "$LCOV"; then
213 AC_MSG_ERROR([lcov not found])
215 PGAC_PATH_PROGS(GENHTML, genhtml)
216 if test -z "$GENHTML"; then
217 AC_MSG_ERROR([genhtml not found])
219 AC_SUBST(enable_coverage)
224 PGAC_ARG_BOOL(enable, dtrace, no,
225 [build with DTrace support],
226 [PGAC_PATH_PROGS(DTRACE, dtrace)
227 if test -z "$DTRACE"; then
228 AC_MSG_ERROR([dtrace not found])
230 AC_SUBST(DTRACEFLAGS)])
231 AC_SUBST(enable_dtrace)
236 PGAC_ARG_BOOL(enable, tap-tests, no,
237 [enable TAP tests (requires Perl and IPC::Run)])
238 AC_SUBST(enable_tap_tests)
243 PGAC_ARG_BOOL(enable, injection-points, no, [enable injection points (for testing)],
244 [AC_DEFINE([USE_INJECTION_POINTS], 1, [Define to 1 to build with injection points. (--enable-injection-points)])])
245 AC_SUBST(enable_injection_points)
250 AC_MSG_CHECKING([for block size])
251 PGAC_ARG_REQ(with, blocksize, [BLOCKSIZE], [set table block size in kB [8]],
252 [blocksize=$withval],
261 *) AC_MSG_ERROR([Invalid block size. Allowed values are 1,2,4,8,16,32.])
263 AC_MSG_RESULT([${blocksize}kB])
265 AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
266 Size of a disk block --- this also limits the size of a tuple. You
267 can set it bigger if you need bigger tuples (although TOAST should
268 reduce the need to have large tuples, since fields can be spread
269 across multiple tuples).
271 BLCKSZ must be a power of 2. The maximum possible value of BLCKSZ
272 is currently 2^15 (32768). This is determined by the 15-bit widths
273 of the lp_off and lp_len fields in ItemIdData (see
274 include/storage/itemid.h).
276 Changing BLCKSZ requires an initdb.
280 # Relation segment size
282 PGAC_ARG_REQ(with, segsize, [SEGSIZE], [set table segment size in GB [1]],
285 PGAC_ARG_REQ(with, segsize-blocks, [SEGSIZE_BLOCKS], [set table segment size in blocks [0]],
286 [segsize_blocks=$withval],
289 # If --with-segsize-blocks is non-zero, it is used, --with-segsize
290 # otherwise. segsize-blocks is only really useful for developers wanting to
291 # test segment related code. Warn if both are used.
292 if test $segsize_blocks -ne 0 -a $segsize -ne 1; then
293 AC_MSG_WARN([both --with-segsize and --with-segsize-blocks specified, --with-segsize-blocks wins])
296 AC_MSG_CHECKING([for segment size])
297 if test $segsize_blocks -eq 0; then
298 # this expression is set up to avoid unnecessary integer overflow
299 # blocksize is already guaranteed to be a factor of 1024
300 RELSEG_SIZE=`expr '(' 1024 / ${blocksize} ')' '*' ${segsize} '*' 1024`
301 test $? -eq 0 || exit 1
302 AC_MSG_RESULT([${segsize}GB])
304 RELSEG_SIZE=$segsize_blocks
305 AC_MSG_RESULT([${RELSEG_SIZE} blocks])
308 AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
309 RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
310 Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
311 relations bigger than that are divided into multiple files.
313 RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
314 This is often 2 GB or 4GB in a 32-bit operating system, unless you
315 have large file support enabled. By default, we make the limit 1 GB
316 to avoid any possible integer-overflow problems within the OS.
317 A limit smaller than necessary only means we divide a large
318 relation into more chunks than necessary, so it seems best to err
319 in the direction of a small limit.
321 A power-of-2 value is recommended to save a few cycles in md.c,
322 but is not absolutely required.
324 Changing RELSEG_SIZE requires an initdb.
330 AC_MSG_CHECKING([for WAL block size])
331 PGAC_ARG_REQ(with, wal-blocksize, [BLOCKSIZE], [set WAL block size in kB [8]],
332 [wal_blocksize=$withval],
334 case ${wal_blocksize} in
335 1) XLOG_BLCKSZ=1024;;
336 2) XLOG_BLCKSZ=2048;;
337 4) XLOG_BLCKSZ=4096;;
338 8) XLOG_BLCKSZ=8192;;
339 16) XLOG_BLCKSZ=16384;;
340 32) XLOG_BLCKSZ=32768;;
341 64) XLOG_BLCKSZ=65536;;
342 *) AC_MSG_ERROR([Invalid WAL block size. Allowed values are 1,2,4,8,16,32,64.])
344 AC_MSG_RESULT([${wal_blocksize}kB])
346 AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
347 Size of a WAL file block. This need have no particular relation to BLCKSZ.
348 XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
349 XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
350 buffers, else direct I/O may fail.
352 Changing XLOG_BLCKSZ requires an initdb.
359 # If you don't specify a list of compilers to test, the AC_PROG_CC and
360 # AC_PROG_CXX macros test for a long list of unsupported compilers.
361 pgac_cc_list="gcc cc"
362 pgac_cxx_list="g++ c++"
364 AC_PROG_CC([$pgac_cc_list])
367 # Error out if the compiler does not support C99, as the codebase
369 if test "$ac_cv_prog_cc_c99" = no; then
370 AC_MSG_ERROR([C compiler "$CC" does not support C99])
373 AC_PROG_CXX([$pgac_cxx_list])
375 # Check if it's Intel's compiler, which (usually) pretends to be gcc,
376 # but has idiosyncrasies of its own. We assume icc will define
377 # __INTEL_COMPILER regardless of CFLAGS.
378 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __INTEL_COMPILER
380 @%:@endif])], [ICC=yes], [ICC=no])
382 # Check if it's Sun Studio compiler. We assume that
383 # __SUNPRO_C will be defined for Sun Studio compilers
384 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __SUNPRO_C
386 @%:@endif])], [SUN_STUDIO_CC=yes], [SUN_STUDIO_CC=no])
388 AC_SUBST(SUN_STUDIO_CC)
394 # Checked early because subsequent tests depend on it.
395 PGAC_ARG_BOOL(with, llvm, no, [build with LLVM based JIT support],
396 [AC_DEFINE([USE_LLVM], 1, [Define to 1 to build with LLVM based JIT support. (--with-llvm)])])
398 dnl must use AS_IF here, else AC_REQUIRES inside PGAC_LLVM_SUPPORT malfunctions
399 AS_IF([test "$with_llvm" = yes], [
410 . "$srcdir/src/template/$template" || exit
412 # C[XX]FLAGS are selected so:
413 # If the user specifies something in the environment, that is used.
414 # else: If the template file set something, that is used.
415 # else: If coverage was enabled, don't set anything.
416 # else: If the compiler is GCC, then we use -O2.
417 # else: If the compiler is something else, then we use -O, unless debugging.
419 if test "$ac_env_CFLAGS_set" = set; then
420 CFLAGS=$ac_env_CFLAGS_value
421 elif test "${CFLAGS+set}" = set; then
422 : # (keep what template set)
423 elif test "$enable_coverage" = yes; then
424 : # no optimization by default
425 elif test "$GCC" = yes; then
428 # if the user selected debug mode, don't use -O
429 if test "$enable_debug" != yes; then
434 if test "$ac_env_CXXFLAGS_set" = set; then
435 CXXFLAGS=$ac_env_CXXFLAGS_value
436 elif test "${CXXFLAGS+set}" = set; then
437 : # (keep what template set)
438 elif test "$enable_coverage" = yes; then
439 : # no optimization by default
440 elif test "$GCC" = yes; then
443 # if the user selected debug mode, don't use -O
444 if test "$enable_debug" != yes; then
449 # When generating bitcode (for inlining) we always want to use -O2
450 # even when --enable-debug is specified. The bitcode is not going to
451 # be used for line-by-line debugging, and JIT inlining doesn't work
452 # without at least -O1 (otherwise clang will emit 'noinline'
453 # attributes everywhere), which is bad for testing. Still allow the
454 # environment to override if done explicitly.
455 if test "$ac_env_BITCODE_CFLAGS_set" = set; then
456 BITCODE_CFLAGS=$ac_env_BITCODE_CFLAGS_value
458 BITCODE_CFLAGS="-O2 $BITCODE_CFLAGS"
460 if test "$ac_env_BITCODE_CXXFLAGS_set" = set; then
461 BITCODE_CXXFLAGS=$ac_env_BITCODE_CXXFLAGS_value
463 BITCODE_CXXFLAGS="-O2 $BITCODE_CXXFLAGS"
466 # C[XX]FLAGS we determined above will be added back at the end
469 user_CXXFLAGS=$CXXFLAGS
471 user_BITCODE_CFLAGS=$BITCODE_CFLAGS
473 user_BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS
476 # set CFLAGS_UNROLL_LOOPS and CFLAGS_VECTORIZE from the environment, if present
477 if test "$ac_env_CFLAGS_UNROLL_LOOPS_set" = set; then
478 CFLAGS_UNROLL_LOOPS=$ac_env_CFLAGS_UNROLL_LOOPS_value
480 if test "$ac_env_CFLAGS_VECTORIZE_set" = set; then
481 CFLAGS_VECTORIZE=$ac_env_CFLAGS_VECTORIZE_value
484 # Some versions of GCC support some additional useful warning flags.
485 # Check whether they are supported, and add them to CFLAGS if so.
486 # ICC pretends to be GCC but it's lying; it doesn't support these flags,
487 # but has its own. Also check other compiler-specific flags here.
489 if test "$GCC" = yes -a "$ICC" = no; then
490 CFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith"
491 CXXFLAGS="-Wall -Wpointer-arith"
492 # These work in some but not all gcc versions
494 PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
495 # -Wdeclaration-after-statement isn't applicable for C++. Specific C files
496 # disable it, so AC_SUBST the negative form.
497 PERMIT_DECLARATION_AFTER_STATEMENT=
498 if test x"$save_CFLAGS" != x"$CFLAGS"; then
499 PERMIT_DECLARATION_AFTER_STATEMENT=-Wno-declaration-after-statement
501 AC_SUBST(PERMIT_DECLARATION_AFTER_STATEMENT)
502 # Really don't want VLAs to be used in our dialect of C
503 PGAC_PROG_CC_CFLAGS_OPT([-Werror=vla])
504 # On macOS, complain about usage of symbols newer than the deployment target
505 PGAC_PROG_CC_CFLAGS_OPT([-Werror=unguarded-availability-new])
506 PGAC_PROG_CXX_CFLAGS_OPT([-Werror=unguarded-availability-new])
507 # -Wvla is not applicable for C++
508 PGAC_PROG_CC_CFLAGS_OPT([-Wendif-labels])
509 PGAC_PROG_CXX_CFLAGS_OPT([-Wendif-labels])
510 PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-format-attribute])
511 PGAC_PROG_CXX_CFLAGS_OPT([-Wmissing-format-attribute])
512 PGAC_PROG_CC_CFLAGS_OPT([-Wimplicit-fallthrough=3])
513 PGAC_PROG_CXX_CFLAGS_OPT([-Wimplicit-fallthrough=3])
514 PGAC_PROG_CC_CFLAGS_OPT([-Wcast-function-type])
515 PGAC_PROG_CXX_CFLAGS_OPT([-Wcast-function-type])
516 PGAC_PROG_CC_CFLAGS_OPT([-Wshadow=compatible-local])
517 PGAC_PROG_CXX_CFLAGS_OPT([-Wshadow=compatible-local])
518 # This was included in -Wall/-Wformat in older GCC versions
519 PGAC_PROG_CC_CFLAGS_OPT([-Wformat-security])
520 PGAC_PROG_CXX_CFLAGS_OPT([-Wformat-security])
521 # gcc 14+, clang for a while
522 # (Supported in C++ by clang but not gcc. For consistency, omit in C++.)
524 PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-variable-declarations])
525 PERMIT_MISSING_VARIABLE_DECLARATIONS=
526 if test x"$save_CFLAGS" != x"$CFLAGS"; then
527 PERMIT_MISSING_VARIABLE_DECLARATIONS=-Wno-missing-variable-declarations
529 AC_SUBST(PERMIT_MISSING_VARIABLE_DECLARATIONS)
530 # Disable strict-aliasing rules; needed for gcc 3.3+
531 PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
532 PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
533 # Disable optimizations that assume no overflow; needed for gcc 4.3+
534 PGAC_PROG_CC_CFLAGS_OPT([-fwrapv])
535 PGAC_PROG_CXX_CFLAGS_OPT([-fwrapv])
536 # Disable FP optimizations that cause various errors on gcc 4.5+ or maybe 4.6+
537 PGAC_PROG_CC_CFLAGS_OPT([-fexcess-precision=standard])
538 PGAC_PROG_CXX_CFLAGS_OPT([-fexcess-precision=standard])
539 # Optimization flags for specific files that benefit from loop unrolling
540 PGAC_PROG_CC_VAR_OPT(CFLAGS_UNROLL_LOOPS, [-funroll-loops])
541 # Optimization flags for specific files that benefit from vectorization
542 PGAC_PROG_CC_VAR_OPT(CFLAGS_VECTORIZE, [-ftree-vectorize])
544 # The following tests want to suppress various unhelpful warnings by adding
545 # -Wno-foo switches. But gcc won't complain about unrecognized -Wno-foo
546 # switches, so we have to test for the positive form and if that works,
547 # add the negative form. Note that tests of this form typically need to
548 # be duplicated in the BITCODE_CFLAGS setup stanza below.
550 # Suppress clang's unhelpful unused-command-line-argument warnings.
552 PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wunused-command-line-argument])
553 if test -n "$NOT_THE_CFLAGS"; then
554 CFLAGS="$CFLAGS -Wno-unused-command-line-argument"
556 # Remove clang 12+'s compound-token-split-by-macro, as this causes a lot
557 # of warnings when building plperl because of usages in the Perl headers.
559 PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
560 if test -n "$NOT_THE_CFLAGS"; then
561 CFLAGS="$CFLAGS -Wno-compound-token-split-by-macro"
563 # Similarly disable useless truncation warnings from gcc 8+
565 PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wformat-truncation])
566 if test -n "$NOT_THE_CFLAGS"; then
567 CFLAGS="$CFLAGS -Wno-format-truncation"
570 PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wstringop-truncation])
571 if test -n "$NOT_THE_CFLAGS"; then
572 CFLAGS="$CFLAGS -Wno-stringop-truncation"
574 # Suppress clang 16's strict warnings about function casts
576 PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wcast-function-type-strict])
577 if test -n "$NOT_THE_CFLAGS"; then
578 CFLAGS="$CFLAGS -Wno-cast-function-type-strict"
580 elif test "$ICC" = yes; then
581 # Intel's compiler has a bug/misoptimization in checking for
582 # division by NAN (NaN == 0), -mp1 fixes it, so add it to the CFLAGS.
583 PGAC_PROG_CC_CFLAGS_OPT([-mp1])
584 PGAC_PROG_CXX_CFLAGS_OPT([-mp1])
585 # Make sure strict aliasing is off (though this is said to be the default)
586 PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
587 PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
590 # If the compiler knows how to hide symbols, add the switch needed for that to
591 # CFLAGS_SL_MODULE and define HAVE_VISIBILITY_ATTRIBUTE.
593 # This is done separately from the above because -fvisibility is supported by
594 # quite a few different compilers, making the required repetition bothersome.
596 # We might need to add a separate test to check if
597 # __attribute__((visibility("hidden"))) is supported, if we encounter a
598 # compiler that supports one of the supported variants of -fvisibility=hidden
599 # but uses a different syntax to mark a symbol as exported.
600 if test "$GCC" = yes -o "$SUN_STUDIO_CC" = yes ; then
601 PGAC_PROG_CC_VAR_OPT(CFLAGS_SL_MODULE, [-fvisibility=hidden])
602 # For C++ we additionally want -fvisibility-inlines-hidden
603 PGAC_PROG_VARCXX_VARFLAGS_OPT(CXX, CXXFLAGS_SL_MODULE, [-fvisibility=hidden])
604 PGAC_PROG_VARCXX_VARFLAGS_OPT(CXX, CXXFLAGS_SL_MODULE, [-fvisibility-inlines-hidden])
605 have_visibility_attribute=$pgac_cv_prog_CC_cflags__fvisibility_hidden
608 if test "$have_visibility_attribute" = "yes"; then
609 AC_DEFINE([HAVE_VISIBILITY_ATTRIBUTE], 1,
610 [Define to 1 if your compiler knows the visibility("hidden") attribute.])
613 AC_SUBST(CFLAGS_UNROLL_LOOPS)
614 AC_SUBST(CFLAGS_VECTORIZE)
615 AC_SUBST(CFLAGS_SL_MODULE)
616 AC_SUBST(CXXFLAGS_SL_MODULE)
618 # Determine flags used to emit bitcode for JIT inlining.
619 # 1. We must duplicate any behaviour-changing compiler flags used above,
620 # to keep compatibility with the compiler used for normal Postgres code.
621 # 2. We don't bother to duplicate extra-warnings switches --- seeing a
622 # warning in the main build is enough.
623 # 3. But we must duplicate -Wno-warning flags, else we'll see those anyway.
624 if test "$with_llvm" = yes ; then
625 CLANGXX="$CLANG -xc++"
627 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fno-strict-aliasing])
628 PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fno-strict-aliasing])
629 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fwrapv])
630 PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fwrapv])
631 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fexcess-precision=standard])
632 PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fexcess-precision=standard])
635 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wunused-command-line-argument])
636 if test -n "$NOT_THE_CFLAGS"; then
637 BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-unused-command-line-argument"
640 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
641 if test -n "$NOT_THE_CFLAGS"; then
642 BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-compound-token-split-by-macro"
645 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wformat-truncation])
646 if test -n "$NOT_THE_CFLAGS"; then
647 BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-format-truncation"
650 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wstringop-truncation])
651 if test -n "$NOT_THE_CFLAGS"; then
652 BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-stringop-truncation"
656 # supply -g if --enable-debug
657 if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
661 if test "$enable_debug" = yes && test "$ac_cv_prog_cxx_g" = yes; then
662 CXXFLAGS="$CXXFLAGS -g"
665 # enable code coverage if --enable-coverage
666 if test "$enable_coverage" = yes; then
667 if test "$GCC" = yes; then
668 CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
669 CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
671 AC_MSG_ERROR([--enable-coverage is supported only when using GCC])
675 # enable profiling if --enable-profiling
676 if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
677 if test "$GCC" = yes; then
678 AC_DEFINE([PROFILE_PID_DIR], 1,
679 [Define to 1 to allow profiling output to be saved separately for each process.])
680 CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
681 CXXFLAGS="$CXXFLAGS -pg $PLATFORM_PROFILE_FLAGS"
683 AC_MSG_ERROR([--enable-profiling is supported only when using GCC])
687 # On Solaris, we need this #define to get POSIX-conforming versions
688 # of many interfaces (sigwait, getpwuid_r, ...).
689 if test "$PORTNAME" = "solaris"; then
690 CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
693 # We already have this in Makefile.win32, but configure needs it too
694 if test "$PORTNAME" = "win32"; then
695 CPPFLAGS="$CPPFLAGS -I$srcdir/src/include/port/win32"
698 # Now that we're done automatically adding stuff to C[XX]FLAGS, put back the
699 # user-specified flags (if any) at the end. This lets users override
700 # the automatic additions.
701 CFLAGS="$CFLAGS $user_CFLAGS"
702 CXXFLAGS="$CXXFLAGS $user_CXXFLAGS"
703 BITCODE_CFLAGS="$BITCODE_CFLAGS $user_BITCODE_CFLAGS"
704 BITCODE_CXXFLAGS="$BITCODE_CXXFLAGS $user_BITCODE_CXXFLAGS"
706 AC_SUBST(BITCODE_CFLAGS)
707 AC_SUBST(BITCODE_CXXFLAGS)
709 # The template file must set up CFLAGS_SL; we don't support user override
712 # Check if the compiler still works with the final flag settings
713 # (note, we're not checking that for CXX, which is optional)
714 AC_MSG_CHECKING([whether the C compiler still works])
715 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
716 [AC_MSG_RESULT(yes)],
718 AC_MSG_ERROR([cannot proceed])])
720 # Defend against gcc -ffast-math
721 if test "$GCC" = yes; then
722 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifdef __FAST_MATH__
724 @%:@endif])], [], [AC_MSG_ERROR([do not put -ffast-math in CFLAGS])])
727 # Defend against clang being used on x86-32 without SSE2 enabled. As current
728 # versions of clang do not understand -fexcess-precision=standard, the use of
729 # x87 floating point operations leads to problems like isinf possibly returning
730 # false for a value that is infinite when converted from the 80bit register to
731 # the 8byte memory representation.
733 # Only perform the test if the compiler doesn't understand
734 # -fexcess-precision=standard, that way a potentially fixed compiler will work
736 if test "$pgac_cv_prog_CC_cflags__fexcess_precision_standard" = no; then
737 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
738 @%:@if defined(__clang__) && defined(__i386__) && !defined(__SSE2_MATH__)
742 [AC_MSG_ERROR([Compiling PostgreSQL with clang, on 32bit x86, requires SSE2 support. Use -msse2 or use gcc.])])
750 # Set up TAS assembly code if needed; the template file has now had its
751 # chance to request this.
753 AC_CONFIG_LINKS([src/backend/port/tas.s:src/backend/port/tas/${tas_file}])
755 if test "$need_tas" = yes ; then
762 AC_SUBST(DLSUFFIX)dnl
763 AC_DEFINE_UNQUOTED([DLSUFFIX], ["$DLSUFFIX"],
764 [Define to the file name extension of dynamically-loadable modules.])
767 # Set up pkg_config in case we need it below
772 # Automatic dependency tracking
774 PGAC_ARG_BOOL(enable, depend, no, [turn on automatic dependency tracking],
780 # Enable assert checks
782 PGAC_ARG_BOOL(enable, cassert, no, [enable assertion checks (for debugging)],
783 [AC_DEFINE([USE_ASSERT_CHECKING], 1,
784 [Define to 1 to build with assertion checks. (--enable-cassert)])])
788 # Include directories
791 IFS="${IFS}${PATH_SEPARATOR}"
792 # SRCH_INC comes from the template file
793 for dir in $with_includes $SRCH_INC; do
794 if test -d "$dir"; then
795 INCLUDES="$INCLUDES -I$dir"
797 AC_MSG_WARN([*** Include directory $dir does not exist.])
805 # Library directories
808 IFS="${IFS}${PATH_SEPARATOR}"
809 # LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
810 for dir in $LIBRARY_DIRS $SRCH_LIB; do
811 if test -d "$dir"; then
812 LIBDIRS="$LIBDIRS -L$dir"
814 AC_MSG_WARN([*** Library directory $dir does not exist.])
822 AC_MSG_CHECKING([whether to build with ICU support])
823 PGAC_ARG_BOOL(with, icu, yes, [build without ICU support],
824 [AC_DEFINE([USE_ICU], 1, [Define to build with ICU support. (--with-icu)])])
825 AC_MSG_RESULT([$with_icu])
828 if test "$with_icu" = yes; then
829 PKG_CHECK_MODULES(ICU, icu-uc icu-i18n)
833 # Optionally build Tcl modules (PL/Tcl)
835 AC_MSG_CHECKING([whether to build with Tcl])
836 PGAC_ARG_BOOL(with, tcl, no, [build Tcl modules (PL/Tcl)])
837 AC_MSG_RESULT([$with_tcl])
840 # We see if the path to the Tcl/Tk configuration scripts is specified.
841 # This will override the use of tclsh to find the paths to search.
843 PGAC_ARG_REQ(with, tclconfig, [DIR], [tclConfig.sh is in DIR])
846 # Optionally build Perl modules (PL/Perl)
848 AC_MSG_CHECKING([whether to build Perl modules])
849 PGAC_ARG_BOOL(with, perl, no, [build Perl modules (PL/Perl)])
850 AC_MSG_RESULT([$with_perl])
854 # Optionally build Python modules (PL/Python)
856 AC_MSG_CHECKING([whether to build Python modules])
857 PGAC_ARG_BOOL(with, python, no, [build Python modules (PL/Python)])
858 AC_MSG_RESULT([$with_python])
859 AC_SUBST(with_python)
864 AC_MSG_CHECKING([whether to build with GSSAPI support])
865 PGAC_ARG_BOOL(with, gssapi, no, [build with GSSAPI support],
867 AC_DEFINE(ENABLE_GSS, 1, [Define to build with GSSAPI support. (--with-gssapi)])
868 krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
870 AC_MSG_RESULT([$with_gssapi])
871 AC_SUBST(with_gssapi)
878 # Kerberos configuration parameters
880 PGAC_ARG_REQ(with, krb-srvnam,
881 [NAME], [default service principal name in Kerberos (GSSAPI) [postgres]],
883 [with_krb_srvnam="postgres"])
884 AC_SUBST(with_krb_srvnam)
885 AC_DEFINE_UNQUOTED([PG_KRB_SRVNAM], ["$with_krb_srvnam"],
886 [Define to the name of the default PostgreSQL service principal in Kerberos (GSSAPI). (--with-krb-srvnam=NAME)])
892 AC_MSG_CHECKING([whether to build with PAM support])
893 PGAC_ARG_BOOL(with, pam, no,
894 [build with PAM support],
895 [AC_DEFINE([USE_PAM], 1, [Define to 1 to build with PAM support. (--with-pam)])])
896 AC_MSG_RESULT([$with_pam])
902 AC_MSG_CHECKING([whether to build with BSD Authentication support])
903 PGAC_ARG_BOOL(with, bsd-auth, no,
904 [build with BSD Authentication support],
905 [AC_DEFINE([USE_BSD_AUTH], 1, [Define to 1 to build with BSD Authentication support. (--with-bsd-auth)])])
906 AC_MSG_RESULT([$with_bsd_auth])
912 AC_MSG_CHECKING([whether to build with LDAP support])
913 PGAC_ARG_BOOL(with, ldap, no,
914 [build with LDAP support],
915 [AC_DEFINE([USE_LDAP], 1, [Define to 1 to build with LDAP support. (--with-ldap)])])
916 AC_MSG_RESULT([$with_ldap])
923 AC_MSG_CHECKING([whether to build with Bonjour support])
924 PGAC_ARG_BOOL(with, bonjour, no,
925 [build with Bonjour support],
926 [AC_DEFINE([USE_BONJOUR], 1, [Define to 1 to build with Bonjour support. (--with-bonjour)])])
927 AC_MSG_RESULT([$with_bonjour])
933 AC_MSG_CHECKING([whether to build with SELinux support])
934 PGAC_ARG_BOOL(with, selinux, no, [build with SELinux support])
935 AC_SUBST(with_selinux)
936 AC_MSG_RESULT([$with_selinux])
941 AC_MSG_CHECKING([whether to build with systemd support])
942 PGAC_ARG_BOOL(with, systemd, no, [build with systemd support],
943 [AC_DEFINE([USE_SYSTEMD], 1, [Define to build with systemd support. (--with-systemd)])])
944 AC_SUBST(with_systemd)
945 AC_MSG_RESULT([$with_systemd])
950 PGAC_ARG_BOOL(with, readline, yes,
951 [do not use GNU Readline nor BSD Libedit for editing])
952 # readline on MinGW has problems with backslashes in psql and other bugs.
953 # This is particularly a problem with non-US code pages.
954 # Therefore disable its use until we understand the cause. 2004-07-20
955 if test "$PORTNAME" = "win32"; then
956 if test "$with_readline" = yes; then
957 AC_MSG_WARN([*** Readline does not work on MinGW --- disabling])
961 AC_SUBST(with_readline)
967 PGAC_ARG_BOOL(with, libedit-preferred, no,
968 [prefer BSD Libedit over GNU Readline])
974 # There are at least three UUID libraries in common use: the FreeBSD/NetBSD
975 # library, the e2fsprogs libuuid (now part of util-linux-ng), and the OSSP
976 # UUID library. More than one of these might be present on a given platform,
977 # so we make the user say which one she wants.
979 PGAC_ARG_REQ(with, uuid, [LIB], [build contrib/uuid-ossp using LIB (bsd,e2fs,ossp)])
980 if test x"$with_uuid" = x"" ; then
983 PGAC_ARG_BOOL(with, ossp-uuid, no, [obsolete spelling of --with-uuid=ossp])
984 if test "$with_ossp_uuid" = yes ; then
988 if test "$with_uuid" != no ; then
989 if test "$with_uuid" = bsd ; then
990 AC_DEFINE([HAVE_UUID_BSD], 1, [Define to 1 if you have BSD UUID support.])
991 elif test "$with_uuid" = e2fs ; then
992 AC_DEFINE([HAVE_UUID_E2FS], 1, [Define to 1 if you have E2FS UUID support.])
993 elif test "$with_uuid" = ossp ; then
994 AC_DEFINE([HAVE_UUID_OSSP], 1, [Define to 1 if you have OSSP UUID support.])
996 AC_MSG_ERROR([--with-uuid must specify one of bsd, e2fs, or ossp])
1005 AC_MSG_CHECKING([whether to build with XML support])
1006 PGAC_ARG_BOOL(with, libxml, no, [build with XML support],
1007 [AC_DEFINE([USE_LIBXML], 1, [Define to 1 to build with XML support. (--with-libxml)])])
1008 AC_MSG_RESULT([$with_libxml])
1009 AC_SUBST(with_libxml)
1011 if test "$with_libxml" = yes ; then
1012 # Check pkg-config, then xml2-config. But for backwards compatibility,
1013 # setting XML2_CONFIG overrides pkg-config.
1014 AC_ARG_VAR(XML2_CONFIG, [path to xml2-config utility])dnl
1015 have_libxml2_pkg_config=no
1016 if test -z "$XML2_CONFIG" -a -n "$PKG_CONFIG"; then
1017 PKG_CHECK_MODULES(XML2, [libxml-2.0 >= 2.6.23],
1018 [have_libxml2_pkg_config=yes], [# do nothing])
1020 if test "$have_libxml2_pkg_config" = no ; then
1021 PGAC_PATH_PROGS(XML2_CONFIG, xml2-config)
1022 if test -n "$XML2_CONFIG"; then
1023 XML2_CFLAGS=`$XML2_CONFIG --cflags`
1024 XML2_LIBS=`$XML2_CONFIG --libs`
1027 # Note the user could also set XML2_CFLAGS/XML2_LIBS directly
1028 for pgac_option in $XML2_CFLAGS; do
1029 case $pgac_option in
1030 -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1033 for pgac_option in $XML2_LIBS; do
1034 case $pgac_option in
1035 -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1044 PGAC_ARG_BOOL(with, libxslt, no, [use XSLT support when building contrib/xml2],
1045 [AC_DEFINE([USE_LIBXSLT], 1, [Define to 1 to use XSLT support when building contrib/xml2. (--with-libxslt)])])
1048 AC_SUBST(with_libxslt)
1053 PGAC_ARG_REQ(with, system-tzdata,
1054 [DIR], [use system time zone data in DIR])
1055 AC_SUBST(with_system_tzdata)
1060 PGAC_ARG_BOOL(with, zlib, yes,
1067 AC_MSG_CHECKING([whether to build with LZ4 support])
1068 PGAC_ARG_BOOL(with, lz4, no, [build with LZ4 support],
1069 [AC_DEFINE([USE_LZ4], 1, [Define to 1 to build with LZ4 support. (--with-lz4)])])
1070 AC_MSG_RESULT([$with_lz4])
1073 if test "$with_lz4" = yes; then
1074 PKG_CHECK_MODULES(LZ4, liblz4)
1075 # We only care about -I, -D, and -L switches;
1076 # note that -llz4 will be added by AC_CHECK_LIB below.
1077 for pgac_option in $LZ4_CFLAGS; do
1078 case $pgac_option in
1079 -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1082 for pgac_option in $LZ4_LIBS; do
1083 case $pgac_option in
1084 -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1092 AC_MSG_CHECKING([whether to build with ZSTD support])
1093 PGAC_ARG_BOOL(with, zstd, no, [build with ZSTD support],
1094 [AC_DEFINE([USE_ZSTD], 1, [Define to 1 to build with ZSTD support. (--with-zstd)])])
1095 AC_MSG_RESULT([$with_zstd])
1098 if test "$with_zstd" = yes; then
1099 PKG_CHECK_MODULES(ZSTD, libzstd >= 1.4.0)
1100 # We only care about -I, -D, and -L switches;
1101 # note that -lzstd will be added by AC_CHECK_LIB below.
1102 for pgac_option in $ZSTD_CFLAGS; do
1103 case $pgac_option in
1104 -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1107 for pgac_option in $ZSTD_LIBS; do
1108 case $pgac_option in
1109 -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1117 CPPFLAGS="$CPPFLAGS $INCLUDES"
1118 LDFLAGS="$LDFLAGS $LIBDIRS"
1120 AC_ARG_VAR(LDFLAGS_EX, [extra linker flags for linking executables only])
1121 AC_ARG_VAR(LDFLAGS_SL, [extra linker flags for linking shared libraries only])
1124 AC_CHECK_TOOL(AR, ar, ar)
1125 if test "$PORTNAME" = "win32"; then
1126 AC_CHECK_TOOL(WINDRES, windres, windres)
1130 # When Autoconf chooses install-sh as install program it tries to generate
1131 # a relative path to it in each makefile where it substitutes it. This clashes
1132 # with our Makefile.global concept. This workaround helps.
1134 *install-sh*) install_bin='';;
1135 *) install_bin=$INSTALL;;
1137 AC_SUBST(install_bin)
1139 PGAC_PATH_PROGS(TAR, tar)
1142 # When Autoconf chooses install-sh as mkdir -p program it tries to generate
1143 # a relative path to it in each makefile where it substitutes it. This clashes
1144 # with our Makefile.global concept. This workaround helps.
1146 *install-sh*) MKDIR_P='\${SHELL} \${top_srcdir}/config/install-sh -c -d';;
1153 if test "$with_perl" = yes; then
1154 if test -z "$PERL"; then
1155 AC_MSG_ERROR([Perl not found])
1157 PGAC_CHECK_PERL_CONFIGS([archlibexp,privlibexp,useshrplib])
1158 if test "$perl_useshrplib" != yes && test "$perl_useshrplib" != true; then
1159 AC_MSG_ERROR([cannot build PL/Perl because libperl is not a shared library
1160 You might have to rebuild your Perl installation. Refer to the
1161 documentation for details. Use --without-perl to disable building
1164 # On most platforms, archlibexp is also where the Perl include files live ...
1165 perl_includespec="-I$perl_archlibexp/CORE"
1166 # ... but on newer macOS versions, we must use -iwithsysroot to look
1168 if test \! -f "$perl_archlibexp/CORE/perl.h" ; then
1169 if test -f "$PG_SYSROOT$perl_archlibexp/CORE/perl.h" ; then
1170 perl_includespec="-iwithsysroot $perl_archlibexp/CORE"
1173 AC_SUBST(perl_includespec)dnl
1174 PGAC_CHECK_PERL_EMBED_CCFLAGS
1175 PGAC_CHECK_PERL_EMBED_LDFLAGS
1178 if test "$with_python" = yes; then
1180 PGAC_CHECK_PYTHON_EMBED_SETUP
1183 if test x"$cross_compiling" = x"yes" && test -z "$with_system_tzdata"; then
1184 PGAC_PATH_PROGS(ZIC, zic)
1185 if test -z "$ZIC"; then
1187 When cross-compiling, either use the option --with-system-tzdata to use
1188 existing time-zone data, or set the environment variable ZIC to a zic
1189 program to use during the build.])
1196 # For each platform, we need to know about any special compile and link
1197 # libraries, and whether the normal C function names are thread-safe.
1198 # WIN32 doesn't need the pthread tests; it always uses threads
1200 # These tests are run before the library-tests, because linking with the
1201 # other libraries can pull in the pthread functions as a side-effect. We
1202 # want to use the -pthread or similar flags directly, and not rely on
1203 # the side-effects of linking with some other library.
1205 dnl note: We have to use AS_IF here rather than plain if. The AC_CHECK_HEADER
1206 dnl invocation below is the first one in the script, and autoconf generates
1207 dnl additional code for that, which must not be inside the if-block. AS_IF
1208 dnl knows how to do that.
1209 AS_IF([test "$PORTNAME" != "win32"],
1211 AX_PTHREAD # set thread flags
1213 # Some platforms use these, so just define them. They can't hurt if they
1214 # are not supported.
1215 PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE"
1217 # Check for *_r functions
1220 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
1221 LIBS="$LIBS $PTHREAD_LIBS"
1223 AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([
1224 pthread.h not found])])
1226 AC_CHECK_FUNCS([strerror_r])
1228 # Do test here with the proper thread flags
1229 PGAC_FUNC_STRERROR_R_INT
1235 # do not use values from template file
1240 AC_SUBST(PTHREAD_CFLAGS)
1241 AC_SUBST(PTHREAD_LIBS)
1247 ## Most libraries are included only if they demonstrably provide a function
1248 ## we need, but libm is an exception: always include it, because there are
1249 ## too many compilers that play cute optimization games that will break
1250 ## probes for standard functions such as pow().
1253 AC_CHECK_LIB(m, main)
1254 AC_SEARCH_LIBS(setproctitle, util)
1255 # gcc/clang's sanitizer helper library provides dlopen but not dlsym, thus
1256 # when enabling asan the dlopen check doesn't notice that -ldl is actually
1257 # required. Just checking for dlsym() ought to suffice.
1258 AC_SEARCH_LIBS(dlsym, dl)
1259 AC_SEARCH_LIBS(socket, [socket ws2_32])
1260 AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
1261 AC_SEARCH_LIBS(shm_open, rt)
1262 AC_SEARCH_LIBS(shm_unlink, rt)
1263 AC_SEARCH_LIBS(clock_gettime, rt)
1265 AC_SEARCH_LIBS(shmget, cygipc)
1267 AC_SEARCH_LIBS(backtrace_symbols, execinfo)
1269 AC_SEARCH_LIBS(pthread_barrier_wait, pthread)
1271 if test "$with_readline" = yes; then
1273 if test x"$pgac_cv_check_readline" = x"no"; then
1274 AC_MSG_ERROR([readline library not found
1275 If you have readline already installed, see config.log for details on the
1276 failure. It is possible the compiler isn't looking in the proper directory.
1277 Use --without-readline to disable readline support.])
1281 if test "$with_zlib" = yes; then
1282 AC_CHECK_LIB(z, inflate, [],
1283 [AC_MSG_ERROR([zlib library not found
1284 If you have zlib already installed, see config.log for details on the
1285 failure. It is possible the compiler isn't looking in the proper directory.
1286 Use --without-zlib to disable zlib support.])])
1289 if test "$with_gssapi" = yes ; then
1290 if test "$PORTNAME" != "win32"; then
1291 AC_SEARCH_LIBS(gss_store_cred_into, [gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'], [],
1292 [AC_MSG_ERROR([could not find function 'gss_store_cred_into' required for GSSAPI])])
1294 LIBS="$LIBS -lgssapi32"
1301 # There is currently only one supported SSL/TLS library: OpenSSL.
1303 PGAC_ARG_REQ(with, ssl, [LIB], [use LIB for SSL/TLS support (openssl)])
1304 if test x"$with_ssl" = x"" ; then
1307 PGAC_ARG_BOOL(with, openssl, no, [obsolete spelling of --with-ssl=openssl])
1308 if test "$with_openssl" = yes ; then
1312 if test "$with_ssl" = openssl ; then
1314 # Minimum required OpenSSL version is 1.1.0
1315 AC_DEFINE(OPENSSL_API_COMPAT, [0x10100000L],
1316 [Define to the OpenSSL API version in use. This avoids deprecation warnings from newer OpenSSL versions.])
1317 if test "$PORTNAME" != "win32"; then
1318 AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [AC_MSG_ERROR([library 'crypto' is required for OpenSSL])])
1319 AC_CHECK_LIB(ssl, SSL_new, [], [AC_MSG_ERROR([library 'ssl' is required for OpenSSL])])
1321 AC_SEARCH_LIBS(CRYPTO_new_ex_data, [eay32 crypto], [], [AC_MSG_ERROR([library 'eay32' or 'crypto' is required for OpenSSL])])
1322 AC_SEARCH_LIBS(SSL_new, [ssleay32 ssl], [], [AC_MSG_ERROR([library 'ssleay32' or 'ssl' is required for OpenSSL])])
1324 # Function introduced in OpenSSL 1.0.2, not in LibreSSL.
1325 AC_CHECK_FUNCS([SSL_CTX_set_cert_cb])
1326 # Functions introduced in OpenSSL 1.1.0. We used to check for
1327 # OPENSSL_VERSION_NUMBER, but that didn't work with 1.1.0, because LibreSSL
1328 # defines OPENSSL_VERSION_NUMBER to claim version 2.0.0, even though it
1329 # doesn't have these OpenSSL 1.1.0 functions. So check for individual
1331 AC_CHECK_FUNCS([OPENSSL_init_ssl], [], [AC_MSG_ERROR([OpenSSL version >= 1.1.0 is required for SSL support])])
1332 # Function introduced in OpenSSL 1.1.1, not in LibreSSL.
1333 AC_CHECK_FUNCS([X509_get_signature_info SSL_CTX_set_num_tickets])
1334 AC_DEFINE([USE_OPENSSL], 1, [Define to 1 to build with OpenSSL support. (--with-ssl=openssl)])
1335 elif test "$with_ssl" != no ; then
1336 AC_MSG_ERROR([--with-ssl must specify openssl])
1340 if test "$with_pam" = yes ; then
1341 AC_CHECK_LIB(pam, pam_start, [], [AC_MSG_ERROR([library 'pam' is required for PAM])])
1344 if test "$with_libxml" = yes ; then
1345 AC_CHECK_LIB(xml2, xmlSaveToBuffer, [], [AC_MSG_ERROR([library 'xml2' (version >= 2.6.23) is required for XML support])])
1348 if test "$with_libxslt" = yes ; then
1349 AC_CHECK_LIB(xslt, xsltCleanupGlobals, [], [AC_MSG_ERROR([library 'xslt' is required for XSLT support])])
1352 if test "$with_lz4" = yes ; then
1353 AC_CHECK_LIB(lz4, LZ4_compress_default, [], [AC_MSG_ERROR([library 'lz4' is required for LZ4 support])])
1356 if test "$with_zstd" = yes ; then
1357 AC_CHECK_LIB(zstd, ZSTD_compress, [], [AC_MSG_ERROR([library 'zstd' is required for ZSTD support])])
1360 # Note: We can test for libldap_r only after we know PTHREAD_LIBS
1361 if test "$with_ldap" = yes ; then
1363 if test "$PORTNAME" != "win32"; then
1364 AC_CHECK_LIB(ldap, ldap_bind, [],
1365 [AC_MSG_ERROR([library 'ldap' is required for LDAP])],
1367 LDAP_LIBS_BE="-lldap $EXTRA_LDAP_LIBS"
1368 # This test is carried out against libldap.
1369 AC_CHECK_FUNCS([ldap_initialize])
1370 # The separate ldap_r library only exists in OpenLDAP < 2.5, and if we
1371 # have 2.5 or later, we shouldn't even probe for ldap_r (we might find a
1372 # library from a separate OpenLDAP installation). The most reliable
1373 # way to check that is to check for a function introduced in 2.5.
1374 AC_CHECK_FUNC([ldap_verify_credentials],
1375 [thread_safe_libldap=yes],
1376 [thread_safe_libldap=no])
1377 if test "$thread_safe_libldap" = no; then
1378 # Use ldap_r for FE if available, else assume ldap is thread-safe.
1379 # On some platforms ldap_r fails to link without PTHREAD_LIBS.
1381 AC_CHECK_LIB(ldap_r, ldap_bind,
1382 [LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"],
1383 [LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"],
1384 [$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
1386 LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
1389 AC_CHECK_LIB(wldap32, ldap_bind, [], [AC_MSG_ERROR([library 'wldap32' is required for LDAP])])
1390 LDAP_LIBS_FE="-lwldap32"
1391 LDAP_LIBS_BE="-lwldap32"
1395 AC_SUBST(LDAP_LIBS_FE)
1396 AC_SUBST(LDAP_LIBS_BE)
1398 # for contrib/sepgsql
1399 if test "$with_selinux" = yes; then
1400 AC_CHECK_LIB(selinux, security_compute_create_name, [],
1401 [AC_MSG_ERROR([library 'libselinux', version 2.1.10 or newer, is required for SELinux support])])
1404 # for contrib/uuid-ossp
1405 if test "$with_uuid" = bsd ; then
1406 # On BSD, the UUID functions are in libc
1407 AC_CHECK_FUNC(uuid_to_string,
1409 [AC_MSG_ERROR([BSD UUID functions are not present])])
1410 elif test "$with_uuid" = e2fs ; then
1411 # On macOS, the UUID functions are in libc
1412 AC_CHECK_FUNC(uuid_generate,
1414 [AC_CHECK_LIB(uuid, uuid_generate,
1415 [UUID_LIBS="-luuid"],
1416 [AC_MSG_ERROR([library 'uuid' is required for E2FS UUID])])])
1417 elif test "$with_uuid" = ossp ; then
1418 AC_CHECK_LIB(ossp-uuid, uuid_export,
1419 [UUID_LIBS="-lossp-uuid"],
1420 [AC_CHECK_LIB(uuid, uuid_export,
1421 [UUID_LIBS="-luuid"],
1422 [AC_MSG_ERROR([library 'ossp-uuid' or 'uuid' is required for OSSP UUID])])])
1433 AC_CHECK_HEADERS(m4_normalize([
1452 if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
1453 AC_CHECK_HEADERS(readline/readline.h, [],
1454 [AC_CHECK_HEADERS(readline.h, [],
1455 [AC_MSG_ERROR([readline header not found
1456 If you have readline already installed, see config.log for details on the
1457 failure. It is possible the compiler isn't looking in the proper directory.
1458 Use --without-readline to disable readline support.])])])
1459 AC_CHECK_HEADERS(readline/history.h, [],
1460 [AC_CHECK_HEADERS(history.h, [],
1461 [AC_MSG_ERROR([history header not found
1462 If you have readline already installed, see config.log for details on the
1463 failure. It is possible the compiler isn't looking in the proper directory.
1464 Use --without-readline to disable readline support.])])])
1467 if expr x"$pgac_cv_check_readline" : 'x-ledit' >/dev/null ; then
1468 # Some installations of libedit usurp /usr/include/readline/, which seems
1469 # bad practice, since in combined installations readline will have its headers
1470 # there. We might have to resort to AC_EGREP checks to make sure we found
1471 # the proper header...
1472 AC_CHECK_HEADERS(editline/readline.h, [],
1473 [AC_CHECK_HEADERS(readline.h, [],
1474 [AC_CHECK_HEADERS(readline/readline.h, [],
1475 [AC_MSG_ERROR([readline header not found
1476 If you have libedit already installed, see config.log for details on the
1477 failure. It is possible the compiler isn't looking in the proper directory.
1478 Use --without-readline to disable libedit support.])])])])
1479 # Note: in a libedit installation, history.h is sometimes a dummy, and may
1480 # not be there at all. Hence, don't complain if not found. We must check
1481 # though, since in yet other versions it is an independent header.
1482 AC_CHECK_HEADERS(editline/history.h, [],
1483 [AC_CHECK_HEADERS(history.h, [],
1484 [AC_CHECK_HEADERS(readline/history.h)])])
1487 if test "$with_zlib" = yes; then
1488 AC_CHECK_HEADER(zlib.h, [], [AC_MSG_ERROR([zlib header not found
1489 If you have zlib already installed, see config.log for details on the
1490 failure. It is possible the compiler isn't looking in the proper directory.
1491 Use --without-zlib to disable zlib support.])])
1494 PGAC_PATH_PROGS(LZ4, lz4)
1495 if test "$with_lz4" = yes; then
1496 AC_CHECK_HEADER(lz4.h, [], [AC_MSG_ERROR([lz4.h header file is required for LZ4])])
1499 PGAC_PATH_PROGS(ZSTD, zstd)
1500 if test "$with_zstd" = yes; then
1501 AC_CHECK_HEADER(zstd.h, [], [AC_MSG_ERROR([zstd.h header file is required for ZSTD])])
1504 if test "$with_gssapi" = yes ; then
1505 AC_CHECK_HEADERS(gssapi/gssapi.h, [],
1506 [AC_CHECK_HEADERS(gssapi.h, [], [AC_MSG_ERROR([gssapi.h header file is required for GSSAPI])])])
1507 AC_CHECK_HEADERS(gssapi/gssapi_ext.h, [],
1508 [AC_CHECK_HEADERS(gssapi_ext.h, [], [AC_MSG_ERROR([gssapi_ext.h header file is required for GSSAPI])])])
1511 PGAC_PATH_PROGS(OPENSSL, openssl)
1512 pgac_openssl_version="$($OPENSSL version 2> /dev/null || echo openssl not found)"
1513 AC_MSG_NOTICE([using openssl: $pgac_openssl_version])
1514 if test "$with_ssl" = openssl ; then
1515 AC_CHECK_HEADER(openssl/ssl.h, [], [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL])])
1516 AC_CHECK_HEADER(openssl/err.h, [], [AC_MSG_ERROR([header file <openssl/err.h> is required for OpenSSL])])
1519 if test "$with_pam" = yes ; then
1520 AC_CHECK_HEADERS(security/pam_appl.h, [],
1521 [AC_CHECK_HEADERS(pam/pam_appl.h, [],
1522 [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM.])])])
1525 if test "$with_bsd_auth" = yes ; then
1526 AC_CHECK_HEADER(bsd_auth.h, [], [AC_MSG_ERROR([header file <bsd_auth.h> is required for BSD Authentication support])])
1529 if test "$with_systemd" = yes ; then
1530 AC_CHECK_HEADER(systemd/sd-daemon.h, [], [AC_MSG_ERROR([header file <systemd/sd-daemon.h> is required for systemd support])])
1533 if test "$with_libxml" = yes ; then
1534 AC_CHECK_HEADER(libxml/parser.h, [], [AC_MSG_ERROR([header file <libxml/parser.h> is required for XML support])])
1537 if test "$with_libxslt" = yes ; then
1538 AC_CHECK_HEADER(libxslt/xslt.h, [], [AC_MSG_ERROR([header file <libxslt/xslt.h> is required for XSLT support])])
1541 if test "$with_ldap" = yes ; then
1542 if test "$PORTNAME" != "win32"; then
1543 AC_CHECK_HEADER(ldap.h, [],
1544 [AC_MSG_ERROR([header file <ldap.h> is required for LDAP])])
1547 AC_CHECK_HEADER(winldap.h, [],
1548 [AC_MSG_ERROR([header file <winldap.h> is required for LDAP])],
1549 [AC_INCLUDES_DEFAULT
1550 #include <windows.h>
1555 if test "$with_bonjour" = yes ; then
1556 AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])
1557 dnl At some point we might add something like
1558 dnl AC_SEARCH_LIBS(DNSServiceRegister, dns_sd)
1559 dnl but right now, what that would mainly accomplish is to encourage
1560 dnl people to try to use the avahi implementation, which does not work.
1561 dnl If you want to use Apple's own Bonjour code on another platform,
1562 dnl just add -ldns_sd to LIBS manually.
1565 # for contrib/uuid-ossp
1566 if test "$with_uuid" = bsd ; then
1567 AC_CHECK_HEADERS(uuid.h,
1568 [AC_EGREP_HEADER([uuid_to_string], uuid.h, [],
1569 [AC_MSG_ERROR([header file <uuid.h> does not match BSD UUID library])])],
1570 [AC_MSG_ERROR([header file <uuid.h> is required for BSD UUID])])
1571 elif test "$with_uuid" = e2fs ; then
1572 AC_CHECK_HEADERS(uuid/uuid.h,
1573 [AC_EGREP_HEADER([uuid_generate], uuid/uuid.h, [],
1574 [AC_MSG_ERROR([header file <uuid/uuid.h> does not match E2FS UUID library])])],
1575 [AC_CHECK_HEADERS(uuid.h,
1576 [AC_EGREP_HEADER([uuid_generate], uuid.h, [],
1577 [AC_MSG_ERROR([header file <uuid.h> does not match E2FS UUID library])])],
1578 [AC_MSG_ERROR([header file <uuid/uuid.h> or <uuid.h> is required for E2FS UUID])])])
1579 elif test "$with_uuid" = ossp ; then
1580 AC_CHECK_HEADERS(ossp/uuid.h,
1581 [AC_EGREP_HEADER([uuid_export], ossp/uuid.h, [],
1582 [AC_MSG_ERROR([header file <ossp/uuid.h> does not match OSSP UUID library])])],
1583 [AC_CHECK_HEADERS(uuid.h,
1584 [AC_EGREP_HEADER([uuid_export], uuid.h, [],
1585 [AC_MSG_ERROR([header file <uuid.h> does not match OSSP UUID library])])],
1586 [AC_MSG_ERROR([header file <ossp/uuid.h> or <uuid.h> is required for OSSP UUID])])])
1589 if test "$PORTNAME" = "win32" ; then
1590 AC_CHECK_HEADERS(crtdefs.h)
1594 ## Types, structures, compiler characteristics
1597 m4_defun([AC_PROG_CC_STDC], []) dnl We don't want that.
1600 PGAC_PRINTF_ARCHETYPE
1601 PGAC_C_STATIC_ASSERT
1603 PGAC_C_TYPES_COMPATIBLE
1604 PGAC_C_BUILTIN_CONSTANT_P
1605 PGAC_C_BUILTIN_UNREACHABLE
1606 PGAC_C_COMPUTED_GOTO
1607 PGAC_STRUCT_TIMEZONE
1609 AC_CHECK_TYPES(socklen_t, [], [], [#include <sys/socket.h>])
1610 PGAC_STRUCT_SOCKADDR_SA_LEN
1612 # MSVC doesn't cope well with defining restrict to __restrict, the
1613 # spelling it understands, because it conflicts with
1614 # __declspec(restrict). Therefore we define pg_restrict to the
1615 # appropriate definition, which presumably won't conflict.
1617 if test "$ac_cv_c_restrict" = "no"; then
1620 pg_restrict="$ac_cv_c_restrict"
1622 AC_DEFINE_UNQUOTED([pg_restrict], [$pg_restrict],
1623 [Define to keyword to use for C99 restrict support, or to nothing if not
1626 AC_CHECK_TYPES([struct option], [], [],
1627 [#ifdef HAVE_GETOPT_H
1633 # On x86_64, check if we can compile a popcntq instruction
1634 AC_CACHE_CHECK([whether assembler supports x86_64 popcntq],
1635 [pgac_cv_have_x86_64_popcntq],
1636 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1637 [long long x = 1; long long r;
1638 __asm__ __volatile__ (" popcntq %1,%0\n" : "=q"(r) : "rm"(x));])],
1639 [pgac_cv_have_x86_64_popcntq=yes],
1640 [pgac_cv_have_x86_64_popcntq=no])])
1641 if test x"$pgac_cv_have_x86_64_popcntq" = xyes ; then
1642 AC_DEFINE(HAVE_X86_64_POPCNTQ, 1, [Define to 1 if the assembler supports X86_64's POPCNTQ instruction.])
1646 # On PPC, check if compiler accepts "i"(x) when __builtin_constant_p(x).
1647 AC_CACHE_CHECK([whether __builtin_constant_p(x) implies "i"(x) acceptance],
1648 [pgac_cv_have_i_constraint__builtin_constant_p],
1649 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1651 addi(int ra, int si)
1654 if (__builtin_constant_p(si))
1655 __asm__ __volatile__(
1656 " addi %0,%1,%2\n" : "=r"(res) : "b"(ra), "i"(si));
1659 int test_adds(int x) { return addi(3, x) + addi(x, 5); }], [])],
1660 [pgac_cv_have_i_constraint__builtin_constant_p=yes],
1661 [pgac_cv_have_i_constraint__builtin_constant_p=no])])
1662 if test x"$pgac_cv_have_i_constraint__builtin_constant_p" = xyes ; then
1663 AC_DEFINE(HAVE_I_CONSTRAINT__BUILTIN_CONSTANT_P, 1,
1664 [Define to 1 if __builtin_constant_p(x) implies "i"(x) acceptance.])
1669 # Check largefile support. You might think this is a system service not a
1670 # compiler characteristic, but you'd be wrong. We must check this before
1671 # probing existence of related functions such as fseeko, since the largefile
1672 # defines can affect what is generated for that.
1673 if test "$PORTNAME" != "win32"; then
1675 dnl Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define
1676 dnl _DARWIN_USE_64_BIT_INODE, but it isn't: on macOS 10.5 that activates a
1677 dnl bug that causes readdir() to sometimes return EINVAL. On later macOS
1678 dnl versions where the feature actually works, it's on by default anyway.
1679 AH_VERBATIM([_DARWIN_USE_64_BIT_INODE],[])
1682 dnl Check for largefile support (must be after AC_SYS_LARGEFILE)
1683 AC_CHECK_SIZEOF([off_t])
1685 # If we don't have largefile support, can't handle segment size >= 2GB.
1686 if test "$ac_cv_sizeof_off_t" -lt 8; then
1687 if expr $RELSEG_SIZE '*' $blocksize '>=' 2 '*' 1024 '*' 1024; then
1688 AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1692 AC_CHECK_SIZEOF([bool], [],
1693 [#ifdef HAVE_STDBOOL_H
1694 #include <stdbool.h>
1697 dnl We use <stdbool.h> if we have it and it declares type bool as having
1698 dnl size 1. Otherwise, c.h will fall back to declaring bool as unsigned char.
1699 if test "$ac_cv_header_stdbool_h" = yes -a "$ac_cv_sizeof_bool" = 1; then
1700 AC_DEFINE([PG_USE_STDBOOL], 1,
1701 [Define to 1 to use <stdbool.h> to define type bool.])
1706 ## Functions, global variables
1709 PGAC_VAR_INT_TIMEZONE
1711 # Some versions of libedit contain strlcpy(), setproctitle(), and other
1712 # symbols that that library has no business exposing to the world. Pending
1713 # acquisition of a clue by those developers, ignore libedit (including its
1714 # possible alias of libreadline) while checking for everything else.
1715 LIBS_including_readline="$LIBS"
1716 LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`
1718 AC_CHECK_FUNCS(m4_normalize([
1730 pthread_is_threaded_np
1741 # These typically are compiler builtins, for which AC_CHECK_FUNCS fails.
1742 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap16], [int x])
1743 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap32], [int x])
1744 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap64], [long int x])
1745 # We assume that we needn't test all widths of these explicitly:
1746 PGAC_CHECK_BUILTIN_FUNC([__builtin_clz], [unsigned int x])
1747 PGAC_CHECK_BUILTIN_FUNC([__builtin_ctz], [unsigned int x])
1748 PGAC_CHECK_BUILTIN_FUNC([__builtin_popcount], [unsigned int x])
1749 # __builtin_frame_address may draw a diagnostic for non-constant argument,
1750 # so it needs a different test function.
1751 PGAC_CHECK_BUILTIN_FUNC_PTR([__builtin_frame_address], [0])
1753 # We require 64-bit fseeko() to be available, but run this check anyway
1754 # in case it finds that _LARGEFILE_SOURCE has to be #define'd for that.
1757 # posix_fadvise() is a no-op on Solaris, so don't incur function overhead
1758 # by calling it, 2009-04-02
1759 # http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/gen/posix_fadvise.c
1760 dnl must use AS_IF here, else AC_REQUIRES inside AC_CHECK_DECLS malfunctions
1761 AS_IF([test "$PORTNAME" != "solaris"], [
1762 AC_CHECK_FUNCS(posix_fadvise)
1763 AC_CHECK_DECLS(posix_fadvise, [], [], [#include <fcntl.h>])
1766 AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
1767 AC_CHECK_DECLS([strlcat, strlcpy, strnlen, strsep])
1769 # We can't use AC_CHECK_FUNCS to detect these functions, because it
1770 # won't handle deployment target restrictions on macOS
1771 AC_CHECK_DECLS([preadv], [], [], [#include <sys/uio.h>])
1772 AC_CHECK_DECLS([pwritev], [], [], [#include <sys/uio.h>])
1774 # This is probably only present on macOS, but may as well check always
1775 AC_CHECK_DECLS(F_FULLFSYNC, [], [], [#include <fcntl.h>])
1777 AC_REPLACE_FUNCS(m4_normalize([
1789 AC_REPLACE_FUNCS(pthread_barrier_wait)
1791 if test "$PORTNAME" = "win32" -o "$PORTNAME" = "cygwin"; then
1792 # Cygwin and (apparently, based on test results) Mingw both
1793 # have a broken strtof(), so substitute its implementation.
1794 # That's not a perfect fix, since it doesn't avoid double-rounding,
1795 # but we have no better options.
1797 AC_MSG_NOTICE([On $host_os we will use our strtof wrapper.])
1800 # Similarly, use system's getopt_long() only if system provides struct option.
1801 if test x"$ac_cv_type_struct_option" = xyes ; then
1802 AC_REPLACE_FUNCS([getopt_long])
1804 AC_LIBOBJ(getopt_long)
1807 # On OpenBSD and Solaris, getopt() doesn't do what we want for long options
1808 # (i.e., allow '-' as a flag character), so use our version on those platforms.
1809 if test "$PORTNAME" = "openbsd" -o "$PORTNAME" = "solaris"; then
1813 # mingw has adopted a GNU-centric interpretation of optind/optreset,
1814 # so always use our version on Windows.
1815 if test "$PORTNAME" = "win32"; then
1817 AC_LIBOBJ(getopt_long)
1820 # Win32 (really MinGW) support
1821 if test "$PORTNAME" = "win32"; then
1822 AC_CHECK_FUNCS(_configthreadlocale)
1827 AC_LIBOBJ(win32common)
1828 AC_LIBOBJ(win32dlopen)
1830 AC_LIBOBJ(win32error)
1831 AC_LIBOBJ(win32fdatasync)
1832 AC_LIBOBJ(win32gai_strerror)
1833 AC_LIBOBJ(win32getrusage)
1834 AC_LIBOBJ(win32link)
1835 AC_LIBOBJ(win32ntdll)
1836 AC_LIBOBJ(win32pread)
1837 AC_LIBOBJ(win32pwrite)
1838 AC_LIBOBJ(win32security)
1839 AC_LIBOBJ(win32setlocale)
1840 AC_LIBOBJ(win32stat)
1842 # Cygwin needs only a bit of that
1843 if test "$PORTNAME" = "cygwin"; then
1847 AC_CHECK_FUNC(syslog,
1848 [AC_CHECK_HEADER(syslog.h,
1849 [AC_DEFINE(HAVE_SYSLOG, 1, [Define to 1 if you have the syslog interface.])])])
1851 AC_CACHE_CHECK([for opterr], pgac_cv_var_int_opterr,
1852 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1853 [extern int opterr; opterr = 1;])],
1854 [pgac_cv_var_int_opterr=yes],
1855 [pgac_cv_var_int_opterr=no])])
1856 if test x"$pgac_cv_var_int_opterr" = x"yes"; then
1857 AC_DEFINE(HAVE_INT_OPTERR, 1, [Define to 1 if you have the global variable 'int opterr'.])
1860 AC_CACHE_CHECK([for optreset], pgac_cv_var_int_optreset,
1861 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1862 [extern int optreset; optreset = 1;])],
1863 [pgac_cv_var_int_optreset=yes],
1864 [pgac_cv_var_int_optreset=no])])
1865 if test x"$pgac_cv_var_int_optreset" = x"yes"; then
1866 AC_DEFINE(HAVE_INT_OPTRESET, 1, [Define to 1 if you have the global variable 'int optreset'.])
1869 if test "$with_icu" = yes; then
1870 ac_save_CPPFLAGS=$CPPFLAGS
1871 CPPFLAGS="$ICU_CFLAGS $CPPFLAGS"
1873 # Verify we have ICU's header files
1874 AC_CHECK_HEADER(unicode/ucol.h, [],
1875 [AC_MSG_ERROR([header file <unicode/ucol.h> is required for ICU])])
1877 CPPFLAGS=$ac_save_CPPFLAGS
1880 if test "$with_llvm" = yes; then
1881 PGAC_CHECK_LLVM_FUNCTIONS()
1884 # Lastly, restore full LIBS list and check for readline/libedit symbols
1885 LIBS="$LIBS_including_readline"
1887 if test "$with_readline" = yes; then
1888 PGAC_READLINE_VARIABLES
1889 AC_CHECK_FUNCS(m4_normalize([
1891 history_truncate_file
1892 rl_completion_matches
1893 rl_filename_completion_function
1894 rl_reset_screen_size
1900 # This test makes sure that run tests work at all. Sometimes a shared
1901 # library is found by the linker, but the runtime linker can't find it.
1902 # This check should come after all modifications of compiler or linker
1903 # variables, and before any other run tests.
1904 AC_MSG_CHECKING([test program])
1905 AC_RUN_IFELSE([AC_LANG_SOURCE([int main() { return 0; }])],
1906 [AC_MSG_RESULT(ok)],
1907 [AC_MSG_RESULT(failed)
1909 Could not execute a simple test program. This may be a problem
1910 related to locating shared libraries. Check the file 'config.log'
1911 for the exact reason.]])],
1912 [AC_MSG_RESULT([cross-compiling])])
1914 # --------------------
1915 # Run tests below here
1916 # --------------------
1918 dnl Check to see if we have a working 64-bit integer type.
1919 dnl Since Postgres 8.4, we no longer support compilers without a working
1920 dnl 64-bit type; but we have to determine whether that type is called
1921 dnl "long int" or "long long int".
1923 PGAC_TYPE_64BIT_INT([long int])
1925 if test x"$HAVE_LONG_INT_64" = x"yes" ; then
1926 pg_int64_type="long int"
1928 PGAC_TYPE_64BIT_INT([long long int])
1929 if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
1930 pg_int64_type="long long int"
1932 AC_MSG_ERROR([Cannot find a working 64-bit integer type.])
1936 AC_DEFINE_UNQUOTED(PG_INT64_TYPE, $pg_int64_type,
1937 [Define to the name of a signed 64-bit integer type.])
1939 # Select the printf length modifier that goes with that, too.
1940 if test x"$pg_int64_type" = x"long long int" ; then
1941 INT64_MODIFIER='"ll"'
1943 INT64_MODIFIER='"l"'
1946 AC_DEFINE_UNQUOTED(INT64_MODIFIER, $INT64_MODIFIER,
1947 [Define to the appropriate printf length modifier for 64-bit ints.])
1949 # has to be down here, rather than with the other builtins, because
1950 # the test uses PG_INT64_TYPE.
1951 PGAC_C_BUILTIN_OP_OVERFLOW
1953 # Check size of void *, size_t (enables tweaks for > 32bit address space)
1954 AC_CHECK_SIZEOF([void *])
1955 AC_CHECK_SIZEOF([size_t])
1956 AC_CHECK_SIZEOF([long])
1958 # Determine memory alignment requirements for the basic C data types.
1960 AC_CHECK_ALIGNOF(short)
1961 AC_CHECK_ALIGNOF(int)
1962 AC_CHECK_ALIGNOF(long)
1963 if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
1964 AC_CHECK_ALIGNOF(long long int)
1966 AC_CHECK_ALIGNOF(double)
1968 # Compute maximum alignment of any basic type.
1970 # We require 'double' to have the strictest alignment among the basic types,
1971 # because otherwise the C ABI might impose 8-byte alignment on some of the
1972 # other C types that correspond to TYPALIGN_DOUBLE SQL types. That could
1973 # cause a mismatch between the tuple layout and the C struct layout of a
1974 # catalog tuple. We used to carefully order catalog columns such that any
1975 # fixed-width, attalign=4 columns were at offsets divisible by 8 regardless
1976 # of MAXIMUM_ALIGNOF to avoid that, but we no longer support any platforms
1977 # where TYPALIGN_DOUBLE != MAXIMUM_ALIGNOF.
1979 # We assume without checking that long's alignment is at least as strong as
1980 # char, short, or int. Note that we intentionally do not consider any types
1981 # wider than 64 bits, as allowing MAXIMUM_ALIGNOF to exceed 8 would be too
1982 # much of a penalty for disk and memory space.
1984 MAX_ALIGNOF=$ac_cv_alignof_double
1986 if test $ac_cv_alignof_long -gt $MAX_ALIGNOF ; then
1987 AC_MSG_ERROR([alignment of 'long' is greater than the alignment of 'double'])
1989 if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $ac_cv_alignof_long_long_int -gt $MAX_ALIGNOF ; then
1990 AC_MSG_ERROR([alignment of 'long long int' is greater than the alignment of 'double'])
1992 AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any C data type.])
1995 # Some platforms predefine the types int8, int16, etc. Only check
1996 # a (hopefully) representative subset.
1997 AC_CHECK_TYPES([int8, uint8, int64, uint64], [], [],
1998 [#include <stdio.h>])
2000 # Some compilers offer a 128-bit integer scalar type.
2001 PGAC_TYPE_128BIT_INT
2003 # Check for various atomic operations now that we have checked how to declare
2005 PGAC_HAVE_GCC__SYNC_CHAR_TAS
2006 PGAC_HAVE_GCC__SYNC_INT32_TAS
2007 PGAC_HAVE_GCC__SYNC_INT32_CAS
2008 PGAC_HAVE_GCC__SYNC_INT64_CAS
2009 PGAC_HAVE_GCC__ATOMIC_INT32_CAS
2010 PGAC_HAVE_GCC__ATOMIC_INT64_CAS
2013 # Check for x86 cpuid instruction
2014 AC_CACHE_CHECK([for __get_cpuid], [pgac_cv__get_cpuid],
2015 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <cpuid.h>],
2016 [[unsigned int exx[4] = {0, 0, 0, 0};
2017 __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);
2019 [pgac_cv__get_cpuid="yes"],
2020 [pgac_cv__get_cpuid="no"])])
2021 if test x"$pgac_cv__get_cpuid" = x"yes"; then
2022 AC_DEFINE(HAVE__GET_CPUID, 1, [Define to 1 if you have __get_cpuid.])
2025 AC_CACHE_CHECK([for __get_cpuid_count], [pgac_cv__get_cpuid_count],
2026 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <cpuid.h>],
2027 [[unsigned int exx[4] = {0, 0, 0, 0};
2028 __get_cpuid_count(7, 0, &exx[0], &exx[1], &exx[2], &exx[3]);
2030 [pgac_cv__get_cpuid_count="yes"],
2031 [pgac_cv__get_cpuid_count="no"])])
2032 if test x"$pgac_cv__get_cpuid_count" = x"yes"; then
2033 AC_DEFINE(HAVE__GET_CPUID_COUNT, 1, [Define to 1 if you have __get_cpuid_count.])
2036 AC_CACHE_CHECK([for __cpuid], [pgac_cv__cpuid],
2037 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <intrin.h>],
2038 [[unsigned int exx[4] = {0, 0, 0, 0};
2039 __get_cpuid(exx[0], 1);
2041 [pgac_cv__cpuid="yes"],
2042 [pgac_cv__cpuid="no"])])
2043 if test x"$pgac_cv__cpuid" = x"yes"; then
2044 AC_DEFINE(HAVE__CPUID, 1, [Define to 1 if you have __cpuid.])
2047 AC_CACHE_CHECK([for __cpuidex], [pgac_cv__cpuidex],
2048 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <intrin.h>],
2049 [[unsigned int exx[4] = {0, 0, 0, 0};
2050 __get_cpuidex(exx[0], 7, 0);
2052 [pgac_cv__cpuidex="yes"],
2053 [pgac_cv__cpuidex="no"])])
2054 if test x"$pgac_cv__cpuidex" = x"yes"; then
2055 AC_DEFINE(HAVE__CPUIDEX, 1, [Define to 1 if you have __cpuidex.])
2058 # Check for XSAVE intrinsics
2061 PGAC_XSAVE_INTRINSICS([])
2062 if test x"$pgac_xsave_intrinsics" != x"yes"; then
2063 PGAC_XSAVE_INTRINSICS([-mxsave])
2065 if test x"$pgac_xsave_intrinsics" = x"yes"; then
2066 AC_DEFINE(HAVE_XSAVE_INTRINSICS, 1, [Define to 1 if you have XSAVE intrinsics.])
2068 AC_SUBST(CFLAGS_XSAVE)
2070 # Check for AVX-512 popcount intrinsics
2074 if test x"$host_cpu" = x"x86_64"; then
2075 PGAC_AVX512_POPCNT_INTRINSICS([])
2076 if test x"$pgac_avx512_popcnt_intrinsics" != x"yes"; then
2077 PGAC_AVX512_POPCNT_INTRINSICS([-mavx512vpopcntdq -mavx512bw])
2079 if test x"$pgac_avx512_popcnt_intrinsics" = x"yes"; then
2080 PG_POPCNT_OBJS="pg_popcount_avx512.o pg_popcount_avx512_choose.o"
2081 AC_DEFINE(USE_AVX512_POPCNT_WITH_RUNTIME_CHECK, 1, [Define to 1 to use AVX-512 popcount instructions with a runtime check.])
2084 AC_SUBST(CFLAGS_POPCNT)
2085 AC_SUBST(PG_POPCNT_OBJS)
2087 # Check for Intel SSE 4.2 intrinsics to do CRC calculations.
2089 # First check if the _mm_crc32_u8 and _mm_crc32_u64 intrinsics can be used
2090 # with the default compiler flags. If not, check if adding the -msse4.2
2091 # flag helps. CFLAGS_CRC is set to -msse4.2 if that's required.
2092 PGAC_SSE42_CRC32_INTRINSICS([])
2093 if test x"$pgac_sse42_crc32_intrinsics" != x"yes"; then
2094 PGAC_SSE42_CRC32_INTRINSICS([-msse4.2])
2097 # Are we targeting a processor that supports SSE 4.2? gcc, clang and icc all
2098 # define __SSE4_2__ in that case.
2099 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
2101 #error __SSE4_2__ not defined
2103 ])], [SSE4_2_TARGETED=1])
2105 # Check for ARMv8 CRC Extension intrinsics to do CRC calculations.
2107 # First check if __crc32c* intrinsics can be used with the default compiler
2108 # flags. If not, check if adding -march=armv8-a+crc flag helps.
2109 # CFLAGS_CRC is set if the extra flag is required.
2110 PGAC_ARMV8_CRC32C_INTRINSICS([])
2111 if test x"$pgac_armv8_crc32c_intrinsics" != x"yes"; then
2112 PGAC_ARMV8_CRC32C_INTRINSICS([-march=armv8-a+crc])
2115 # Check for LoongArch CRC intrinsics to do CRC calculations.
2117 # Check if __builtin_loongarch_crcc_* intrinsics can be used
2118 # with the default compiler flags.
2119 PGAC_LOONGARCH_CRC32C_INTRINSICS()
2121 AC_SUBST(CFLAGS_CRC)
2123 # Select CRC-32C implementation.
2125 # If we are targeting a processor that has Intel SSE 4.2 instructions, we can
2126 # use the special CRC instructions for calculating CRC-32C. If we're not
2127 # targeting such a processor, but we can nevertheless produce code that uses
2128 # the SSE intrinsics, perhaps with some extra CFLAGS, compile both
2129 # implementations and select which one to use at runtime, depending on whether
2130 # SSE 4.2 is supported by the processor we're running on.
2132 # Similarly, if we are targeting an ARM processor that has the CRC
2133 # instructions that are part of the ARMv8 CRC Extension, use them. And if
2134 # we're not targeting such a processor, but can nevertheless produce code that
2135 # uses the CRC instructions, compile both, and select at runtime.
2137 # You can skip the runtime check by setting the appropriate USE_*_CRC32 flag to 1
2138 # in the template or configure command line.
2140 # If we are targeting a LoongArch processor, CRC instructions are
2141 # always available (at least on 64 bit), so no runtime check is needed.
2142 if test x"$USE_SLICING_BY_8_CRC32C" = x"" && test x"$USE_SSE42_CRC32C" = x"" && test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"" && test x"$USE_ARMV8_CRC32C" = x"" && test x"$USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK" = x"" && test x"$USE_LOONGARCH_CRC32C" = x""; then
2143 # Use Intel SSE 4.2 if available.
2144 if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && test x"$SSE4_2_TARGETED" = x"1" ; then
2147 # Intel SSE 4.2, with runtime check? The CPUID instruction is needed for
2148 # the runtime check.
2149 if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && (test x"$pgac_cv__get_cpuid" = x"yes" || test x"$pgac_cv__cpuid" = x"yes"); then
2150 USE_SSE42_CRC32C_WITH_RUNTIME_CHECK=1
2152 # Use ARM CRC Extension if available.
2153 if test x"$pgac_armv8_crc32c_intrinsics" = x"yes" && test x"$CFLAGS_CRC" = x""; then
2156 # ARM CRC Extension, with runtime check?
2157 if test x"$pgac_armv8_crc32c_intrinsics" = x"yes"; then
2158 USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK=1
2160 # LoongArch CRCC instructions.
2161 if test x"$pgac_loongarch_crc32c_intrinsics" = x"yes"; then
2162 USE_LOONGARCH_CRC32C=1
2164 # fall back to slicing-by-8 algorithm, which doesn't require any
2165 # special CPU support.
2166 USE_SLICING_BY_8_CRC32C=1
2174 # Set PG_CRC32C_OBJS appropriately depending on the selected implementation.
2175 AC_MSG_CHECKING([which CRC-32C implementation to use])
2176 if test x"$USE_SSE42_CRC32C" = x"1"; then
2177 AC_DEFINE(USE_SSE42_CRC32C, 1, [Define to 1 use Intel SSE 4.2 CRC instructions.])
2178 PG_CRC32C_OBJS="pg_crc32c_sse42.o"
2179 AC_MSG_RESULT(SSE 4.2)
2181 if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2182 AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
2183 PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_sse42_choose.o"
2184 AC_MSG_RESULT(SSE 4.2 with runtime check)
2186 if test x"$USE_ARMV8_CRC32C" = x"1"; then
2187 AC_DEFINE(USE_ARMV8_CRC32C, 1, [Define to 1 to use ARMv8 CRC Extension.])
2188 PG_CRC32C_OBJS="pg_crc32c_armv8.o"
2189 AC_MSG_RESULT(ARMv8 CRC instructions)
2191 if test x"$USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2192 AC_DEFINE(USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use ARMv8 CRC Extension with a runtime check.])
2193 PG_CRC32C_OBJS="pg_crc32c_armv8.o pg_crc32c_sb8.o pg_crc32c_armv8_choose.o"
2194 AC_MSG_RESULT(ARMv8 CRC instructions with runtime check)
2196 if test x"$USE_LOONGARCH_CRC32C" = x"1"; then
2197 AC_DEFINE(USE_LOONGARCH_CRC32C, 1, [Define to 1 to use LoongArch CRCC instructions.])
2198 PG_CRC32C_OBJS="pg_crc32c_loongarch.o"
2199 AC_MSG_RESULT(LoongArch CRCC instructions)
2201 AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use software CRC-32C implementation (slicing-by-8).])
2202 PG_CRC32C_OBJS="pg_crc32c_sb8.o"
2203 AC_MSG_RESULT(slicing-by-8)
2209 AC_SUBST(PG_CRC32C_OBJS)
2212 # Select semaphore implementation type.
2213 if test "$PORTNAME" != "win32"; then
2214 if test x"$PREFERRED_SEMAPHORES" = x"NAMED_POSIX" ; then
2215 # Need sem_open for this
2216 AC_SEARCH_LIBS(sem_open, [rt pthread], [USE_NAMED_POSIX_SEMAPHORES=1])
2218 if test x"$PREFERRED_SEMAPHORES" = x"UNNAMED_POSIX" ; then
2219 # Need sem_init for this
2220 AC_SEARCH_LIBS(sem_init, [rt pthread], [USE_UNNAMED_POSIX_SEMAPHORES=1])
2222 AC_MSG_CHECKING([which semaphore API to use])
2223 if test x"$USE_NAMED_POSIX_SEMAPHORES" = x"1" ; then
2224 AC_DEFINE(USE_NAMED_POSIX_SEMAPHORES, 1, [Define to select named POSIX semaphores.])
2225 SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2226 sematype="named POSIX"
2228 if test x"$USE_UNNAMED_POSIX_SEMAPHORES" = x"1" ; then
2229 AC_DEFINE(USE_UNNAMED_POSIX_SEMAPHORES, 1, [Define to select unnamed POSIX semaphores.])
2230 SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2231 sematype="unnamed POSIX"
2233 AC_DEFINE(USE_SYSV_SEMAPHORES, 1, [Define to select SysV-style semaphores.])
2234 SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
2238 AC_MSG_RESULT([$sematype])
2240 AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.])
2241 SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
2245 # Select shared-memory implementation type.
2246 if test "$PORTNAME" != "win32"; then
2247 AC_DEFINE(USE_SYSV_SHARED_MEMORY, 1, [Define to select SysV-style shared memory.])
2248 SHMEM_IMPLEMENTATION="src/backend/port/sysv_shmem.c"
2250 AC_DEFINE(USE_WIN32_SHARED_MEMORY, 1, [Define to select Win32-style shared memory.])
2251 SHMEM_IMPLEMENTATION="src/backend/port/win32_shmem.c"
2254 # Select random number source. If a TLS library is used then it will be the
2255 # first choice, else the native platform sources (Windows API or /dev/urandom)
2257 AC_MSG_CHECKING([which random number source to use])
2258 if test x"$with_ssl" = x"openssl" ; then
2259 AC_MSG_RESULT([OpenSSL])
2260 elif test x"$PORTNAME" = x"win32" ; then
2261 AC_MSG_RESULT([Windows native])
2262 elif test x"$cross_compiling" = x"yes"; then
2263 AC_MSG_RESULT([assuming /dev/urandom])
2265 AC_MSG_RESULT([/dev/urandom])
2266 AC_CHECK_FILE([/dev/urandom], [], [])
2268 if test x"$ac_cv_file__dev_urandom" = x"no" ; then
2270 no source of strong random numbers was found
2271 PostgreSQL can use OpenSSL, native Windows API or /dev/urandom as a source of random numbers.])
2275 # If not set in template file, set bytes to use libc memset()
2276 if test x"$MEMSET_LOOP_LIMIT" = x"" ; then
2277 MEMSET_LOOP_LIMIT=1024
2279 AC_DEFINE_UNQUOTED(MEMSET_LOOP_LIMIT, ${MEMSET_LOOP_LIMIT}, [Define bytes to use libc memset().])
2282 if test "$enable_nls" = yes ; then
2286 # Check for Tcl configuration script tclConfig.sh
2287 if test "$with_tcl" = yes; then
2288 PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
2289 PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
2290 [TCL_INCLUDE_SPEC,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
2291 if test "$TCL_SHARED_BUILD" != 1; then
2292 AC_MSG_ERROR([cannot build PL/Tcl because Tcl is not a shared library
2293 Use --without-tcl to disable building PL/Tcl.])
2295 # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h>
2296 ac_save_CPPFLAGS=$CPPFLAGS
2297 CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS"
2298 AC_CHECK_HEADER(tcl.h, [], [AC_MSG_ERROR([header file <tcl.h> is required for Tcl])])
2299 CPPFLAGS=$ac_save_CPPFLAGS
2302 # check for <perl.h>
2303 if test "$with_perl" = yes; then
2304 ac_save_CPPFLAGS=$CPPFLAGS
2305 CPPFLAGS="$CPPFLAGS $perl_includespec"
2306 AC_CHECK_HEADER(perl.h, [], [AC_MSG_ERROR([header file <perl.h> is required for Perl])],
2307 [#include <EXTERN.h>])
2308 # While we're at it, check that we can link to libperl.
2309 # On most platforms, if perl.h is there then libperl.so will be too, but at
2310 # this writing Debian packages them separately. There is no known reason to
2311 # waste cycles on separate probes for the Tcl or Python libraries, though.
2312 # On some Red Hat platforms, the link attempt can fail if we don't use
2313 # CFLAGS_SL while building the test program.
2314 ac_save_CFLAGS=$CFLAGS
2315 CFLAGS="$CFLAGS $CFLAGS_SL"
2316 pgac_save_LIBS=$LIBS
2317 LIBS="$perl_embed_ldflags"
2318 AC_MSG_CHECKING([for libperl])
2319 AC_LINK_IFELSE([AC_LANG_PROGRAM([
2322 ], [perl_alloc();])],
2323 [AC_MSG_RESULT(yes)],
2325 AC_MSG_ERROR([libperl library is required for Perl])])
2326 LIBS=$pgac_save_LIBS
2327 CFLAGS=$ac_save_CFLAGS
2328 CPPFLAGS=$ac_save_CPPFLAGS
2331 # check for <Python.h>
2332 if test "$with_python" = yes; then
2333 ac_save_CPPFLAGS=$CPPFLAGS
2334 CPPFLAGS="$python_includespec $CPPFLAGS"
2335 AC_CHECK_HEADER(Python.h, [], [AC_MSG_ERROR([header file <Python.h> is required for Python])])
2336 CPPFLAGS=$ac_save_CPPFLAGS
2340 # Check for documentation-building tools
2342 PGAC_PATH_PROGS(XMLLINT, xmllint)
2343 PGAC_PATH_PROGS(XSLTPROC, xsltproc)
2344 PGAC_PATH_PROGS(FOP, fop)
2345 PGAC_PATH_PROGS(DBTOEPUB, dbtoepub)
2348 # Check for test tools
2350 if test "$enable_tap_tests" = yes; then
2351 # Make sure we know where prove is.
2352 PGAC_PATH_PROGS(PROVE, prove)
2353 if test -z "$PROVE"; then
2354 AC_MSG_ERROR([prove not found])
2356 # Check for necessary Perl modules. You might think we should use
2357 # AX_PROG_PERL_MODULES here, but prove might be part of a different Perl
2358 # installation than perl, eg on MSys, so we have to check using prove.
2359 AC_MSG_CHECKING(for Perl modules required for TAP tests)
2360 __CONFIG_HOST_OS__=$host_os; export __CONFIG_HOST_OS__
2361 [modulestderr=`"$PROVE" "$srcdir/config/check_modules.pl" 2>&1 >/dev/null`]
2362 if test $? -eq 0; then
2363 # log the module version details, but don't show them interactively
2364 echo "$modulestderr" >&AS_MESSAGE_LOG_FD
2367 # on failure, though, show the results to the user
2368 AC_MSG_RESULT([$modulestderr])
2369 AC_MSG_ERROR([Additional Perl modules are required to run TAP tests])
2373 # If compiler will take -Wl,--as-needed (or various platform-specific
2374 # spellings thereof) then add that to LDFLAGS. This is much easier than
2375 # trying to filter LIBS to the minimum for each executable.
2376 # On (at least) some Red-Hat-derived systems, this switch breaks linking to
2377 # libreadline; therefore we postpone testing it until we know what library
2378 # dependencies readline has. The test code will try to link with $LIBS.
2379 if test "$with_readline" = yes; then
2380 link_test_func=readline
2385 if test "$PORTNAME" = "darwin"; then
2386 PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-dead_strip_dylibs], $link_test_func)
2387 elif test "$PORTNAME" = "openbsd"; then
2388 PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-Bdynamic], $link_test_func)
2390 PGAC_PROG_CC_LDFLAGS_OPT([-Wl,--as-needed], $link_test_func)
2393 # For linkers that understand --export-dynamic, add that to the LDFLAGS_EX_BE
2394 # (backend specific ldflags). One some platforms this will always fail (e.g.,
2395 # windows), but on others it depends on the choice of linker (e.g., solaris).
2396 # macOS uses -export_dynamic instead. (On macOS, the option is only
2397 # needed when also using -flto, but we add it anyway since it's
2399 PGAC_PROG_CC_LD_VARFLAGS_OPT(LDFLAGS_EX_BE, [-Wl,--export-dynamic], $link_test_func)
2400 if test x"$LDFLAGS_EX_BE" = x""; then
2401 PGAC_PROG_CC_LD_VARFLAGS_OPT(LDFLAGS_EX_BE, [-Wl,-export_dynamic], $link_test_func)
2403 AC_SUBST(LDFLAGS_EX_BE)
2405 # Create compiler version string
2406 if test x"$GCC" = x"yes" ; then
2407 cc_string=`${CC} --version | sed q`
2408 case $cc_string in [[A-Za-z]]*) ;; *) cc_string="GCC $cc_string";; esac
2409 elif test x"$SUN_STUDIO_CC" = x"yes" ; then
2410 cc_string=`${CC} -V 2>&1 | sed q`
2415 AC_DEFINE_UNQUOTED(PG_VERSION_STR,
2416 ["PostgreSQL $PG_VERSION on $host, compiled by $cc_string, `expr $ac_cv_sizeof_void_p \* 8`-bit"],
2417 [A string containing the version number, platform, and C compiler])
2419 # Supply a numeric version string for use by 3rd party add-ons
2420 # awk -F is a regex on some platforms, and not on others, so make "." a tab
2421 [PG_VERSION_NUM="`echo $PG_MAJORVERSION $PG_MINORVERSION |
2422 $AWK '{printf "%d%04d", $1, $2}'`"]
2423 AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number])
2424 AC_SUBST(PG_VERSION_NUM)
2426 # If we are inserting PG_SYSROOT into CPPFLAGS, do so symbolically not
2427 # literally, so that it's possible to override it at build time using
2428 # a command like "make ... PG_SYSROOT=path". This has to be done after
2429 # we've finished all configure checks that depend on CPPFLAGS.
2430 # The same for LDFLAGS, too.
2431 if test x"$PG_SYSROOT" != x; then
2432 CPPFLAGS=`echo "$CPPFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2433 LDFLAGS=`echo "$LDFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2435 AC_SUBST(PG_SYSROOT)
2438 # Begin output steps
2440 AC_MSG_NOTICE([using compiler=$cc_string])
2441 AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
2442 AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS])
2443 AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS])
2444 # Currently only used when LLVM is used
2445 if test "$with_llvm" = yes ; then
2446 AC_MSG_NOTICE([using CXX=$CXX])
2447 AC_MSG_NOTICE([using CXXFLAGS=$CXXFLAGS])
2448 AC_MSG_NOTICE([using CLANG=$CLANG])
2449 AC_MSG_NOTICE([using BITCODE_CFLAGS=$BITCODE_CFLAGS])
2450 AC_MSG_NOTICE([using BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS])
2453 # prepare build tree if outside source tree
2454 # Note 1: test -ef might not exist, but it's more reliable than `pwd`.
2455 # Note 2: /bin/pwd might be better than shell's built-in at getting
2456 # a symlink-free name.
2457 if ( test "$srcdir" -ef . ) >/dev/null 2>&1 || test "`cd $srcdir && /bin/pwd`" = "`/bin/pwd`"; then
2461 if test "$no_create" != yes; then
2462 _AS_ECHO_N([preparing build tree... ])
2463 pgac_abs_top_srcdir=`cd "$srcdir" && pwd`
2464 $SHELL "$ac_aux_dir/prep_buildtree" "$pgac_abs_top_srcdir" "." \
2465 || AC_MSG_ERROR(failed)
2469 AC_SUBST(vpath_build)
2472 AC_CONFIG_FILES([GNUmakefile src/Makefile.global])
2475 src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION}
2476 src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION}
2477 src/include/pg_config_os.h:src/include/port/${template}.h
2478 src/Makefile.port:src/makefiles/Makefile.${template}
2481 if test "$PORTNAME" = "win32"; then
2482 AC_CONFIG_COMMANDS([check_win32_symlinks],[
2483 # Links sometimes fail undetected on Mingw -
2484 # so here we detect it and warn the user
2485 for FILE in $CONFIG_LINKS
2487 # test -e works for symlinks in the MinGW console
2488 test -e `expr "$FILE" : '\([[^:]]*\)'` || AC_MSG_WARN([*** link for $FILE -- please fix by hand])
2493 AC_CONFIG_HEADERS([src/include/pg_config.h],
2495 # Update timestamp for pg_config.h (see Makefile.global)
2496 echo >src/include/stamp-h
2499 AC_CONFIG_HEADERS([src/include/pg_config_ext.h],
2501 # Update timestamp for pg_config_ext.h (see Makefile.global)
2502 echo >src/include/stamp-ext-h
2505 AC_CONFIG_HEADERS([src/interfaces/ecpg/include/ecpg_config.h],
2506 [echo >src/interfaces/ecpg/include/stamp-h])
2510 # Ensure that any meson build directories would reconfigure and see that
2511 # there's a conflicting in-tree build and can error out.
2512 if test "$vpath_build" = "no"; then