Fix redefinition of type in commit e0ece2a981.
[pgsql.git] / configure.ac
blobd713360f340629eee7f63c4cd0c42f5ce5758115
1 dnl Process this file with autoconf to produce a configure script.
2 dnl configure.ac
3 dnl
4 dnl Developers, please strive to achieve this order:
5 dnl
6 dnl 0. Initialization and options processing
7 dnl 1. Programs
8 dnl 2. Libraries
9 dnl 3. Header files
10 dnl 4. Types
11 dnl 5. Structures
12 dnl 6. Compiler characteristics
13 dnl 7. Functions, global variables
14 dnl 8. System services
15 dnl
16 dnl Read the Autoconf manual for details.
17 dnl
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-2025, 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])
45 AC_CANONICAL_HOST
47 template=
48 AC_MSG_CHECKING([which template to use])
50 PGAC_ARG_REQ(with, template, [NAME], [override operating system template],
52   case $withval in
53     list)   echo; ls "$srcdir/src/template"; exit;;
54     *)      if test -f "$srcdir/src/template/$with_template" ; then
55               template=$withval
56             else
57               AC_MSG_ERROR(['$withval' is not a valid template name. Use 'list' for a list.])
58             fi;;
59   esac
62 # --with-template not given
64 case $host_os in
65   cygwin*|msys*) template=cygwin ;;
66   darwin*) template=darwin ;;
67 dragonfly*) template=netbsd ;;
68  freebsd*) template=freebsd ;;
69  linux*|gnu*|k*bsd*-gnu)
70            template=linux ;;
71    mingw*) template=win32 ;;
72   netbsd*) template=netbsd ;;
73  openbsd*) template=openbsd ;;
74  solaris*) template=solaris ;;
75 esac
77   if test x"$template" = x"" ; then
78     AC_MSG_ERROR([[
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...'
86 line.
87 *******************************************************************
88 ]])
89   fi
93 AC_MSG_RESULT([$template])
95 PORTNAME=$template
96 AC_SUBST(PORTNAME)
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.
101 need_tas=no
102 tas_file=dummy.s
104 # Default, works for most platforms, override in template file if needed
105 DLSUFFIX=".so"
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],
135               [],
136               [AC_MSG_ERROR([--disable-integer-datetimes is no longer supported])])
140 # NLS
142 AC_MSG_CHECKING([whether NLS is wanted])
143 PGAC_ARG_OPTARG(enable, nls,
144                 [LANGUAGES], [enable Native Language Support],
145                 [],
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])
150 AC_SUBST(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],
159              [default_port=5432])
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])
218 fi])
219 AC_SUBST(enable_coverage)
222 # DTrace
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)
234 # TAP tests
236 PGAC_ARG_BOOL(enable, tap-tests, no,
237               [enable TAP tests (requires Perl and IPC::Run)])
238 AC_SUBST(enable_tap_tests)
239 AC_ARG_VAR(PG_TEST_EXTRA,
240            [enable selected extra tests (overridden at runtime by PG_TEST_EXTRA environment variable)])
243 # Injection points
245 PGAC_ARG_BOOL(enable, injection-points, no, [enable injection points (for testing)],
246               [AC_DEFINE([USE_INJECTION_POINTS], 1, [Define to 1 to build with injection points. (--enable-injection-points)])])
247 AC_SUBST(enable_injection_points)
250 # Block size
252 AC_MSG_CHECKING([for block size])
253 PGAC_ARG_REQ(with, blocksize, [BLOCKSIZE], [set table block size in kB [8]],
254              [blocksize=$withval],
255              [blocksize=8])
256 case ${blocksize} in
257   1) BLCKSZ=1024;;
258   2) BLCKSZ=2048;;
259   4) BLCKSZ=4096;;
260   8) BLCKSZ=8192;;
261  16) BLCKSZ=16384;;
262  32) BLCKSZ=32768;;
263   *) AC_MSG_ERROR([Invalid block size. Allowed values are 1,2,4,8,16,32.])
264 esac
265 AC_MSG_RESULT([${blocksize}kB])
267 AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
268  Size of a disk block --- this also limits the size of a tuple.  You
269  can set it bigger if you need bigger tuples (although TOAST should
270  reduce the need to have large tuples, since fields can be spread
271  across multiple tuples).
273  BLCKSZ must be a power of 2.  The maximum possible value of BLCKSZ
274  is currently 2^15 (32768).  This is determined by the 15-bit widths
275  of the lp_off and lp_len fields in ItemIdData (see
276  include/storage/itemid.h).
278  Changing BLCKSZ requires an initdb.
282 # Relation segment size
284 PGAC_ARG_REQ(with, segsize, [SEGSIZE], [set table segment size in GB [1]],
285              [segsize=$withval],
286              [segsize=1])
287 PGAC_ARG_REQ(with, segsize-blocks, [SEGSIZE_BLOCKS], [set table segment size in blocks [0]],
288              [segsize_blocks=$withval],
289              [segsize_blocks=0])
291 # If --with-segsize-blocks is non-zero, it is used, --with-segsize
292 # otherwise. segsize-blocks is only really useful for developers wanting to
293 # test segment related code. Warn if both are used.
294 if test $segsize_blocks -ne 0 -a $segsize -ne 1; then
295   AC_MSG_WARN([both --with-segsize and --with-segsize-blocks specified, --with-segsize-blocks wins])
298 AC_MSG_CHECKING([for segment size])
299 if test $segsize_blocks -eq 0; then
300   # this expression is set up to avoid unnecessary integer overflow
301   # blocksize is already guaranteed to be a factor of 1024
302   RELSEG_SIZE=`expr '(' 1024 / ${blocksize} ')' '*' ${segsize} '*' 1024`
303   test $? -eq 0 || exit 1
304   AC_MSG_RESULT([${segsize}GB])
305 else
306   RELSEG_SIZE=$segsize_blocks
307   AC_MSG_RESULT([${RELSEG_SIZE} blocks])
310 AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
311  RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
312  Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
313  relations bigger than that are divided into multiple files.
315  RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
316  This is often 2 GB or 4GB in a 32-bit operating system, unless you
317  have large file support enabled.  By default, we make the limit 1 GB
318  to avoid any possible integer-overflow problems within the OS.
319  A limit smaller than necessary only means we divide a large
320  relation into more chunks than necessary, so it seems best to err
321  in the direction of a small limit.
323  A power-of-2 value is recommended to save a few cycles in md.c,
324  but is not absolutely required.
326  Changing RELSEG_SIZE requires an initdb.
330 # WAL block size
332 AC_MSG_CHECKING([for WAL block size])
333 PGAC_ARG_REQ(with, wal-blocksize, [BLOCKSIZE], [set WAL block size in kB [8]],
334              [wal_blocksize=$withval],
335              [wal_blocksize=8])
336 case ${wal_blocksize} in
337   1) XLOG_BLCKSZ=1024;;
338   2) XLOG_BLCKSZ=2048;;
339   4) XLOG_BLCKSZ=4096;;
340   8) XLOG_BLCKSZ=8192;;
341  16) XLOG_BLCKSZ=16384;;
342  32) XLOG_BLCKSZ=32768;;
343  64) XLOG_BLCKSZ=65536;;
344   *) AC_MSG_ERROR([Invalid WAL block size. Allowed values are 1,2,4,8,16,32,64.])
345 esac
346 AC_MSG_RESULT([${wal_blocksize}kB])
348 AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
349  Size of a WAL file block.  This need have no particular relation to BLCKSZ.
350  XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
351  XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
352  buffers, else direct I/O may fail.
354  Changing XLOG_BLCKSZ requires an initdb.
358 # C compiler
361 # If you don't specify a list of compilers to test, the AC_PROG_CC and
362 # AC_PROG_CXX macros test for a long list of unsupported compilers.
363 pgac_cc_list="gcc cc"
364 pgac_cxx_list="g++ c++"
366 AC_PROG_CC([$pgac_cc_list])
367 AC_PROG_CC_C99()
369 # Error out if the compiler does not support C99, as the codebase
370 # relies on that.
371 if test "$ac_cv_prog_cc_c99" = no; then
372     AC_MSG_ERROR([C compiler "$CC" does not support C99])
375 AC_PROG_CXX([$pgac_cxx_list])
377 # Check if it's Intel's compiler, which (usually) pretends to be gcc,
378 # but has idiosyncrasies of its own.  We assume icc will define
379 # __INTEL_COMPILER regardless of CFLAGS.
380 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __INTEL_COMPILER
381 choke me
382 @%:@endif])], [ICC=yes], [ICC=no])
384 # Check if it's Sun Studio compiler. We assume that
385 # __SUNPRO_C will be defined for Sun Studio compilers
386 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __SUNPRO_C
387 choke me
388 @%:@endif])], [SUN_STUDIO_CC=yes], [SUN_STUDIO_CC=no])
390 AC_SUBST(SUN_STUDIO_CC)
394 # LLVM
396 # Checked early because subsequent tests depend on it.
397 PGAC_ARG_BOOL(with, llvm, no, [build with LLVM based JIT support],
398               [AC_DEFINE([USE_LLVM], 1, [Define to 1 to build with LLVM based JIT support. (--with-llvm)])])
399 AC_SUBST(with_llvm)
400 dnl must use AS_IF here, else AC_REQUIRES inside PGAC_LLVM_SUPPORT malfunctions
401 AS_IF([test "$with_llvm" = yes], [
402   PGAC_LLVM_SUPPORT()
403 ]) # fi
406 unset CFLAGS
407 unset CXXFLAGS
410 # Read the template
412 . "$srcdir/src/template/$template" || exit
414 # C[XX]FLAGS are selected so:
415 # If the user specifies something in the environment, that is used.
416 # else:  If the template file set something, that is used.
417 # else:  If coverage was enabled, don't set anything.
418 # else:  If the compiler is GCC, then we use -O2.
419 # else:  If the compiler is something else, then we use -O, unless debugging.
421 if test "$ac_env_CFLAGS_set" = set; then
422   CFLAGS=$ac_env_CFLAGS_value
423 elif test "${CFLAGS+set}" = set; then
424   : # (keep what template set)
425 elif test "$enable_coverage" = yes; then
426   : # no optimization by default
427 elif test "$GCC" = yes; then
428   CFLAGS="-O2"
429 else
430   # if the user selected debug mode, don't use -O
431   if test "$enable_debug" != yes; then
432     CFLAGS="-O"
433   fi
436 if test "$ac_env_CXXFLAGS_set" = set; then
437   CXXFLAGS=$ac_env_CXXFLAGS_value
438 elif test "${CXXFLAGS+set}" = set; then
439   : # (keep what template set)
440 elif test "$enable_coverage" = yes; then
441   : # no optimization by default
442 elif test "$GCC" = yes; then
443   CXXFLAGS="-O2"
444 else
445   # if the user selected debug mode, don't use -O
446   if test "$enable_debug" != yes; then
447     CXXFLAGS="-O"
448   fi
451 # When generating bitcode (for inlining) we always want to use -O2
452 # even when --enable-debug is specified. The bitcode is not going to
453 # be used for line-by-line debugging, and JIT inlining doesn't work
454 # without at least -O1 (otherwise clang will emit 'noinline'
455 # attributes everywhere), which is bad for testing.  Still allow the
456 # environment to override if done explicitly.
457 if test "$ac_env_BITCODE_CFLAGS_set" = set; then
458   BITCODE_CFLAGS=$ac_env_BITCODE_CFLAGS_value
459 else
460   BITCODE_CFLAGS="-O2 $BITCODE_CFLAGS"
462 if test "$ac_env_BITCODE_CXXFLAGS_set" = set; then
463   BITCODE_CXXFLAGS=$ac_env_BITCODE_CXXFLAGS_value
464 else
465   BITCODE_CXXFLAGS="-O2 $BITCODE_CXXFLAGS"
468 # C[XX]FLAGS we determined above will be added back at the end
469 user_CFLAGS=$CFLAGS
470 CFLAGS=""
471 user_CXXFLAGS=$CXXFLAGS
472 CXXFLAGS=""
473 user_BITCODE_CFLAGS=$BITCODE_CFLAGS
474 BITCODE_CFLAGS=""
475 user_BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS
476 BITCODE_CXXFLAGS=""
478 # set CFLAGS_UNROLL_LOOPS and CFLAGS_VECTORIZE from the environment, if present
479 if test "$ac_env_CFLAGS_UNROLL_LOOPS_set" = set; then
480   CFLAGS_UNROLL_LOOPS=$ac_env_CFLAGS_UNROLL_LOOPS_value
482 if test "$ac_env_CFLAGS_VECTORIZE_set" = set; then
483   CFLAGS_VECTORIZE=$ac_env_CFLAGS_VECTORIZE_value
486 # Some versions of GCC support some additional useful warning flags.
487 # Check whether they are supported, and add them to CFLAGS if so.
488 # ICC pretends to be GCC but it's lying; it doesn't support these flags,
489 # but has its own.  Also check other compiler-specific flags here.
491 if test "$GCC" = yes -a "$ICC" = no; then
492   CFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith"
493   CXXFLAGS="-Wall -Wpointer-arith"
494   # These work in some but not all gcc versions
495   save_CFLAGS=$CFLAGS
496   PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
497   # -Wdeclaration-after-statement isn't applicable for C++.  Specific C files
498   # disable it, so AC_SUBST the negative form.
499   PERMIT_DECLARATION_AFTER_STATEMENT=
500   if test x"$save_CFLAGS" != x"$CFLAGS"; then
501     PERMIT_DECLARATION_AFTER_STATEMENT=-Wno-declaration-after-statement
502   fi
503   AC_SUBST(PERMIT_DECLARATION_AFTER_STATEMENT)
504   # Really don't want VLAs to be used in our dialect of C
505   PGAC_PROG_CC_CFLAGS_OPT([-Werror=vla])
506   # On macOS, complain about usage of symbols newer than the deployment target
507   PGAC_PROG_CC_CFLAGS_OPT([-Werror=unguarded-availability-new])
508   PGAC_PROG_CXX_CFLAGS_OPT([-Werror=unguarded-availability-new])
509   # -Wvla is not applicable for C++
510   PGAC_PROG_CC_CFLAGS_OPT([-Wendif-labels])
511   PGAC_PROG_CXX_CFLAGS_OPT([-Wendif-labels])
512   PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-format-attribute])
513   PGAC_PROG_CXX_CFLAGS_OPT([-Wmissing-format-attribute])
514   PGAC_PROG_CC_CFLAGS_OPT([-Wimplicit-fallthrough=3])
515   PGAC_PROG_CXX_CFLAGS_OPT([-Wimplicit-fallthrough=3])
516   PGAC_PROG_CC_CFLAGS_OPT([-Wcast-function-type])
517   PGAC_PROG_CXX_CFLAGS_OPT([-Wcast-function-type])
518   PGAC_PROG_CC_CFLAGS_OPT([-Wshadow=compatible-local])
519   PGAC_PROG_CXX_CFLAGS_OPT([-Wshadow=compatible-local])
520   # This was included in -Wall/-Wformat in older GCC versions
521   PGAC_PROG_CC_CFLAGS_OPT([-Wformat-security])
522   PGAC_PROG_CXX_CFLAGS_OPT([-Wformat-security])
523   # gcc 14+, clang for a while
524   # (Supported in C++ by clang but not gcc.  For consistency, omit in C++.)
525   save_CFLAGS=$CFLAGS
526   PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-variable-declarations])
527   PERMIT_MISSING_VARIABLE_DECLARATIONS=
528   if test x"$save_CFLAGS" != x"$CFLAGS"; then
529     PERMIT_MISSING_VARIABLE_DECLARATIONS=-Wno-missing-variable-declarations
530   fi
531   AC_SUBST(PERMIT_MISSING_VARIABLE_DECLARATIONS)
532   # Disable strict-aliasing rules; needed for gcc 3.3+
533   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
534   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
535   # Disable optimizations that assume no overflow; needed for gcc 4.3+
536   PGAC_PROG_CC_CFLAGS_OPT([-fwrapv])
537   PGAC_PROG_CXX_CFLAGS_OPT([-fwrapv])
538   # Disable FP optimizations that cause various errors on gcc 4.5+ or maybe 4.6+
539   PGAC_PROG_CC_CFLAGS_OPT([-fexcess-precision=standard])
540   PGAC_PROG_CXX_CFLAGS_OPT([-fexcess-precision=standard])
541   # Optimization flags for specific files that benefit from loop unrolling
542   PGAC_PROG_CC_VAR_OPT(CFLAGS_UNROLL_LOOPS, [-funroll-loops])
543   # Optimization flags for specific files that benefit from vectorization
544   PGAC_PROG_CC_VAR_OPT(CFLAGS_VECTORIZE, [-ftree-vectorize])
545   #
546   # The following tests want to suppress various unhelpful warnings by adding
547   # -Wno-foo switches.  But gcc won't complain about unrecognized -Wno-foo
548   # switches, so we have to test for the positive form and if that works,
549   # add the negative form.  Note that tests of this form typically need to
550   # be duplicated in the BITCODE_CFLAGS setup stanza below.
551   #
552   # Suppress clang's unhelpful unused-command-line-argument warnings.
553   NOT_THE_CFLAGS=""
554   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wunused-command-line-argument])
555   if test -n "$NOT_THE_CFLAGS"; then
556     CFLAGS="$CFLAGS -Wno-unused-command-line-argument"
557   fi
558   # Remove clang 12+'s compound-token-split-by-macro, as this causes a lot
559   # of warnings when building plperl because of usages in the Perl headers.
560   NOT_THE_CFLAGS=""
561   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
562   if test -n "$NOT_THE_CFLAGS"; then
563     CFLAGS="$CFLAGS -Wno-compound-token-split-by-macro"
564   fi
565   # Similarly disable useless truncation warnings from gcc 8+
566   NOT_THE_CFLAGS=""
567   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wformat-truncation])
568   if test -n "$NOT_THE_CFLAGS"; then
569     CFLAGS="$CFLAGS -Wno-format-truncation"
570   fi
571   NOT_THE_CFLAGS=""
572   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wstringop-truncation])
573   if test -n "$NOT_THE_CFLAGS"; then
574     CFLAGS="$CFLAGS -Wno-stringop-truncation"
575   fi
576   # Suppress clang 16's strict warnings about function casts
577   NOT_THE_CFLAGS=""
578   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wcast-function-type-strict])
579   if test -n "$NOT_THE_CFLAGS"; then
580     CFLAGS="$CFLAGS -Wno-cast-function-type-strict"
581   fi
582 elif test "$ICC" = yes; then
583   # Intel's compiler has a bug/misoptimization in checking for
584   # division by NAN (NaN == 0), -mp1 fixes it, so add it to the CFLAGS.
585   PGAC_PROG_CC_CFLAGS_OPT([-mp1])
586   PGAC_PROG_CXX_CFLAGS_OPT([-mp1])
587   # Make sure strict aliasing is off (though this is said to be the default)
588   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
589   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
592 # If the compiler knows how to hide symbols, add the switch needed for that to
593 # CFLAGS_SL_MODULE and define HAVE_VISIBILITY_ATTRIBUTE.
595 # This is done separately from the above because -fvisibility is supported by
596 # quite a few different compilers, making the required repetition bothersome.
598 # We might need to add a separate test to check if
599 # __attribute__((visibility("hidden"))) is supported, if we encounter a
600 # compiler that supports one of the supported variants of -fvisibility=hidden
601 # but uses a different syntax to mark a symbol as exported.
602 if test "$GCC" = yes -o "$SUN_STUDIO_CC" = yes ; then
603   PGAC_PROG_CC_VAR_OPT(CFLAGS_SL_MODULE, [-fvisibility=hidden])
604   # For C++ we additionally want -fvisibility-inlines-hidden
605   PGAC_PROG_VARCXX_VARFLAGS_OPT(CXX, CXXFLAGS_SL_MODULE, [-fvisibility=hidden])
606   PGAC_PROG_VARCXX_VARFLAGS_OPT(CXX, CXXFLAGS_SL_MODULE, [-fvisibility-inlines-hidden])
607   have_visibility_attribute=$pgac_cv_prog_CC_cflags__fvisibility_hidden
610 if test "$have_visibility_attribute" = "yes"; then
611   AC_DEFINE([HAVE_VISIBILITY_ATTRIBUTE], 1,
612             [Define to 1 if your compiler knows the visibility("hidden") attribute.])
615 AC_SUBST(CFLAGS_UNROLL_LOOPS)
616 AC_SUBST(CFLAGS_VECTORIZE)
617 AC_SUBST(CFLAGS_SL_MODULE)
618 AC_SUBST(CXXFLAGS_SL_MODULE)
620 # Determine flags used to emit bitcode for JIT inlining.
621 # 1. We must duplicate any behaviour-changing compiler flags used above,
622 # to keep compatibility with the compiler used for normal Postgres code.
623 # 2. We don't bother to duplicate extra-warnings switches --- seeing a
624 # warning in the main build is enough.
625 # 3. But we must duplicate -Wno-warning flags, else we'll see those anyway.
626 if test "$with_llvm" = yes ; then
627   CLANGXX="$CLANG -xc++"
629   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fno-strict-aliasing])
630   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fno-strict-aliasing])
631   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fwrapv])
632   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fwrapv])
633   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fexcess-precision=standard])
634   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fexcess-precision=standard])
636   # Ideally bitcode should perhaps match $CC's use, or not, of outline atomic
637   # functions, but for now we err on the side of suppressing them in bitcode,
638   # because we can't assume they're available at runtime.  This affects aarch64
639   # builds using the basic armv8-a ISA without LSE support.
640   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-mno-outline-atomics])
641   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANG, BITCODE_CXXFLAGS, [-mno-outline-atomics])
643   NOT_THE_CFLAGS=""
644   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wunused-command-line-argument])
645   if test -n "$NOT_THE_CFLAGS"; then
646     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-unused-command-line-argument"
647   fi
648   NOT_THE_CFLAGS=""
649   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
650   if test -n "$NOT_THE_CFLAGS"; then
651     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-compound-token-split-by-macro"
652   fi
653   NOT_THE_CFLAGS=""
654   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wformat-truncation])
655   if test -n "$NOT_THE_CFLAGS"; then
656     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-format-truncation"
657   fi
658   NOT_THE_CFLAGS=""
659   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wstringop-truncation])
660   if test -n "$NOT_THE_CFLAGS"; then
661     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-stringop-truncation"
662   fi
665 # supply -g if --enable-debug
666 if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
667   CFLAGS="$CFLAGS -g"
670 if test "$enable_debug" = yes && test "$ac_cv_prog_cxx_g" = yes; then
671   CXXFLAGS="$CXXFLAGS -g"
674 # enable code coverage if --enable-coverage
675 if test "$enable_coverage" = yes; then
676   if test "$GCC" = yes; then
677     CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
678     CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
679   else
680     AC_MSG_ERROR([--enable-coverage is supported only when using GCC])
681   fi
684 # enable profiling if --enable-profiling
685 if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
686   if test "$GCC" = yes; then
687     AC_DEFINE([PROFILE_PID_DIR], 1,
688            [Define to 1 to allow profiling output to be saved separately for each process.])
689     CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
690     CXXFLAGS="$CXXFLAGS -pg $PLATFORM_PROFILE_FLAGS"
691   else
692     AC_MSG_ERROR([--enable-profiling is supported only when using GCC])
693   fi
696 # On Solaris, we need these #defines to get POSIX-conforming versions
697 # of many interfaces (sigwait, getpwuid_r, shmdt, ...).
698 if test "$PORTNAME" = "solaris"; then
699   CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=200112L -D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS"
702 # We already have this in Makefile.win32, but configure needs it too
703 if test "$PORTNAME" = "win32"; then
704   CPPFLAGS="$CPPFLAGS -I$srcdir/src/include/port/win32"
707 # Now that we're done automatically adding stuff to C[XX]FLAGS, put back the
708 # user-specified flags (if any) at the end.  This lets users override
709 # the automatic additions.
710 CFLAGS="$CFLAGS $user_CFLAGS"
711 CXXFLAGS="$CXXFLAGS $user_CXXFLAGS"
712 BITCODE_CFLAGS="$BITCODE_CFLAGS $user_BITCODE_CFLAGS"
713 BITCODE_CXXFLAGS="$BITCODE_CXXFLAGS $user_BITCODE_CXXFLAGS"
715 AC_SUBST(BITCODE_CFLAGS)
716 AC_SUBST(BITCODE_CXXFLAGS)
718 # The template file must set up CFLAGS_SL; we don't support user override
719 AC_SUBST(CFLAGS_SL)
721 # Check if the compiler still works with the final flag settings
722 # (note, we're not checking that for CXX, which is optional)
723 AC_MSG_CHECKING([whether the C compiler still works])
724 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
725   [AC_MSG_RESULT(yes)],
726   [AC_MSG_RESULT(no)
727    AC_MSG_ERROR([cannot proceed])])
729 # Defend against gcc -ffast-math
730 if test "$GCC" = yes; then
731 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifdef __FAST_MATH__
732 choke me
733 @%:@endif])], [], [AC_MSG_ERROR([do not put -ffast-math in CFLAGS])])
736 # Defend against clang being used on x86-32 without SSE2 enabled.  As current
737 # versions of clang do not understand -fexcess-precision=standard, the use of
738 # x87 floating point operations leads to problems like isinf possibly returning
739 # false for a value that is infinite when converted from the 80bit register to
740 # the 8byte memory representation.
742 # Only perform the test if the compiler doesn't understand
743 # -fexcess-precision=standard, that way a potentially fixed compiler will work
744 # automatically.
745 if test "$pgac_cv_prog_CC_cflags__fexcess_precision_standard" = no; then
746 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
747 @%:@if defined(__clang__) && defined(__i386__) && !defined(__SSE2_MATH__)
748 choke me
749 @%:@endif
750 ])], [],
751 [AC_MSG_ERROR([Compiling PostgreSQL with clang, on 32bit x86, requires SSE2 support. Use -msse2 or use gcc.])])
754 AC_PROG_CPP
755 AC_SUBST(GCC)
759 # Set up TAS assembly code if needed; the template file has now had its
760 # chance to request this.
762 AC_CONFIG_LINKS([src/backend/port/tas.s:src/backend/port/tas/${tas_file}])
764 if test "$need_tas" = yes ; then
765   TAS=tas.o
766 else
767   TAS=""
769 AC_SUBST(TAS)
771 AC_SUBST(DLSUFFIX)dnl
772 AC_DEFINE_UNQUOTED([DLSUFFIX], ["$DLSUFFIX"],
773                    [Define to the file name extension of dynamically-loadable modules.])
776 # Set up pkg_config in case we need it below
778 PKG_PROG_PKG_CONFIG
781 # Automatic dependency tracking
783 PGAC_ARG_BOOL(enable, depend, no, [turn on automatic dependency tracking],
784               [autodepend=yes])
785 AC_SUBST(autodepend)
789 # Enable assert checks
791 PGAC_ARG_BOOL(enable, cassert, no, [enable assertion checks (for debugging)],
792               [AC_DEFINE([USE_ASSERT_CHECKING], 1,
793                          [Define to 1 to build with assertion checks. (--enable-cassert)])])
797 # Include directories
799 ac_save_IFS=$IFS
800 IFS="${IFS}${PATH_SEPARATOR}"
801 # SRCH_INC comes from the template file
802 for dir in $with_includes $SRCH_INC; do
803   if test -d "$dir"; then
804     INCLUDES="$INCLUDES -I$dir"
805   else
806     AC_MSG_WARN([*** Include directory $dir does not exist.])
807   fi
808 done
809 IFS=$ac_save_IFS
813 # Library directories
815 ac_save_IFS=$IFS
816 IFS="${IFS}${PATH_SEPARATOR}"
817 # LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
818 for dir in $LIBRARY_DIRS $SRCH_LIB; do
819   if test -d "$dir"; then
820     LIBDIRS="$LIBDIRS -L$dir"
821   else
822     AC_MSG_WARN([*** Library directory $dir does not exist.])
823   fi
824 done
825 IFS=$ac_save_IFS
828 # ICU
830 AC_MSG_CHECKING([whether to build with ICU support])
831 PGAC_ARG_BOOL(with, icu, yes, [build without ICU support],
832               [AC_DEFINE([USE_ICU], 1, [Define to build with ICU support. (--with-icu)])])
833 AC_MSG_RESULT([$with_icu])
834 AC_SUBST(with_icu)
836 if test "$with_icu" = yes; then
837   PKG_CHECK_MODULES(ICU, icu-uc icu-i18n)
841 # Optionally build Tcl modules (PL/Tcl)
843 AC_MSG_CHECKING([whether to build with Tcl])
844 PGAC_ARG_BOOL(with, tcl, no, [build Tcl modules (PL/Tcl)])
845 AC_MSG_RESULT([$with_tcl])
846 AC_SUBST([with_tcl])
848 # We see if the path to the Tcl/Tk configuration scripts is specified.
849 # This will override the use of tclsh to find the paths to search.
851 PGAC_ARG_REQ(with, tclconfig, [DIR], [tclConfig.sh is in DIR])
854 # Optionally build Perl modules (PL/Perl)
856 AC_MSG_CHECKING([whether to build Perl modules])
857 PGAC_ARG_BOOL(with, perl, no, [build Perl modules (PL/Perl)])
858 AC_MSG_RESULT([$with_perl])
859 AC_SUBST(with_perl)
862 # Optionally build Python modules (PL/Python)
864 AC_MSG_CHECKING([whether to build Python modules])
865 PGAC_ARG_BOOL(with, python, no, [build Python modules (PL/Python)])
866 AC_MSG_RESULT([$with_python])
867 AC_SUBST(with_python)
870 # GSSAPI
872 AC_MSG_CHECKING([whether to build with GSSAPI support])
873 PGAC_ARG_BOOL(with, gssapi, no, [build with GSSAPI support],
875   AC_DEFINE(ENABLE_GSS, 1, [Define to build with GSSAPI support. (--with-gssapi)])
876   krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
878 AC_MSG_RESULT([$with_gssapi])
879 AC_SUBST(with_gssapi)
882 AC_SUBST(krb_srvtab)
886 # Kerberos configuration parameters
888 PGAC_ARG_REQ(with, krb-srvnam,
889              [NAME], [default service principal name in Kerberos (GSSAPI) [postgres]],
890              [],
891              [with_krb_srvnam="postgres"])
892 AC_SUBST(with_krb_srvnam)
893 AC_DEFINE_UNQUOTED([PG_KRB_SRVNAM], ["$with_krb_srvnam"],
894                    [Define to the name of the default PostgreSQL service principal in Kerberos (GSSAPI). (--with-krb-srvnam=NAME)])
898 # PAM
900 AC_MSG_CHECKING([whether to build with PAM support])
901 PGAC_ARG_BOOL(with, pam, no,
902               [build with PAM support],
903               [AC_DEFINE([USE_PAM], 1, [Define to 1 to build with PAM support. (--with-pam)])])
904 AC_MSG_RESULT([$with_pam])
908 # BSD AUTH
910 AC_MSG_CHECKING([whether to build with BSD Authentication support])
911 PGAC_ARG_BOOL(with, bsd-auth, no,
912               [build with BSD Authentication support],
913               [AC_DEFINE([USE_BSD_AUTH], 1, [Define to 1 to build with BSD Authentication support. (--with-bsd-auth)])])
914 AC_MSG_RESULT([$with_bsd_auth])
918 # LDAP
920 AC_MSG_CHECKING([whether to build with LDAP support])
921 PGAC_ARG_BOOL(with, ldap, no,
922               [build with LDAP support],
923               [AC_DEFINE([USE_LDAP], 1, [Define to 1 to build with LDAP support. (--with-ldap)])])
924 AC_MSG_RESULT([$with_ldap])
925 AC_SUBST(with_ldap)
929 # Bonjour
931 AC_MSG_CHECKING([whether to build with Bonjour support])
932 PGAC_ARG_BOOL(with, bonjour, no,
933               [build with Bonjour support],
934               [AC_DEFINE([USE_BONJOUR], 1, [Define to 1 to build with Bonjour support. (--with-bonjour)])])
935 AC_MSG_RESULT([$with_bonjour])
939 # SELinux
941 AC_MSG_CHECKING([whether to build with SELinux support])
942 PGAC_ARG_BOOL(with, selinux, no, [build with SELinux support])
943 AC_SUBST(with_selinux)
944 AC_MSG_RESULT([$with_selinux])
947 # Systemd
949 AC_MSG_CHECKING([whether to build with systemd support])
950 PGAC_ARG_BOOL(with, systemd, no, [build with systemd support],
951               [AC_DEFINE([USE_SYSTEMD], 1, [Define to build with systemd support. (--with-systemd)])])
952 AC_SUBST(with_systemd)
953 AC_MSG_RESULT([$with_systemd])
956 # Readline
958 PGAC_ARG_BOOL(with, readline, yes,
959               [do not use GNU Readline nor BSD Libedit for editing])
960 # readline on MinGW has problems with backslashes in psql and other bugs.
961 # This is particularly a problem with non-US code pages.
962 # Therefore disable its use until we understand the cause. 2004-07-20
963 if test "$PORTNAME" = "win32"; then
964   if test "$with_readline" = yes; then
965     AC_MSG_WARN([*** Readline does not work on MinGW --- disabling])
966     with_readline=no
967   fi
969 AC_SUBST(with_readline)
973 # Prefer libedit
975 PGAC_ARG_BOOL(with, libedit-preferred, no,
976               [prefer BSD Libedit over GNU Readline])
980 # UUID library
982 # There are at least three UUID libraries in common use: the FreeBSD/NetBSD
983 # library, the e2fsprogs libuuid (now part of util-linux-ng), and the OSSP
984 # UUID library.  More than one of these might be present on a given platform,
985 # so we make the user say which one she wants.
987 PGAC_ARG_REQ(with, uuid, [LIB], [build contrib/uuid-ossp using LIB (bsd,e2fs,ossp)])
988 if test x"$with_uuid" = x"" ; then
989   with_uuid=no
991 PGAC_ARG_BOOL(with, ossp-uuid, no, [obsolete spelling of --with-uuid=ossp])
992 if test "$with_ossp_uuid" = yes ; then
993   with_uuid=ossp
996 if test "$with_uuid" != no ; then
997   if test "$with_uuid" = bsd ; then
998     AC_DEFINE([HAVE_UUID_BSD], 1, [Define to 1 if you have BSD UUID support.])
999   elif test "$with_uuid" = e2fs ; then
1000     AC_DEFINE([HAVE_UUID_E2FS], 1, [Define to 1 if you have E2FS UUID support.])
1001   elif test "$with_uuid" = ossp ; then
1002     AC_DEFINE([HAVE_UUID_OSSP], 1, [Define to 1 if you have OSSP UUID support.])
1003   else
1004     AC_MSG_ERROR([--with-uuid must specify one of bsd, e2fs, or ossp])
1005   fi
1007 AC_SUBST(with_uuid)
1011 # XML
1013 AC_MSG_CHECKING([whether to build with XML support])
1014 PGAC_ARG_BOOL(with, libxml, no, [build with XML support],
1015               [AC_DEFINE([USE_LIBXML], 1, [Define to 1 to build with XML support. (--with-libxml)])])
1016 AC_MSG_RESULT([$with_libxml])
1017 AC_SUBST(with_libxml)
1019 if test "$with_libxml" = yes ; then
1020   # Check pkg-config, then xml2-config.  But for backwards compatibility,
1021   # setting XML2_CONFIG overrides pkg-config.
1022   AC_ARG_VAR(XML2_CONFIG, [path to xml2-config utility])dnl
1023   have_libxml2_pkg_config=no
1024   if test -z "$XML2_CONFIG" -a -n "$PKG_CONFIG"; then
1025     PKG_CHECK_MODULES(XML2, [libxml-2.0 >= 2.6.23],
1026                       [have_libxml2_pkg_config=yes], [# do nothing])
1027   fi
1028   if test "$have_libxml2_pkg_config" = no ; then
1029     PGAC_PATH_PROGS(XML2_CONFIG, xml2-config)
1030     if test -n "$XML2_CONFIG"; then
1031       XML2_CFLAGS=`$XML2_CONFIG --cflags`
1032       XML2_LIBS=`$XML2_CONFIG --libs`
1033     fi
1034   fi
1035   # Note the user could also set XML2_CFLAGS/XML2_LIBS directly
1036   for pgac_option in $XML2_CFLAGS; do
1037     case $pgac_option in
1038       -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1039     esac
1040   done
1041   for pgac_option in $XML2_LIBS; do
1042     case $pgac_option in
1043       -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1044     esac
1045   done
1050 # XSLT
1052 PGAC_ARG_BOOL(with, libxslt, no, [use XSLT support when building contrib/xml2],
1053               [AC_DEFINE([USE_LIBXSLT], 1, [Define to 1 to use XSLT support when building contrib/xml2. (--with-libxslt)])])
1056 AC_SUBST(with_libxslt)
1059 # tzdata
1061 PGAC_ARG_REQ(with, system-tzdata,
1062              [DIR], [use system time zone data in DIR])
1063 AC_SUBST(with_system_tzdata)
1066 # Zlib
1068 PGAC_ARG_BOOL(with, zlib, yes,
1069               [do not use Zlib])
1070 AC_SUBST(with_zlib)
1073 # LZ4
1075 AC_MSG_CHECKING([whether to build with LZ4 support])
1076 PGAC_ARG_BOOL(with, lz4, no, [build with LZ4 support],
1077               [AC_DEFINE([USE_LZ4], 1, [Define to 1 to build with LZ4 support. (--with-lz4)])])
1078 AC_MSG_RESULT([$with_lz4])
1079 AC_SUBST(with_lz4)
1081 if test "$with_lz4" = yes; then
1082   PKG_CHECK_MODULES(LZ4, liblz4)
1083   # We only care about -I, -D, and -L switches;
1084   # note that -llz4 will be added by AC_CHECK_LIB below.
1085   for pgac_option in $LZ4_CFLAGS; do
1086     case $pgac_option in
1087       -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1088     esac
1089   done
1090   for pgac_option in $LZ4_LIBS; do
1091     case $pgac_option in
1092       -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1093     esac
1094   done
1098 # ZSTD
1100 AC_MSG_CHECKING([whether to build with ZSTD support])
1101 PGAC_ARG_BOOL(with, zstd, no, [build with ZSTD support],
1102               [AC_DEFINE([USE_ZSTD], 1, [Define to 1 to build with ZSTD support. (--with-zstd)])])
1103 AC_MSG_RESULT([$with_zstd])
1104 AC_SUBST(with_zstd)
1106 if test "$with_zstd" = yes; then
1107   PKG_CHECK_MODULES(ZSTD, libzstd >= 1.4.0)
1108   # We only care about -I, -D, and -L switches;
1109   # note that -lzstd will be added by AC_CHECK_LIB below.
1110   for pgac_option in $ZSTD_CFLAGS; do
1111     case $pgac_option in
1112       -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1113     esac
1114   done
1115   for pgac_option in $ZSTD_LIBS; do
1116     case $pgac_option in
1117       -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1118     esac
1119   done
1122 # Assignments
1125 CPPFLAGS="$CPPFLAGS $INCLUDES"
1126 LDFLAGS="$LDFLAGS $LIBDIRS"
1128 AC_ARG_VAR(LDFLAGS_EX, [extra linker flags for linking executables only])
1129 AC_ARG_VAR(LDFLAGS_SL, [extra linker flags for linking shared libraries only])
1131 PGAC_CHECK_STRIP
1132 AC_CHECK_TOOL(AR, ar, ar)
1133 if test "$PORTNAME" = "win32"; then
1134   AC_CHECK_TOOL(WINDRES, windres, windres)
1137 AC_PROG_INSTALL
1138 # When Autoconf chooses install-sh as install program it tries to generate
1139 # a relative path to it in each makefile where it substitutes it. This clashes
1140 # with our Makefile.global concept. This workaround helps.
1141 case $INSTALL in
1142   *install-sh*) install_bin='';;
1143   *) install_bin=$INSTALL;;
1144 esac
1145 AC_SUBST(install_bin)
1147 PGAC_PATH_PROGS(TAR, tar)
1148 AC_PROG_LN_S
1149 AC_PROG_MKDIR_P
1150 # When Autoconf chooses install-sh as mkdir -p program it tries to generate
1151 # a relative path to it in each makefile where it substitutes it. This clashes
1152 # with our Makefile.global concept. This workaround helps.
1153 case $MKDIR_P in
1154   *install-sh*) MKDIR_P='\${SHELL} \${top_srcdir}/config/install-sh -c -d';;
1155 esac
1157 PGAC_PATH_BISON
1158 PGAC_PATH_FLEX
1160 PGAC_PATH_PERL
1161 if test "$with_perl" = yes; then
1162   if test -z "$PERL"; then
1163     AC_MSG_ERROR([Perl not found])
1164   fi
1165   PGAC_CHECK_PERL_CONFIGS([archlibexp,privlibexp,useshrplib])
1166   if test "$perl_useshrplib" != yes && test "$perl_useshrplib" != true; then
1167     AC_MSG_ERROR([cannot build PL/Perl because libperl is not a shared library
1168 You might have to rebuild your Perl installation.  Refer to the
1169 documentation for details.  Use --without-perl to disable building
1170 PL/Perl.])
1171   fi
1172   # On most platforms, archlibexp is also where the Perl include files live ...
1173   perl_includespec="-I$perl_archlibexp/CORE"
1174   # ... but on newer macOS versions, we must use -iwithsysroot to look
1175   # under $PG_SYSROOT
1176   if test \! -f "$perl_archlibexp/CORE/perl.h" ; then
1177     if test -f "$PG_SYSROOT$perl_archlibexp/CORE/perl.h" ; then
1178       perl_includespec="-iwithsysroot $perl_archlibexp/CORE"
1179     fi
1180   fi
1181   AC_SUBST(perl_includespec)dnl
1182   PGAC_CHECK_PERL_EMBED_CCFLAGS
1183   PGAC_CHECK_PERL_EMBED_LDFLAGS
1186 if test "$with_python" = yes; then
1187   PGAC_PATH_PYTHON
1188   PGAC_CHECK_PYTHON_EMBED_SETUP
1191 if test x"$cross_compiling" = x"yes" && test -z "$with_system_tzdata"; then
1192   PGAC_PATH_PROGS(ZIC, zic)
1193   if test -z "$ZIC"; then
1194     AC_MSG_ERROR([
1195 When cross-compiling, either use the option --with-system-tzdata to use
1196 existing time-zone data, or set the environment variable ZIC to a zic
1197 program to use during the build.])
1198   fi
1202 # Pthreads
1204 # For each platform, we need to know about any special compile and link
1205 # libraries, and whether the normal C function names are thread-safe.
1206 # WIN32 doesn't need the pthread tests;  it always uses threads
1208 # These tests are run before the library-tests, because linking with the
1209 # other libraries can pull in the pthread functions as a side-effect.  We
1210 # want to use the -pthread or similar flags directly, and not rely on
1211 # the side-effects of linking with some other library.
1213 dnl note: We have to use AS_IF here rather than plain if. The AC_CHECK_HEADER
1214 dnl invocation below is the first one in the script, and autoconf generates
1215 dnl additional code for that, which must not be inside the if-block. AS_IF
1216 dnl knows how to do that.
1217 AS_IF([test "$PORTNAME" != "win32"],
1218 [ # then
1219 AX_PTHREAD      # set thread flags
1221 # Some platforms use these, so just define them.  They can't hurt if they
1222 # are not supported.
1223 PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE"
1225 # Check for *_r functions
1226 _CFLAGS="$CFLAGS"
1227 _LIBS="$LIBS"
1228 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
1229 LIBS="$LIBS $PTHREAD_LIBS"
1231 AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([
1232 pthread.h not found])])
1234 AC_CHECK_FUNCS([strerror_r])
1236 # Do test here with the proper thread flags
1237 PGAC_FUNC_STRERROR_R_INT
1239 CFLAGS="$_CFLAGS"
1240 LIBS="$_LIBS"
1242 ], [ # else
1243 # do not use values from template file
1244 PTHREAD_CFLAGS=
1245 PTHREAD_LIBS=
1246 ]) # fi
1248 AC_SUBST(PTHREAD_CFLAGS)
1249 AC_SUBST(PTHREAD_LIBS)
1253 ## Libraries
1255 ## Most libraries are included only if they demonstrably provide a function
1256 ## we need, but libm is an exception: always include it, because there are
1257 ## too many compilers that play cute optimization games that will break
1258 ## probes for standard functions such as pow().
1261 AC_CHECK_LIB(m, main)
1262 AC_SEARCH_LIBS(setproctitle, util)
1263 # gcc/clang's sanitizer helper library provides dlopen but not dlsym, thus
1264 # when enabling asan the dlopen check doesn't notice that -ldl is actually
1265 # required. Just checking for dlsym() ought to suffice.
1266 AC_SEARCH_LIBS(dlsym, dl)
1267 AC_SEARCH_LIBS(socket, [socket ws2_32])
1268 AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
1269 AC_SEARCH_LIBS(shm_open, rt)
1270 AC_SEARCH_LIBS(shm_unlink, rt)
1271 AC_SEARCH_LIBS(clock_gettime, rt)
1272 # Cygwin:
1273 AC_SEARCH_LIBS(shmget, cygipc)
1274 # *BSD:
1275 AC_SEARCH_LIBS(backtrace_symbols, execinfo)
1277 AC_SEARCH_LIBS(pthread_barrier_wait, pthread)
1279 if test "$with_readline" = yes; then
1280   PGAC_CHECK_READLINE
1281   if test x"$pgac_cv_check_readline" = x"no"; then
1282     AC_MSG_ERROR([readline library not found
1283 If you have readline already installed, see config.log for details on the
1284 failure.  It is possible the compiler isn't looking in the proper directory.
1285 Use --without-readline to disable readline support.])
1286   fi
1289 if test "$with_zlib" = yes; then
1290   AC_CHECK_LIB(z, inflate, [],
1291                [AC_MSG_ERROR([zlib library not found
1292 If you have zlib already installed, see config.log for details on the
1293 failure.  It is possible the compiler isn't looking in the proper directory.
1294 Use --without-zlib to disable zlib support.])])
1297 if test "$with_gssapi" = yes ; then
1298   if test "$PORTNAME" != "win32"; then
1299     AC_SEARCH_LIBS(gss_store_cred_into, [gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'], [],
1300                    [AC_MSG_ERROR([could not find function 'gss_store_cred_into' required for GSSAPI])])
1301   else
1302     LIBS="$LIBS -lgssapi32"
1303   fi
1307 # SSL Library
1309 # There is currently only one supported SSL/TLS library: OpenSSL.
1311 PGAC_ARG_REQ(with, ssl, [LIB], [use LIB for SSL/TLS support (openssl)])
1312 if test x"$with_ssl" = x"" ; then
1313   with_ssl=no
1315 PGAC_ARG_BOOL(with, openssl, no, [obsolete spelling of --with-ssl=openssl])
1316 if test "$with_openssl" = yes ; then
1317   with_ssl=openssl
1320 if test "$with_ssl" = openssl ; then
1321   dnl Order matters!
1322   # Minimum required OpenSSL version is 1.1.1
1323   AC_DEFINE(OPENSSL_API_COMPAT, [0x10101000L],
1324             [Define to the OpenSSL API version in use. This avoids deprecation warnings from newer OpenSSL versions.])
1325   if test "$PORTNAME" != "win32"; then
1326      AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [AC_MSG_ERROR([library 'crypto' is required for OpenSSL])])
1327      AC_CHECK_LIB(ssl,    SSL_new, [], [AC_MSG_ERROR([library 'ssl' is required for OpenSSL])])
1328   else
1329      AC_SEARCH_LIBS(CRYPTO_new_ex_data, [eay32 crypto], [], [AC_MSG_ERROR([library 'eay32' or 'crypto' is required for OpenSSL])])
1330      AC_SEARCH_LIBS(SSL_new, [ssleay32 ssl], [], [AC_MSG_ERROR([library 'ssleay32' or 'ssl' is required for OpenSSL])])
1331   fi
1332   # Functions introduced in OpenSSL 1.1.1.
1333   AC_CHECK_FUNCS([SSL_CTX_set_ciphersuites], [], [AC_MSG_ERROR([OpenSSL version >= 1.1.1 is required for SSL support])])
1334   # Function introduced in OpenSSL 1.0.2, not in LibreSSL.
1335   AC_CHECK_FUNCS([SSL_CTX_set_cert_cb])
1336   # Function introduced in OpenSSL 1.1.1, not in LibreSSL.
1337   AC_CHECK_FUNCS([X509_get_signature_info SSL_CTX_set_num_tickets])
1338   AC_DEFINE([USE_OPENSSL], 1, [Define to 1 to build with OpenSSL support. (--with-ssl=openssl)])
1339 elif test "$with_ssl" != no ; then
1340   AC_MSG_ERROR([--with-ssl must specify openssl])
1342 AC_SUBST(with_ssl)
1344 if test "$with_pam" = yes ; then
1345   AC_CHECK_LIB(pam,    pam_start, [], [AC_MSG_ERROR([library 'pam' is required for PAM])])
1348 if test "$with_libxml" = yes ; then
1349   AC_CHECK_LIB(xml2, xmlSaveToBuffer, [], [AC_MSG_ERROR([library 'xml2' (version >= 2.6.23) is required for XML support])])
1352 if test "$with_libxslt" = yes ; then
1353   AC_CHECK_LIB(xslt, xsltCleanupGlobals, [], [AC_MSG_ERROR([library 'xslt' is required for XSLT support])])
1356 if test "$with_lz4" = yes ; then
1357   AC_CHECK_LIB(lz4, LZ4_compress_default, [], [AC_MSG_ERROR([library 'lz4' is required for LZ4 support])])
1360 if test "$with_zstd" = yes ; then
1361   AC_CHECK_LIB(zstd, ZSTD_compress, [], [AC_MSG_ERROR([library 'zstd' is required for ZSTD support])])
1364 # Note: We can test for libldap_r only after we know PTHREAD_LIBS
1365 if test "$with_ldap" = yes ; then
1366   _LIBS="$LIBS"
1367   if test "$PORTNAME" != "win32"; then
1368     AC_CHECK_LIB(ldap, ldap_bind, [],
1369                  [AC_MSG_ERROR([library 'ldap' is required for LDAP])],
1370                  [$EXTRA_LDAP_LIBS])
1371     LDAP_LIBS_BE="-lldap $EXTRA_LDAP_LIBS"
1372     # This test is carried out against libldap.
1373     AC_CHECK_FUNCS([ldap_initialize])
1374     # The separate ldap_r library only exists in OpenLDAP < 2.5, and if we
1375     # have 2.5 or later, we shouldn't even probe for ldap_r (we might find a
1376     # library from a separate OpenLDAP installation).  The most reliable
1377     # way to check that is to check for a function introduced in 2.5.
1378     AC_CHECK_FUNC([ldap_verify_credentials],
1379                   [thread_safe_libldap=yes],
1380                   [thread_safe_libldap=no])
1381     if test "$thread_safe_libldap" = no; then
1382       # Use ldap_r for FE if available, else assume ldap is thread-safe.
1383       # On some platforms ldap_r fails to link without PTHREAD_LIBS.
1384       LIBS="$_LIBS"
1385       AC_CHECK_LIB(ldap_r, ldap_bind,
1386                    [LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"],
1387                    [LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"],
1388                    [$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
1389     else
1390       LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
1391     fi
1392   else
1393     AC_CHECK_LIB(wldap32, ldap_bind, [], [AC_MSG_ERROR([library 'wldap32' is required for LDAP])])
1394     LDAP_LIBS_FE="-lwldap32"
1395     LDAP_LIBS_BE="-lwldap32"
1396   fi
1397   LIBS="$_LIBS"
1399 AC_SUBST(LDAP_LIBS_FE)
1400 AC_SUBST(LDAP_LIBS_BE)
1402 # for contrib/sepgsql
1403 if test "$with_selinux" = yes; then
1404   AC_CHECK_LIB(selinux, security_compute_create_name, [],
1405                [AC_MSG_ERROR([library 'libselinux', version 2.1.10 or newer, is required for SELinux support])])
1408 # for contrib/uuid-ossp
1409 if test "$with_uuid" = bsd ; then
1410   # On BSD, the UUID functions are in libc
1411   AC_CHECK_FUNC(uuid_to_string,
1412     [UUID_LIBS=""],
1413     [AC_MSG_ERROR([BSD UUID functions are not present])])
1414 elif test "$with_uuid" = e2fs ; then
1415   # On macOS, the UUID functions are in libc
1416   AC_CHECK_FUNC(uuid_generate,
1417     [UUID_LIBS=""],
1418     [AC_CHECK_LIB(uuid, uuid_generate,
1419       [UUID_LIBS="-luuid"],
1420       [AC_MSG_ERROR([library 'uuid' is required for E2FS UUID])])])
1421 elif test "$with_uuid" = ossp ; then
1422   AC_CHECK_LIB(ossp-uuid, uuid_export,
1423     [UUID_LIBS="-lossp-uuid"],
1424     [AC_CHECK_LIB(uuid, uuid_export,
1425       [UUID_LIBS="-luuid"],
1426       [AC_MSG_ERROR([library 'ossp-uuid' or 'uuid' is required for OSSP UUID])])])
1428 AC_SUBST(UUID_LIBS)
1432 ## Header files
1435 AC_CHECK_HEADERS(m4_normalize([
1436         atomic.h
1437         copyfile.h
1438         execinfo.h
1439         getopt.h
1440         ifaddrs.h
1441         mbarrier.h
1442         sys/epoll.h
1443         sys/event.h
1444         sys/personality.h
1445         sys/prctl.h
1446         sys/procctl.h
1447         sys/signalfd.h
1448         sys/ucred.h
1449         termios.h
1450         ucred.h
1451         xlocale.h
1454 if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
1455   AC_CHECK_HEADERS(readline/readline.h, [],
1456         [AC_CHECK_HEADERS(readline.h, [],
1457                 [AC_MSG_ERROR([readline header not found
1458 If you have readline already installed, see config.log for details on the
1459 failure.  It is possible the compiler isn't looking in the proper directory.
1460 Use --without-readline to disable readline support.])])])
1461   AC_CHECK_HEADERS(readline/history.h, [],
1462         [AC_CHECK_HEADERS(history.h, [],
1463                 [AC_MSG_ERROR([history header not found
1464 If you have readline already installed, see config.log for details on the
1465 failure.  It is possible the compiler isn't looking in the proper directory.
1466 Use --without-readline to disable readline support.])])])
1469 if expr x"$pgac_cv_check_readline" : 'x-ledit' >/dev/null ; then
1470 # Some installations of libedit usurp /usr/include/readline/, which seems
1471 # bad practice, since in combined installations readline will have its headers
1472 # there.  We might have to resort to AC_EGREP checks to make sure we found
1473 # the proper header...
1474   AC_CHECK_HEADERS(editline/readline.h, [],
1475         [AC_CHECK_HEADERS(readline.h, [],
1476                 [AC_CHECK_HEADERS(readline/readline.h, [],
1477                         [AC_MSG_ERROR([readline header not found
1478 If you have libedit already installed, see config.log for details on the
1479 failure.  It is possible the compiler isn't looking in the proper directory.
1480 Use --without-readline to disable libedit support.])])])])
1481 # Note: in a libedit installation, history.h is sometimes a dummy, and may
1482 # not be there at all.  Hence, don't complain if not found.  We must check
1483 # though, since in yet other versions it is an independent header.
1484   AC_CHECK_HEADERS(editline/history.h, [],
1485         [AC_CHECK_HEADERS(history.h, [],
1486                 [AC_CHECK_HEADERS(readline/history.h)])])
1489 if test "$with_zlib" = yes; then
1490   AC_CHECK_HEADER(zlib.h, [], [AC_MSG_ERROR([zlib header not found
1491 If you have zlib already installed, see config.log for details on the
1492 failure.  It is possible the compiler isn't looking in the proper directory.
1493 Use --without-zlib to disable zlib support.])])
1496 PGAC_PATH_PROGS(LZ4, lz4)
1497 if test "$with_lz4" = yes; then
1498   AC_CHECK_HEADER(lz4.h, [], [AC_MSG_ERROR([lz4.h header file is required for LZ4])])
1501 PGAC_PATH_PROGS(ZSTD, zstd)
1502 if test "$with_zstd" = yes; then
1503   AC_CHECK_HEADER(zstd.h, [], [AC_MSG_ERROR([zstd.h header file is required for ZSTD])])
1506 if test "$with_gssapi" = yes ; then
1507   AC_CHECK_HEADERS(gssapi/gssapi.h, [],
1508         [AC_CHECK_HEADERS(gssapi.h, [], [AC_MSG_ERROR([gssapi.h header file is required for GSSAPI])])])
1509   AC_CHECK_HEADERS(gssapi/gssapi_ext.h, [],
1510         [AC_CHECK_HEADERS(gssapi_ext.h, [], [AC_MSG_ERROR([gssapi_ext.h header file is required for GSSAPI])])])
1513 PGAC_PATH_PROGS(OPENSSL, openssl)
1514 pgac_openssl_version="$($OPENSSL version 2> /dev/null || echo openssl not found)"
1515 AC_MSG_NOTICE([using openssl: $pgac_openssl_version])
1516 if test "$with_ssl" = openssl ; then
1517   AC_CHECK_HEADER(openssl/ssl.h, [], [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL])])
1518   AC_CHECK_HEADER(openssl/err.h, [], [AC_MSG_ERROR([header file <openssl/err.h> is required for OpenSSL])])
1521 if test "$with_pam" = yes ; then
1522   AC_CHECK_HEADERS(security/pam_appl.h, [],
1523                    [AC_CHECK_HEADERS(pam/pam_appl.h, [],
1524                                      [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM.])])])
1527 if test "$with_bsd_auth" = yes ; then
1528   AC_CHECK_HEADER(bsd_auth.h, [], [AC_MSG_ERROR([header file <bsd_auth.h> is required for BSD Authentication support])])
1531 if test "$with_systemd" = yes ; then
1532   AC_CHECK_HEADER(systemd/sd-daemon.h, [], [AC_MSG_ERROR([header file <systemd/sd-daemon.h> is required for systemd support])])
1535 if test "$with_libxml" = yes ; then
1536   AC_CHECK_HEADER(libxml/parser.h, [], [AC_MSG_ERROR([header file <libxml/parser.h> is required for XML support])])
1539 if test "$with_libxslt" = yes ; then
1540   AC_CHECK_HEADER(libxslt/xslt.h, [], [AC_MSG_ERROR([header file <libxslt/xslt.h> is required for XSLT support])])
1543 if test "$with_ldap" = yes ; then
1544   if test "$PORTNAME" != "win32"; then
1545      AC_CHECK_HEADER(ldap.h, [],
1546                      [AC_MSG_ERROR([header file <ldap.h> is required for LDAP])])
1547      PGAC_LDAP_SAFE
1548   else
1549      AC_CHECK_HEADER(winldap.h, [],
1550                      [AC_MSG_ERROR([header file <winldap.h> is required for LDAP])],
1551                      [AC_INCLUDES_DEFAULT
1552 #include <windows.h>
1553                      ])
1554   fi
1557 if test "$with_bonjour" = yes ; then
1558   AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])
1559 dnl At some point we might add something like
1560 dnl AC_SEARCH_LIBS(DNSServiceRegister, dns_sd)
1561 dnl but right now, what that would mainly accomplish is to encourage
1562 dnl people to try to use the avahi implementation, which does not work.
1563 dnl If you want to use Apple's own Bonjour code on another platform,
1564 dnl just add -ldns_sd to LIBS manually.
1567 # for contrib/uuid-ossp
1568 if test "$with_uuid" = bsd ; then
1569   AC_CHECK_HEADERS(uuid.h,
1570     [AC_EGREP_HEADER([uuid_to_string], uuid.h, [],
1571       [AC_MSG_ERROR([header file <uuid.h> does not match BSD UUID library])])],
1572     [AC_MSG_ERROR([header file <uuid.h> is required for BSD UUID])])
1573 elif test "$with_uuid" = e2fs ; then
1574   AC_CHECK_HEADERS(uuid/uuid.h,
1575     [AC_EGREP_HEADER([uuid_generate], uuid/uuid.h, [],
1576       [AC_MSG_ERROR([header file <uuid/uuid.h> does not match E2FS UUID library])])],
1577     [AC_CHECK_HEADERS(uuid.h,
1578       [AC_EGREP_HEADER([uuid_generate], uuid.h, [],
1579         [AC_MSG_ERROR([header file <uuid.h> does not match E2FS UUID library])])],
1580       [AC_MSG_ERROR([header file <uuid/uuid.h> or <uuid.h> is required for E2FS UUID])])])
1581 elif test "$with_uuid" = ossp ; then
1582   AC_CHECK_HEADERS(ossp/uuid.h,
1583     [AC_EGREP_HEADER([uuid_export], ossp/uuid.h, [],
1584       [AC_MSG_ERROR([header file <ossp/uuid.h> does not match OSSP UUID library])])],
1585     [AC_CHECK_HEADERS(uuid.h,
1586       [AC_EGREP_HEADER([uuid_export], uuid.h, [],
1587         [AC_MSG_ERROR([header file <uuid.h> does not match OSSP UUID library])])],
1588       [AC_MSG_ERROR([header file <ossp/uuid.h> or <uuid.h> is required for OSSP UUID])])])
1591 if test "$PORTNAME" = "win32" ; then
1592    AC_CHECK_HEADERS(crtdefs.h)
1596 ## Types, structures, compiler characteristics
1599 m4_defun([AC_PROG_CC_STDC], []) dnl We don't want that.
1600 AC_C_BIGENDIAN
1601 AC_C_INLINE
1602 PGAC_PRINTF_ARCHETYPE
1603 PGAC_C_STATIC_ASSERT
1604 PGAC_C_TYPEOF
1605 PGAC_C_TYPES_COMPATIBLE
1606 PGAC_C_BUILTIN_CONSTANT_P
1607 PGAC_C_BUILTIN_OP_OVERFLOW
1608 PGAC_C_BUILTIN_UNREACHABLE
1609 PGAC_C_COMPUTED_GOTO
1610 PGAC_STRUCT_TIMEZONE
1611 PGAC_UNION_SEMUN
1612 AC_CHECK_TYPES(socklen_t, [], [], [#include <sys/socket.h>])
1613 PGAC_STRUCT_SOCKADDR_SA_LEN
1615 # MSVC doesn't cope well with defining restrict to __restrict, the
1616 # spelling it understands, because it conflicts with
1617 # __declspec(restrict). Therefore we define pg_restrict to the
1618 # appropriate definition, which presumably won't conflict.
1619 AC_C_RESTRICT
1620 if test "$ac_cv_c_restrict" = "no"; then
1621   pg_restrict=""
1622 else
1623   pg_restrict="$ac_cv_c_restrict"
1625 AC_DEFINE_UNQUOTED([pg_restrict], [$pg_restrict],
1626 [Define to keyword to use for C99 restrict support, or to nothing if not
1627 supported])
1629 AC_CHECK_TYPES([struct option], [], [],
1630 [#ifdef HAVE_GETOPT_H
1631 #include <getopt.h>
1632 #endif])
1634 case $host_cpu in
1635   x86_64)
1636     # On x86_64, check if we can compile a popcntq instruction
1637     AC_CACHE_CHECK([whether assembler supports x86_64 popcntq],
1638                    [pgac_cv_have_x86_64_popcntq],
1639     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1640         [long long x = 1; long long r;
1641          __asm__ __volatile__ (" popcntq %1,%0\n" : "=q"(r) : "rm"(x));])],
1642         [pgac_cv_have_x86_64_popcntq=yes],
1643         [pgac_cv_have_x86_64_popcntq=no])])
1644     if test x"$pgac_cv_have_x86_64_popcntq" = xyes ; then
1645         AC_DEFINE(HAVE_X86_64_POPCNTQ, 1, [Define to 1 if the assembler supports X86_64's POPCNTQ instruction.])
1646     fi
1647   ;;
1648   ppc*|powerpc*)
1649     # On PPC, check if compiler accepts "i"(x) when __builtin_constant_p(x).
1650     AC_CACHE_CHECK([whether __builtin_constant_p(x) implies "i"(x) acceptance],
1651                    [pgac_cv_have_i_constraint__builtin_constant_p],
1652     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1653     [static inline int
1654      addi(int ra, int si)
1655      {
1656          int res = 0;
1657          if (__builtin_constant_p(si))
1658              __asm__ __volatile__(
1659                  " addi %0,%1,%2\n" : "=r"(res) : "b"(ra), "i"(si));
1660          return res;
1661      }
1662      int test_adds(int x) { return addi(3, x) + addi(x, 5); }], [])],
1663     [pgac_cv_have_i_constraint__builtin_constant_p=yes],
1664     [pgac_cv_have_i_constraint__builtin_constant_p=no])])
1665     if test x"$pgac_cv_have_i_constraint__builtin_constant_p" = xyes ; then
1666       AC_DEFINE(HAVE_I_CONSTRAINT__BUILTIN_CONSTANT_P, 1,
1667                 [Define to 1 if __builtin_constant_p(x) implies "i"(x) acceptance.])
1668     fi
1669   ;;
1670 esac
1672 # Check largefile support.  You might think this is a system service not a
1673 # compiler characteristic, but you'd be wrong.  We must check this before
1674 # probing existence of related functions such as fseeko, since the largefile
1675 # defines can affect what is generated for that.
1676 if test "$PORTNAME" != "win32"; then
1677    AC_SYS_LARGEFILE
1678    dnl Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define
1679    dnl _DARWIN_USE_64_BIT_INODE, but it isn't: on macOS 10.5 that activates a
1680    dnl bug that causes readdir() to sometimes return EINVAL.  On later macOS
1681    dnl versions where the feature actually works, it's on by default anyway.
1682    AH_VERBATIM([_DARWIN_USE_64_BIT_INODE],[])
1685 dnl Check for largefile support (must be after AC_SYS_LARGEFILE)
1686 AC_CHECK_SIZEOF([off_t])
1688 # If we don't have largefile support, can't handle segment size >= 2GB.
1689 if test "$ac_cv_sizeof_off_t" -lt 8; then
1690   if expr $RELSEG_SIZE '*' $blocksize '>=' 2 '*' 1024 '*' 1024; then
1691     AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1692   fi
1697 ## Functions, global variables
1700 PGAC_VAR_INT_TIMEZONE
1702 # Some versions of libedit contain strlcpy(), setproctitle(), and other
1703 # symbols that that library has no business exposing to the world.  Pending
1704 # acquisition of a clue by those developers, ignore libedit (including its
1705 # possible alias of libreadline) while checking for everything else.
1706 LIBS_including_readline="$LIBS"
1707 LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`
1709 AC_CHECK_FUNCS(m4_normalize([
1710         backtrace_symbols
1711         copyfile
1712         copy_file_range
1713         elf_aux_info
1714         getauxval
1715         getifaddrs
1716         getpeerucred
1717         inet_pton
1718         kqueue
1719         mbstowcs_l
1720         memset_s
1721         posix_fallocate
1722         ppoll
1723         pthread_is_threaded_np
1724         setproctitle
1725         setproctitle_fast
1726         strchrnul
1727         strsignal
1728         syncfs
1729         sync_file_range
1730         uselocale
1731         wcstombs_l
1734 # These typically are compiler builtins, for which AC_CHECK_FUNCS fails.
1735 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap16], [int x])
1736 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap32], [int x])
1737 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap64], [long int x])
1738 # We assume that we needn't test all widths of these explicitly:
1739 PGAC_CHECK_BUILTIN_FUNC([__builtin_clz], [unsigned int x])
1740 PGAC_CHECK_BUILTIN_FUNC([__builtin_ctz], [unsigned int x])
1741 PGAC_CHECK_BUILTIN_FUNC([__builtin_popcount], [unsigned int x])
1742 # __builtin_frame_address may draw a diagnostic for non-constant argument,
1743 # so it needs a different test function.
1744 PGAC_CHECK_BUILTIN_FUNC_PTR([__builtin_frame_address], [0])
1746 # We require 64-bit fseeko() to be available, but run this check anyway
1747 # in case it finds that _LARGEFILE_SOURCE has to be #define'd for that.
1748 AC_FUNC_FSEEKO
1750 # posix_fadvise() is a no-op on Solaris, so don't incur function overhead
1751 # by calling it, 2009-04-02
1752 # http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/gen/posix_fadvise.c
1753 dnl must use AS_IF here, else AC_REQUIRES inside AC_CHECK_DECLS malfunctions
1754 AS_IF([test "$PORTNAME" != "solaris"], [
1755 AC_CHECK_FUNCS(posix_fadvise)
1756 AC_CHECK_DECLS(posix_fadvise, [], [], [#include <fcntl.h>])
1757 ]) # fi
1759 AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
1760 AC_CHECK_DECLS([strlcat, strlcpy, strnlen, strsep])
1762 # We can't use AC_CHECK_FUNCS to detect these functions, because it
1763 # won't handle deployment target restrictions on macOS
1764 AC_CHECK_DECLS([preadv], [], [], [#include <sys/uio.h>])
1765 AC_CHECK_DECLS([pwritev], [], [], [#include <sys/uio.h>])
1767 # This is probably only present on macOS, but may as well check always
1768 AC_CHECK_DECLS(F_FULLFSYNC, [], [], [#include <fcntl.h>])
1770 AC_REPLACE_FUNCS(m4_normalize([
1771         explicit_bzero
1772         getopt
1773         getpeereid
1774         inet_aton
1775         mkdtemp
1776         strlcat
1777         strlcpy
1778         strnlen
1779         strsep
1782 AC_REPLACE_FUNCS(pthread_barrier_wait)
1784 if test "$PORTNAME" = "win32" -o "$PORTNAME" = "cygwin"; then
1785         # Cygwin and (apparently, based on test results) Mingw both
1786         # have a broken strtof(), so substitute its implementation.
1787         # That's not a perfect fix, since it doesn't avoid double-rounding,
1788         # but we have no better options.
1789         AC_LIBOBJ([strtof])
1790         AC_MSG_NOTICE([On $host_os we will use our strtof wrapper.])
1793 # Similarly, use system's getopt_long() only if system provides struct option.
1794 if test x"$ac_cv_type_struct_option" = xyes ; then
1795   AC_REPLACE_FUNCS([getopt_long])
1796 else
1797   AC_LIBOBJ(getopt_long)
1800 # On OpenBSD and Solaris, getopt() doesn't do what we want for long options
1801 # (i.e., allow '-' as a flag character), so use our version on those platforms.
1802 if test "$PORTNAME" = "openbsd" -o "$PORTNAME" = "solaris"; then
1803   AC_LIBOBJ(getopt)
1806 # mingw has adopted a GNU-centric interpretation of optind/optreset,
1807 # so always use our version on Windows.
1808 if test "$PORTNAME" = "win32"; then
1809   AC_LIBOBJ(getopt)
1810   AC_LIBOBJ(getopt_long)
1813 # Win32 (really MinGW) support
1814 if test "$PORTNAME" = "win32"; then
1815   AC_LIBOBJ(dirmod)
1816   AC_LIBOBJ(kill)
1817   AC_LIBOBJ(open)
1818   AC_LIBOBJ(system)
1819   AC_LIBOBJ(win32common)
1820   AC_LIBOBJ(win32dlopen)
1821   AC_LIBOBJ(win32env)
1822   AC_LIBOBJ(win32error)
1823   AC_LIBOBJ(win32fdatasync)
1824   AC_LIBOBJ(win32gai_strerror)
1825   AC_LIBOBJ(win32getrusage)
1826   AC_LIBOBJ(win32link)
1827   AC_LIBOBJ(win32ntdll)
1828   AC_LIBOBJ(win32pread)
1829   AC_LIBOBJ(win32pwrite)
1830   AC_LIBOBJ(win32security)
1831   AC_LIBOBJ(win32setlocale)
1832   AC_LIBOBJ(win32stat)
1834 # Cygwin needs only a bit of that
1835 if test "$PORTNAME" = "cygwin"; then
1836   AC_LIBOBJ(dirmod)
1839 AC_CHECK_FUNC(syslog,
1840               [AC_CHECK_HEADER(syslog.h,
1841                                [AC_DEFINE(HAVE_SYSLOG, 1, [Define to 1 if you have the syslog interface.])])])
1843 AC_CACHE_CHECK([for opterr], pgac_cv_var_int_opterr,
1844 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1845   [extern int opterr; opterr = 1;])],
1846   [pgac_cv_var_int_opterr=yes],
1847   [pgac_cv_var_int_opterr=no])])
1848 if test x"$pgac_cv_var_int_opterr" = x"yes"; then
1849   AC_DEFINE(HAVE_INT_OPTERR, 1, [Define to 1 if you have the global variable 'int opterr'.])
1852 AC_CACHE_CHECK([for optreset], pgac_cv_var_int_optreset,
1853 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1854   [extern int optreset; optreset = 1;])],
1855   [pgac_cv_var_int_optreset=yes],
1856   [pgac_cv_var_int_optreset=no])])
1857 if test x"$pgac_cv_var_int_optreset" = x"yes"; then
1858   AC_DEFINE(HAVE_INT_OPTRESET, 1, [Define to 1 if you have the global variable 'int optreset'.])
1861 if test "$with_icu" = yes; then
1862   ac_save_CPPFLAGS=$CPPFLAGS
1863   CPPFLAGS="$ICU_CFLAGS $CPPFLAGS"
1865   # Verify we have ICU's header files
1866   AC_CHECK_HEADER(unicode/ucol.h, [],
1867         [AC_MSG_ERROR([header file <unicode/ucol.h> is required for ICU])])
1869   CPPFLAGS=$ac_save_CPPFLAGS
1872 if test "$with_llvm" = yes; then
1873   PGAC_CHECK_LLVM_FUNCTIONS()
1876 # Lastly, restore full LIBS list and check for readline/libedit symbols
1877 LIBS="$LIBS_including_readline"
1879 if test "$with_readline" = yes; then
1880   PGAC_READLINE_VARIABLES
1881   AC_CHECK_FUNCS(m4_normalize([
1882         append_history
1883         history_truncate_file
1884         rl_completion_matches
1885         rl_filename_completion_function
1886         rl_reset_screen_size
1887         rl_variable_bind
1888   ]))
1892 # This test makes sure that run tests work at all.  Sometimes a shared
1893 # library is found by the linker, but the runtime linker can't find it.
1894 # This check should come after all modifications of compiler or linker
1895 # variables, and before any other run tests.
1896 AC_MSG_CHECKING([test program])
1897 AC_RUN_IFELSE([AC_LANG_SOURCE([int main() { return 0; }])],
1898 [AC_MSG_RESULT(ok)],
1899 [AC_MSG_RESULT(failed)
1900 AC_MSG_ERROR([[
1901 Could not execute a simple test program.  This may be a problem
1902 related to locating shared libraries.  Check the file 'config.log'
1903 for the exact reason.]])],
1904 [AC_MSG_RESULT([cross-compiling])])
1906 # --------------------
1907 # Run tests below here
1908 # --------------------
1910 # Check size of void *, size_t (enables tweaks for > 32bit address space)
1911 AC_CHECK_SIZEOF([void *])
1912 AC_CHECK_SIZEOF([size_t])
1913 AC_CHECK_SIZEOF([long])
1914 AC_CHECK_SIZEOF([long long])
1916 # Determine memory alignment requirements for the basic C data types.
1918 AC_CHECK_ALIGNOF(short)
1919 AC_CHECK_ALIGNOF(int)
1920 AC_CHECK_ALIGNOF(long)
1921 AC_CHECK_ALIGNOF(int64_t)
1922 AC_CHECK_ALIGNOF(double)
1924 # Compute maximum alignment of any basic type.
1926 # We require 'double' to have the strictest alignment among the basic types,
1927 # because otherwise the C ABI might impose 8-byte alignment on some of the
1928 # other C types that correspond to TYPALIGN_DOUBLE SQL types.  That could
1929 # cause a mismatch between the tuple layout and the C struct layout of a
1930 # catalog tuple.  We used to carefully order catalog columns such that any
1931 # fixed-width, attalign=4 columns were at offsets divisible by 8 regardless
1932 # of MAXIMUM_ALIGNOF to avoid that, but we no longer support any platforms
1933 # where TYPALIGN_DOUBLE != MAXIMUM_ALIGNOF.
1935 # We assume without checking that long's alignment is at least as strong as
1936 # char, short, or int.  Note that we intentionally do not consider any types
1937 # wider than 64 bits, as allowing MAXIMUM_ALIGNOF to exceed 8 would be too
1938 # much of a penalty for disk and memory space.
1940 MAX_ALIGNOF=$ac_cv_alignof_double
1942 if test $ac_cv_alignof_long -gt $MAX_ALIGNOF ; then
1943   AC_MSG_ERROR([alignment of 'long' is greater than the alignment of 'double'])
1945 if test $ac_cv_alignof_int64_t -gt $MAX_ALIGNOF ; then
1946   AC_MSG_ERROR([alignment of 'int64_t' is greater than the alignment of 'double'])
1948 AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any C data type.])
1950 # Some compilers offer a 128-bit integer scalar type.
1951 PGAC_TYPE_128BIT_INT
1953 # Check for various atomic operations now that we have checked how to declare
1954 # 64bit integers.
1955 PGAC_HAVE_GCC__SYNC_CHAR_TAS
1956 PGAC_HAVE_GCC__SYNC_INT32_TAS
1957 PGAC_HAVE_GCC__SYNC_INT32_CAS
1958 PGAC_HAVE_GCC__SYNC_INT64_CAS
1959 PGAC_HAVE_GCC__ATOMIC_INT32_CAS
1960 PGAC_HAVE_GCC__ATOMIC_INT64_CAS
1963 # Check for x86 cpuid instruction
1964 AC_CACHE_CHECK([for __get_cpuid], [pgac_cv__get_cpuid],
1965 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <cpuid.h>],
1966   [[unsigned int exx[4] = {0, 0, 0, 0};
1967   __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);
1968   ]])],
1969   [pgac_cv__get_cpuid="yes"],
1970   [pgac_cv__get_cpuid="no"])])
1971 if test x"$pgac_cv__get_cpuid" = x"yes"; then
1972   AC_DEFINE(HAVE__GET_CPUID, 1, [Define to 1 if you have __get_cpuid.])
1975 AC_CACHE_CHECK([for __get_cpuid_count], [pgac_cv__get_cpuid_count],
1976 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <cpuid.h>],
1977   [[unsigned int exx[4] = {0, 0, 0, 0};
1978   __get_cpuid_count(7, 0, &exx[0], &exx[1], &exx[2], &exx[3]);
1979   ]])],
1980   [pgac_cv__get_cpuid_count="yes"],
1981   [pgac_cv__get_cpuid_count="no"])])
1982 if test x"$pgac_cv__get_cpuid_count" = x"yes"; then
1983   AC_DEFINE(HAVE__GET_CPUID_COUNT, 1, [Define to 1 if you have __get_cpuid_count.])
1986 AC_CACHE_CHECK([for __cpuid], [pgac_cv__cpuid],
1987 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <intrin.h>],
1988   [[unsigned int exx[4] = {0, 0, 0, 0};
1989   __get_cpuid(exx[0], 1);
1990   ]])],
1991   [pgac_cv__cpuid="yes"],
1992   [pgac_cv__cpuid="no"])])
1993 if test x"$pgac_cv__cpuid" = x"yes"; then
1994   AC_DEFINE(HAVE__CPUID, 1, [Define to 1 if you have __cpuid.])
1997 AC_CACHE_CHECK([for __cpuidex], [pgac_cv__cpuidex],
1998 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <intrin.h>],
1999   [[unsigned int exx[4] = {0, 0, 0, 0};
2000   __get_cpuidex(exx[0], 7, 0);
2001   ]])],
2002   [pgac_cv__cpuidex="yes"],
2003   [pgac_cv__cpuidex="no"])])
2004 if test x"$pgac_cv__cpuidex" = x"yes"; then
2005   AC_DEFINE(HAVE__CPUIDEX, 1, [Define to 1 if you have __cpuidex.])
2008 # Check for XSAVE intrinsics
2010 PGAC_XSAVE_INTRINSICS()
2011 if test x"$pgac_xsave_intrinsics" = x"yes"; then
2012   AC_DEFINE(HAVE_XSAVE_INTRINSICS, 1, [Define to 1 if you have XSAVE intrinsics.])
2015 # Check for AVX-512 popcount intrinsics
2017 if test x"$host_cpu" = x"x86_64"; then
2018   PGAC_AVX512_POPCNT_INTRINSICS()
2019   if test x"$pgac_avx512_popcnt_intrinsics" = x"yes"; then
2020     AC_DEFINE(USE_AVX512_POPCNT_WITH_RUNTIME_CHECK, 1, [Define to 1 to use AVX-512 popcount instructions with a runtime check.])
2021   fi
2024 # Check for Intel SSE 4.2 intrinsics to do CRC calculations.
2026 PGAC_SSE42_CRC32_INTRINSICS()
2028 # Are we targeting a processor that supports SSE 4.2? gcc, clang and icc all
2029 # define __SSE4_2__ in that case.
2030 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
2031 #ifndef __SSE4_2__
2032 #error __SSE4_2__ not defined
2033 #endif
2034 ])], [SSE4_2_TARGETED=1])
2036 # Check for ARMv8 CRC Extension intrinsics to do CRC calculations.
2038 # First check if __crc32c* intrinsics can be used with the default compiler
2039 # flags. If not, check if adding "-march=armv8-a+crc+simd" flag helps.
2040 # On systems using soft-float ABI, "-march=armv8-a+crc" is required instead.
2041 # CFLAGS_CRC is set if the extra flag is required.
2042 PGAC_ARMV8_CRC32C_INTRINSICS([])
2043 if test x"$pgac_armv8_crc32c_intrinsics" != x"yes"; then
2044   PGAC_ARMV8_CRC32C_INTRINSICS([-march=armv8-a+crc+simd])
2045   if test x"$pgac_armv8_crc32c_intrinsics" != x"yes"; then
2046     PGAC_ARMV8_CRC32C_INTRINSICS([-march=armv8-a+crc])
2047   fi
2050 # Check for LoongArch CRC intrinsics to do CRC calculations.
2052 # Check if __builtin_loongarch_crcc_* intrinsics can be used
2053 # with the default compiler flags.
2054 PGAC_LOONGARCH_CRC32C_INTRINSICS()
2056 AC_SUBST(CFLAGS_CRC)
2058 # Select CRC-32C implementation.
2060 # If we are targeting a processor that has Intel SSE 4.2 instructions, we can
2061 # use the special CRC instructions for calculating CRC-32C. If we're not
2062 # targeting such a processor, but we can nevertheless produce code that uses
2063 # the SSE intrinsics, compile both implementations and select which one to use
2064 # at runtime, depending on whether SSE 4.2 is supported by the processor we're
2065 # running on.
2067 # Similarly, if we are targeting an ARM processor that has the CRC
2068 # instructions that are part of the ARMv8 CRC Extension, use them. And if
2069 # we're not targeting such a processor, but can nevertheless produce code that
2070 # uses the CRC instructions, compile both, and select at runtime.
2072 # Note that we do not use __attribute__((target("..."))) for the ARM CRC
2073 # instructions because until clang 16, using the ARM intrinsics still requires
2074 # special -march flags.  Perhaps we can re-evaluate this decision after some
2075 # time has passed.
2077 # You can skip the runtime check by setting the appropriate USE_*_CRC32 flag to 1
2078 # in the template or configure command line.
2080 # If we are targeting a LoongArch processor, CRC instructions are
2081 # always available (at least on 64 bit), so no runtime check is needed.
2082 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
2083   # Use Intel SSE 4.2 if available.
2084   if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && test x"$SSE4_2_TARGETED" = x"1" ; then
2085     USE_SSE42_CRC32C=1
2086   else
2087     # Intel SSE 4.2, with runtime check? The CPUID instruction is needed for
2088     # the runtime check.
2089     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
2090       USE_SSE42_CRC32C_WITH_RUNTIME_CHECK=1
2091     else
2092       # Use ARM CRC Extension if available.
2093       if test x"$pgac_armv8_crc32c_intrinsics" = x"yes" && test x"$CFLAGS_CRC" = x""; then
2094         USE_ARMV8_CRC32C=1
2095       else
2096         # ARM CRC Extension, with runtime check?
2097         if test x"$pgac_armv8_crc32c_intrinsics" = x"yes"; then
2098           USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK=1
2099         else
2100           # LoongArch CRCC instructions.
2101           if test x"$pgac_loongarch_crc32c_intrinsics" = x"yes"; then
2102             USE_LOONGARCH_CRC32C=1
2103           else
2104             # fall back to slicing-by-8 algorithm, which doesn't require any
2105             # special CPU support.
2106             USE_SLICING_BY_8_CRC32C=1
2107           fi
2108         fi
2109       fi
2110     fi
2111   fi
2114 # Set PG_CRC32C_OBJS appropriately depending on the selected implementation.
2115 AC_MSG_CHECKING([which CRC-32C implementation to use])
2116 if test x"$USE_SSE42_CRC32C" = x"1"; then
2117   AC_DEFINE(USE_SSE42_CRC32C, 1, [Define to 1 use Intel SSE 4.2 CRC instructions.])
2118   PG_CRC32C_OBJS="pg_crc32c_sse42.o"
2119   AC_MSG_RESULT(SSE 4.2)
2120 else
2121   if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2122     AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
2123     PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_sse42_choose.o"
2124     AC_MSG_RESULT(SSE 4.2 with runtime check)
2125   else
2126     if test x"$USE_ARMV8_CRC32C" = x"1"; then
2127       AC_DEFINE(USE_ARMV8_CRC32C, 1, [Define to 1 to use ARMv8 CRC Extension.])
2128       PG_CRC32C_OBJS="pg_crc32c_armv8.o"
2129       AC_MSG_RESULT(ARMv8 CRC instructions)
2130     else
2131       if test x"$USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2132         AC_DEFINE(USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use ARMv8 CRC Extension with a runtime check.])
2133         PG_CRC32C_OBJS="pg_crc32c_armv8.o pg_crc32c_sb8.o pg_crc32c_armv8_choose.o"
2134         AC_MSG_RESULT(ARMv8 CRC instructions with runtime check)
2135       else
2136         if test x"$USE_LOONGARCH_CRC32C" = x"1"; then
2137           AC_DEFINE(USE_LOONGARCH_CRC32C, 1, [Define to 1 to use LoongArch CRCC instructions.])
2138           PG_CRC32C_OBJS="pg_crc32c_loongarch.o"
2139           AC_MSG_RESULT(LoongArch CRCC instructions)
2140         else
2141           AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use software CRC-32C implementation (slicing-by-8).])
2142           PG_CRC32C_OBJS="pg_crc32c_sb8.o"
2143           AC_MSG_RESULT(slicing-by-8)
2144         fi
2145       fi
2146     fi
2147   fi
2149 AC_SUBST(PG_CRC32C_OBJS)
2152 # Select semaphore implementation type.
2153 if test "$PORTNAME" != "win32"; then
2154   if test x"$PREFERRED_SEMAPHORES" = x"NAMED_POSIX" ; then
2155     # Need sem_open for this
2156     AC_SEARCH_LIBS(sem_open, [rt pthread], [USE_NAMED_POSIX_SEMAPHORES=1])
2157   fi
2158   if test x"$PREFERRED_SEMAPHORES" = x"UNNAMED_POSIX" ; then
2159     # Need sem_init for this
2160     AC_SEARCH_LIBS(sem_init, [rt pthread], [USE_UNNAMED_POSIX_SEMAPHORES=1])
2161   fi
2162   AC_MSG_CHECKING([which semaphore API to use])
2163   if test x"$USE_NAMED_POSIX_SEMAPHORES" = x"1" ; then
2164     AC_DEFINE(USE_NAMED_POSIX_SEMAPHORES, 1, [Define to select named POSIX semaphores.])
2165     SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2166     sematype="named POSIX"
2167   else
2168     if test x"$USE_UNNAMED_POSIX_SEMAPHORES" = x"1" ; then
2169       AC_DEFINE(USE_UNNAMED_POSIX_SEMAPHORES, 1, [Define to select unnamed POSIX semaphores.])
2170       SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2171       sematype="unnamed POSIX"
2172     else
2173       AC_DEFINE(USE_SYSV_SEMAPHORES, 1, [Define to select SysV-style semaphores.])
2174       SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
2175       sematype="System V"
2176     fi
2177   fi
2178   AC_MSG_RESULT([$sematype])
2179 else
2180   AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.])
2181   SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
2185 # Select shared-memory implementation type.
2186 if test "$PORTNAME" != "win32"; then
2187   AC_DEFINE(USE_SYSV_SHARED_MEMORY, 1, [Define to select SysV-style shared memory.])
2188   SHMEM_IMPLEMENTATION="src/backend/port/sysv_shmem.c"
2189 else
2190   AC_DEFINE(USE_WIN32_SHARED_MEMORY, 1, [Define to select Win32-style shared memory.])
2191   SHMEM_IMPLEMENTATION="src/backend/port/win32_shmem.c"
2194 # Select random number source. If a TLS library is used then it will be the
2195 # first choice, else the native platform sources (Windows API or /dev/urandom)
2196 # will be used.
2197 AC_MSG_CHECKING([which random number source to use])
2198 if test x"$with_ssl" = x"openssl" ; then
2199   AC_MSG_RESULT([OpenSSL])
2200 elif test x"$PORTNAME" = x"win32" ; then
2201   AC_MSG_RESULT([Windows native])
2202 elif test x"$cross_compiling" = x"yes"; then
2203   AC_MSG_RESULT([assuming /dev/urandom])
2204 else
2205   AC_MSG_RESULT([/dev/urandom])
2206   AC_CHECK_FILE([/dev/urandom], [], [])
2208   if test x"$ac_cv_file__dev_urandom" = x"no" ; then
2209     AC_MSG_ERROR([
2210 no source of strong random numbers was found
2211 PostgreSQL can use OpenSSL, native Windows API or /dev/urandom as a source of random numbers.])
2212   fi
2215 # If not set in template file, set bytes to use libc memset()
2216 if test x"$MEMSET_LOOP_LIMIT" = x"" ; then
2217   MEMSET_LOOP_LIMIT=1024
2219 AC_DEFINE_UNQUOTED(MEMSET_LOOP_LIMIT, ${MEMSET_LOOP_LIMIT}, [Define bytes to use libc memset().])
2222 if test "$enable_nls" = yes ; then
2223   PGAC_CHECK_GETTEXT
2226 # Check for Tcl configuration script tclConfig.sh
2227 if test "$with_tcl" = yes; then
2228     PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
2229     PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
2230                           [TCL_INCLUDE_SPEC,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
2231     if test "$TCL_SHARED_BUILD" != 1; then
2232       AC_MSG_ERROR([cannot build PL/Tcl because Tcl is not a shared library
2233 Use --without-tcl to disable building PL/Tcl.])
2234     fi
2235     # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h>
2236     ac_save_CPPFLAGS=$CPPFLAGS
2237     CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS"
2238     AC_CHECK_HEADER(tcl.h, [], [AC_MSG_ERROR([header file <tcl.h> is required for Tcl])])
2239     CPPFLAGS=$ac_save_CPPFLAGS
2242 # check for <perl.h>
2243 if test "$with_perl" = yes; then
2244   ac_save_CPPFLAGS=$CPPFLAGS
2245   CPPFLAGS="$CPPFLAGS $perl_includespec"
2246   AC_CHECK_HEADER(perl.h, [], [AC_MSG_ERROR([header file <perl.h> is required for Perl])],
2247                   [#include <EXTERN.h>])
2248   # While we're at it, check that we can link to libperl.
2249   # On most platforms, if perl.h is there then libperl.so will be too, but at
2250   # this writing Debian packages them separately.  There is no known reason to
2251   # waste cycles on separate probes for the Tcl or Python libraries, though.
2252   # On some Red Hat platforms, the link attempt can fail if we don't use
2253   # CFLAGS_SL while building the test program.
2254   ac_save_CFLAGS=$CFLAGS
2255   CFLAGS="$CFLAGS $CFLAGS_SL"
2256   pgac_save_LIBS=$LIBS
2257   LIBS="$perl_embed_ldflags"
2258   AC_MSG_CHECKING([for libperl])
2259   AC_LINK_IFELSE([AC_LANG_PROGRAM([
2260 #include <EXTERN.h>
2261 #include <perl.h>
2262 ],  [perl_alloc();])],
2263     [AC_MSG_RESULT(yes)],
2264     [AC_MSG_RESULT(no)
2265      AC_MSG_ERROR([libperl library is required for Perl])])
2266   LIBS=$pgac_save_LIBS
2267   CFLAGS=$ac_save_CFLAGS
2268   CPPFLAGS=$ac_save_CPPFLAGS
2271 # check for <Python.h>
2272 if test "$with_python" = yes; then
2273   ac_save_CPPFLAGS=$CPPFLAGS
2274   CPPFLAGS="$python_includespec $CPPFLAGS"
2275   AC_CHECK_HEADER(Python.h, [], [AC_MSG_ERROR([header file <Python.h> is required for Python])])
2276   CPPFLAGS=$ac_save_CPPFLAGS
2280 # Check for documentation-building tools
2282 PGAC_PATH_PROGS(XMLLINT, xmllint)
2283 PGAC_PATH_PROGS(XSLTPROC, xsltproc)
2284 PGAC_PATH_PROGS(FOP, fop)
2285 PGAC_PATH_PROGS(DBTOEPUB, dbtoepub)
2288 # Check for test tools
2290 if test "$enable_tap_tests" = yes; then
2291   # Make sure we know where prove is.
2292   PGAC_PATH_PROGS(PROVE, prove)
2293   if test -z "$PROVE"; then
2294     AC_MSG_ERROR([prove not found])
2295   fi
2296   # Check for necessary Perl modules.  You might think we should use
2297   # AX_PROG_PERL_MODULES here, but prove might be part of a different Perl
2298   # installation than perl, eg on MSys, so we have to check using prove.
2299   AC_MSG_CHECKING(for Perl modules required for TAP tests)
2300   __CONFIG_HOST_OS__=$host_os; export __CONFIG_HOST_OS__
2301   [modulestderr=`"$PROVE" "$srcdir/config/check_modules.pl" 2>&1 >/dev/null`]
2302   if test $? -eq 0; then
2303     # log the module version details, but don't show them interactively
2304     echo "$modulestderr" >&AS_MESSAGE_LOG_FD
2305     AC_MSG_RESULT(yes)
2306   else
2307     # on failure, though, show the results to the user
2308     AC_MSG_RESULT([$modulestderr])
2309     AC_MSG_ERROR([Additional Perl modules are required to run TAP tests])
2310   fi
2313 # If compiler will take -Wl,--as-needed (or various platform-specific
2314 # spellings thereof) then add that to LDFLAGS.  This is much easier than
2315 # trying to filter LIBS to the minimum for each executable.
2316 # On (at least) some Red-Hat-derived systems, this switch breaks linking to
2317 # libreadline; therefore we postpone testing it until we know what library
2318 # dependencies readline has.  The test code will try to link with $LIBS.
2319 if test "$with_readline" = yes; then
2320   link_test_func=readline
2321 else
2322   link_test_func=exit
2325 if test "$PORTNAME" = "darwin"; then
2326   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-dead_strip_dylibs], $link_test_func)
2327 elif test "$PORTNAME" = "openbsd"; then
2328   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-Bdynamic], $link_test_func)
2329 else
2330   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,--as-needed], $link_test_func)
2333 # For linkers that understand --export-dynamic, add that to the LDFLAGS_EX_BE
2334 # (backend specific ldflags). One some platforms this will always fail (e.g.,
2335 # windows), but on others it depends on the choice of linker (e.g., solaris).
2336 # macOS uses -export_dynamic instead.  (On macOS, the option is only
2337 # needed when also using -flto, but we add it anyway since it's
2338 # harmless.)
2339 PGAC_PROG_CC_LD_VARFLAGS_OPT(LDFLAGS_EX_BE, [-Wl,--export-dynamic], $link_test_func)
2340 if test x"$LDFLAGS_EX_BE" = x""; then
2341   PGAC_PROG_CC_LD_VARFLAGS_OPT(LDFLAGS_EX_BE, [-Wl,-export_dynamic], $link_test_func)
2343 AC_SUBST(LDFLAGS_EX_BE)
2345 # Create compiler version string
2346 if test x"$GCC" = x"yes" ; then
2347   cc_string=`${CC} --version | sed q`
2348   case $cc_string in [[A-Za-z]]*) ;; *) cc_string="GCC $cc_string";; esac
2349 elif test x"$SUN_STUDIO_CC" = x"yes" ; then
2350   cc_string=`${CC} -V 2>&1 | sed q`
2351 else
2352   cc_string=$CC
2355 AC_DEFINE_UNQUOTED(PG_VERSION_STR,
2356                    ["PostgreSQL $PG_VERSION on $host, compiled by $cc_string, `expr $ac_cv_sizeof_void_p \* 8`-bit"],
2357                    [A string containing the version number, platform, and C compiler])
2359 # Supply a numeric version string for use by 3rd party add-ons
2360 # awk -F is a regex on some platforms, and not on others, so make "." a tab
2361 [PG_VERSION_NUM="`echo $PG_MAJORVERSION $PG_MINORVERSION |
2362 $AWK '{printf "%d%04d", $1, $2}'`"]
2363 AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number])
2364 AC_SUBST(PG_VERSION_NUM)
2366 # If we are inserting PG_SYSROOT into CPPFLAGS, do so symbolically not
2367 # literally, so that it's possible to override it at build time using
2368 # a command like "make ... PG_SYSROOT=path".  This has to be done after
2369 # we've finished all configure checks that depend on CPPFLAGS.
2370 # The same for LDFLAGS, too.
2371 if test x"$PG_SYSROOT" != x; then
2372   CPPFLAGS=`echo "$CPPFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2373   LDFLAGS=`echo "$LDFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2375 AC_SUBST(PG_SYSROOT)
2378 # Begin output steps
2380 AC_MSG_NOTICE([using compiler=$cc_string])
2381 AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
2382 AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS])
2383 AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS])
2384 # Currently only used when LLVM is used
2385 if test "$with_llvm" = yes ; then
2386    AC_MSG_NOTICE([using CXX=$CXX])
2387    AC_MSG_NOTICE([using CXXFLAGS=$CXXFLAGS])
2388    AC_MSG_NOTICE([using CLANG=$CLANG])
2389    AC_MSG_NOTICE([using BITCODE_CFLAGS=$BITCODE_CFLAGS])
2390    AC_MSG_NOTICE([using BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS])
2393 # prepare build tree if outside source tree
2394 # Note 1: test -ef might not exist, but it's more reliable than `pwd`.
2395 # Note 2: /bin/pwd might be better than shell's built-in at getting
2396 #         a symlink-free name.
2397 if ( test "$srcdir" -ef . ) >/dev/null 2>&1 || test "`cd $srcdir && /bin/pwd`" = "`/bin/pwd`"; then
2398   vpath_build=no
2399 else
2400   vpath_build=yes
2401   if test "$no_create" != yes; then
2402     _AS_ECHO_N([preparing build tree... ])
2403     pgac_abs_top_srcdir=`cd "$srcdir" && pwd`
2404     $SHELL "$ac_aux_dir/prep_buildtree" "$pgac_abs_top_srcdir" "." \
2405       || AC_MSG_ERROR(failed)
2406     AC_MSG_RESULT(done)
2407   fi
2409 AC_SUBST(vpath_build)
2412 AC_CONFIG_FILES([GNUmakefile src/Makefile.global])
2414 AC_CONFIG_LINKS([
2415   src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION}
2416   src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION}
2417   src/include/pg_config_os.h:src/include/port/${template}.h
2418   src/Makefile.port:src/makefiles/Makefile.${template}
2421 if test "$PORTNAME" = "win32"; then
2422 AC_CONFIG_COMMANDS([check_win32_symlinks],[
2423 # Links sometimes fail undetected on Mingw -
2424 # so here we detect it and warn the user
2425 for FILE in $CONFIG_LINKS
2426  do
2427         # test -e works for symlinks in the MinGW console
2428         test -e `expr "$FILE" : '\([[^:]]*\)'` || AC_MSG_WARN([*** link for $FILE -- please fix by hand])
2429  done
2433 AC_CONFIG_HEADERS([src/include/pg_config.h],
2435 # Update timestamp for pg_config.h (see Makefile.global)
2436 echo >src/include/stamp-h
2439 AC_CONFIG_HEADERS([src/interfaces/ecpg/include/ecpg_config.h],
2440                   [echo >src/interfaces/ecpg/include/stamp-h])
2442 AC_OUTPUT
2444 # Ensure that any meson build directories would reconfigure and see that
2445 # there's a conflicting in-tree build and can error out.
2446 if test "$vpath_build" = "no"; then
2447   touch meson.build