doc: Improve "Partition Maintenance" section
[pgsql.git] / configure.ac
blob57f734879e19fe8756c3fc7e4fd463dbf5451607
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], [17devel], [pgsql-bugs@lists.postgresql.org], [], [https://www.postgresql.org/])
22 m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.69], [], [m4_fatal([Autoconf version 2.69 is required.
23 Untested combinations of 'autoconf' and PostgreSQL versions are not
24 recommended.  You can remove the check from 'configure.ac' but it is then
25 your responsibility whether the result works or not.])])
26 AC_COPYRIGHT([Copyright (c) 1996-2024, PostgreSQL Global Development Group])
27 AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c])
28 AC_CONFIG_AUX_DIR(config)
29 AC_PREFIX_DEFAULT(/usr/local/pgsql)
30 AC_DEFINE_UNQUOTED(CONFIGURE_ARGS, ["$ac_configure_args"], [Saved arguments from configure])
32 [PG_MAJORVERSION=`expr "$PACKAGE_VERSION" : '\([0-9][0-9]*\)'`]
33 [PG_MINORVERSION=`expr "$PACKAGE_VERSION" : '.*\.\([0-9][0-9]*\)'`]
34 test -n "$PG_MINORVERSION" || PG_MINORVERSION=0
35 AC_SUBST(PG_MAJORVERSION)
36 AC_DEFINE_UNQUOTED(PG_MAJORVERSION, "$PG_MAJORVERSION", [PostgreSQL major version as a string])
37 AC_DEFINE_UNQUOTED(PG_MAJORVERSION_NUM, $PG_MAJORVERSION, [PostgreSQL major version number])
38 AC_DEFINE_UNQUOTED(PG_MINORVERSION_NUM, $PG_MINORVERSION, [PostgreSQL minor version number])
40 PGAC_ARG_REQ(with, extra-version, [STRING], [append STRING to version],
41              [PG_VERSION="$PACKAGE_VERSION$withval"],
42              [PG_VERSION="$PACKAGE_VERSION"])
43 AC_DEFINE_UNQUOTED(PG_VERSION, "$PG_VERSION", [PostgreSQL version as a string])
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 # Spinlocks
192 PGAC_ARG_BOOL(enable, spinlocks, yes,
193               [do not use spinlocks])
196 # Atomic operations
198 PGAC_ARG_BOOL(enable, atomics, yes,
199               [do not use atomic operations])
202 # --enable-debug adds -g to compiler flags
204 PGAC_ARG_BOOL(enable, debug, no,
205               [build with debugging symbols (-g)])
206 AC_SUBST(enable_debug)
209 # --enable-profiling enables gcc profiling
211 PGAC_ARG_BOOL(enable, profiling, no,
212               [build with profiling enabled ])
215 # --enable-coverage enables generation of code coverage metrics with gcov
217 PGAC_ARG_BOOL(enable, coverage, no,
218               [build with coverage testing instrumentation],
219 [PGAC_PATH_PROGS(GCOV, gcov)
220 if test -z "$GCOV"; then
221   AC_MSG_ERROR([gcov not found])
223 PGAC_PATH_PROGS(LCOV, lcov)
224 if test -z "$LCOV"; then
225   AC_MSG_ERROR([lcov not found])
227 PGAC_PATH_PROGS(GENHTML, genhtml)
228 if test -z "$GENHTML"; then
229   AC_MSG_ERROR([genhtml not found])
230 fi])
231 AC_SUBST(enable_coverage)
234 # DTrace
236 PGAC_ARG_BOOL(enable, dtrace, no,
237               [build with DTrace support],
238 [PGAC_PATH_PROGS(DTRACE, dtrace)
239 if test -z "$DTRACE"; then
240   AC_MSG_ERROR([dtrace not found])
242 AC_SUBST(DTRACEFLAGS)])
243 AC_SUBST(enable_dtrace)
246 # TAP tests
248 PGAC_ARG_BOOL(enable, tap-tests, no,
249               [enable TAP tests (requires Perl and IPC::Run)])
250 AC_SUBST(enable_tap_tests)
253 # Injection points
255 PGAC_ARG_BOOL(enable, injection-points, no, [enable injection points (for testing)],
256               [AC_DEFINE([USE_INJECTION_POINTS], 1, [Define to 1 to build with injection points. (--enable-injection-points)])])
257 AC_SUBST(enable_injection_points)
260 # Block size
262 AC_MSG_CHECKING([for block size])
263 PGAC_ARG_REQ(with, blocksize, [BLOCKSIZE], [set table block size in kB [8]],
264              [blocksize=$withval],
265              [blocksize=8])
266 case ${blocksize} in
267   1) BLCKSZ=1024;;
268   2) BLCKSZ=2048;;
269   4) BLCKSZ=4096;;
270   8) BLCKSZ=8192;;
271  16) BLCKSZ=16384;;
272  32) BLCKSZ=32768;;
273   *) AC_MSG_ERROR([Invalid block size. Allowed values are 1,2,4,8,16,32.])
274 esac
275 AC_MSG_RESULT([${blocksize}kB])
277 AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
278  Size of a disk block --- this also limits the size of a tuple.  You
279  can set it bigger if you need bigger tuples (although TOAST should
280  reduce the need to have large tuples, since fields can be spread
281  across multiple tuples).
283  BLCKSZ must be a power of 2.  The maximum possible value of BLCKSZ
284  is currently 2^15 (32768).  This is determined by the 15-bit widths
285  of the lp_off and lp_len fields in ItemIdData (see
286  include/storage/itemid.h).
288  Changing BLCKSZ requires an initdb.
292 # Relation segment size
294 PGAC_ARG_REQ(with, segsize, [SEGSIZE], [set table segment size in GB [1]],
295              [segsize=$withval],
296              [segsize=1])
297 PGAC_ARG_REQ(with, segsize-blocks, [SEGSIZE_BLOCKS], [set table segment size in blocks [0]],
298              [segsize_blocks=$withval],
299              [segsize_blocks=0])
301 # If --with-segsize-blocks is non-zero, it is used, --with-segsize
302 # otherwise. segsize-blocks is only really useful for developers wanting to
303 # test segment related code. Warn if both are used.
304 if test $segsize_blocks -ne 0 -a $segsize -ne 1; then
305   AC_MSG_WARN([both --with-segsize and --with-segsize-blocks specified, --with-segsize-blocks wins])
308 AC_MSG_CHECKING([for segment size])
309 if test $segsize_blocks -eq 0; then
310   # this expression is set up to avoid unnecessary integer overflow
311   # blocksize is already guaranteed to be a factor of 1024
312   RELSEG_SIZE=`expr '(' 1024 / ${blocksize} ')' '*' ${segsize} '*' 1024`
313   test $? -eq 0 || exit 1
314   AC_MSG_RESULT([${segsize}GB])
315 else
316   RELSEG_SIZE=$segsize_blocks
317   AC_MSG_RESULT([${RELSEG_SIZE} blocks])
320 AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
321  RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
322  Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
323  relations bigger than that are divided into multiple files.
325  RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
326  This is often 2 GB or 4GB in a 32-bit operating system, unless you
327  have large file support enabled.  By default, we make the limit 1 GB
328  to avoid any possible integer-overflow problems within the OS.
329  A limit smaller than necessary only means we divide a large
330  relation into more chunks than necessary, so it seems best to err
331  in the direction of a small limit.
333  A power-of-2 value is recommended to save a few cycles in md.c,
334  but is not absolutely required.
336  Changing RELSEG_SIZE requires an initdb.
340 # WAL block size
342 AC_MSG_CHECKING([for WAL block size])
343 PGAC_ARG_REQ(with, wal-blocksize, [BLOCKSIZE], [set WAL block size in kB [8]],
344              [wal_blocksize=$withval],
345              [wal_blocksize=8])
346 case ${wal_blocksize} in
347   1) XLOG_BLCKSZ=1024;;
348   2) XLOG_BLCKSZ=2048;;
349   4) XLOG_BLCKSZ=4096;;
350   8) XLOG_BLCKSZ=8192;;
351  16) XLOG_BLCKSZ=16384;;
352  32) XLOG_BLCKSZ=32768;;
353  64) XLOG_BLCKSZ=65536;;
354   *) AC_MSG_ERROR([Invalid WAL block size. Allowed values are 1,2,4,8,16,32,64.])
355 esac
356 AC_MSG_RESULT([${wal_blocksize}kB])
358 AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
359  Size of a WAL file block.  This need have no particular relation to BLCKSZ.
360  XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
361  XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
362  buffers, else direct I/O may fail.
364  Changing XLOG_BLCKSZ requires an initdb.
368 # C compiler
371 # If you don't specify a list of compilers to test, the AC_PROG_CC and
372 # AC_PROG_CXX macros test for a long list of unsupported compilers.
373 pgac_cc_list="gcc cc"
374 pgac_cxx_list="g++ c++"
376 AC_PROG_CC([$pgac_cc_list])
377 AC_PROG_CC_C99()
379 # Error out if the compiler does not support C99, as the codebase
380 # relies on that.
381 if test "$ac_cv_prog_cc_c99" = no; then
382     AC_MSG_ERROR([C compiler "$CC" does not support C99])
385 AC_PROG_CXX([$pgac_cxx_list])
387 # Check if it's Intel's compiler, which (usually) pretends to be gcc,
388 # but has idiosyncrasies of its own.  We assume icc will define
389 # __INTEL_COMPILER regardless of CFLAGS.
390 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __INTEL_COMPILER
391 choke me
392 @%:@endif])], [ICC=yes], [ICC=no])
394 # Check if it's Sun Studio compiler. We assume that
395 # __SUNPRO_C will be defined for Sun Studio compilers
396 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __SUNPRO_C
397 choke me
398 @%:@endif])], [SUN_STUDIO_CC=yes], [SUN_STUDIO_CC=no])
400 AC_SUBST(SUN_STUDIO_CC)
404 # LLVM
406 # Checked early because subsequent tests depend on it.
407 PGAC_ARG_BOOL(with, llvm, no, [build with LLVM based JIT support],
408               [AC_DEFINE([USE_LLVM], 1, [Define to 1 to build with LLVM based JIT support. (--with-llvm)])])
409 AC_SUBST(with_llvm)
410 dnl must use AS_IF here, else AC_REQUIRES inside PGAC_LLVM_SUPPORT malfunctions
411 AS_IF([test "$with_llvm" = yes], [
412   PGAC_LLVM_SUPPORT()
413 ]) # fi
416 unset CFLAGS
417 unset CXXFLAGS
420 # Read the template
422 . "$srcdir/src/template/$template" || exit
424 # C[XX]FLAGS are selected so:
425 # If the user specifies something in the environment, that is used.
426 # else:  If the template file set something, that is used.
427 # else:  If coverage was enabled, don't set anything.
428 # else:  If the compiler is GCC, then we use -O2.
429 # else:  If the compiler is something else, then we use -O, unless debugging.
431 if test "$ac_env_CFLAGS_set" = set; then
432   CFLAGS=$ac_env_CFLAGS_value
433 elif test "${CFLAGS+set}" = set; then
434   : # (keep what template set)
435 elif test "$enable_coverage" = yes; then
436   : # no optimization by default
437 elif test "$GCC" = yes; then
438   CFLAGS="-O2"
439 else
440   # if the user selected debug mode, don't use -O
441   if test "$enable_debug" != yes; then
442     CFLAGS="-O"
443   fi
446 if test "$ac_env_CXXFLAGS_set" = set; then
447   CXXFLAGS=$ac_env_CXXFLAGS_value
448 elif test "${CXXFLAGS+set}" = set; then
449   : # (keep what template set)
450 elif test "$enable_coverage" = yes; then
451   : # no optimization by default
452 elif test "$GCC" = yes; then
453   CXXFLAGS="-O2"
454 else
455   # if the user selected debug mode, don't use -O
456   if test "$enable_debug" != yes; then
457     CXXFLAGS="-O"
458   fi
461 # When generating bitcode (for inlining) we always want to use -O2
462 # even when --enable-debug is specified. The bitcode is not going to
463 # be used for line-by-line debugging, and JIT inlining doesn't work
464 # without at least -O1 (otherwise clang will emit 'noinline'
465 # attributes everywhere), which is bad for testing.  Still allow the
466 # environment to override if done explicitly.
467 if test "$ac_env_BITCODE_CFLAGS_set" = set; then
468   BITCODE_CFLAGS=$ac_env_BITCODE_CFLAGS_value
469 else
470   BITCODE_CFLAGS="-O2 $BITCODE_CFLAGS"
472 if test "$ac_env_BITCODE_CXXFLAGS_set" = set; then
473   BITCODE_CXXFLAGS=$ac_env_BITCODE_CXXFLAGS_value
474 else
475   BITCODE_CXXFLAGS="-O2 $BITCODE_CXXFLAGS"
478 # C[XX]FLAGS we determined above will be added back at the end
479 user_CFLAGS=$CFLAGS
480 CFLAGS=""
481 user_CXXFLAGS=$CXXFLAGS
482 CXXFLAGS=""
483 user_BITCODE_CFLAGS=$BITCODE_CFLAGS
484 BITCODE_CFLAGS=""
485 user_BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS
486 BITCODE_CXXFLAGS=""
488 # set CFLAGS_UNROLL_LOOPS and CFLAGS_VECTORIZE from the environment, if present
489 if test "$ac_env_CFLAGS_UNROLL_LOOPS_set" = set; then
490   CFLAGS_UNROLL_LOOPS=$ac_env_CFLAGS_UNROLL_LOOPS_value
492 if test "$ac_env_CFLAGS_VECTORIZE_set" = set; then
493   CFLAGS_VECTORIZE=$ac_env_CFLAGS_VECTORIZE_value
496 # Some versions of GCC support some additional useful warning flags.
497 # Check whether they are supported, and add them to CFLAGS if so.
498 # ICC pretends to be GCC but it's lying; it doesn't support these flags,
499 # but has its own.  Also check other compiler-specific flags here.
501 if test "$GCC" = yes -a "$ICC" = no; then
502   CFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith"
503   CXXFLAGS="-Wall -Wpointer-arith"
504   # These work in some but not all gcc versions
505   save_CFLAGS=$CFLAGS
506   PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
507   # -Wdeclaration-after-statement isn't applicable for C++.  Specific C files
508   # disable it, so AC_SUBST the negative form.
509   PERMIT_DECLARATION_AFTER_STATEMENT=
510   if test x"$save_CFLAGS" != x"$CFLAGS"; then
511     PERMIT_DECLARATION_AFTER_STATEMENT=-Wno-declaration-after-statement
512   fi
513   AC_SUBST(PERMIT_DECLARATION_AFTER_STATEMENT)
514   # Really don't want VLAs to be used in our dialect of C
515   PGAC_PROG_CC_CFLAGS_OPT([-Werror=vla])
516   # On macOS, complain about usage of symbols newer than the deployment target
517   PGAC_PROG_CC_CFLAGS_OPT([-Werror=unguarded-availability-new])
518   PGAC_PROG_CXX_CFLAGS_OPT([-Werror=unguarded-availability-new])
519   # -Wvla is not applicable for C++
520   PGAC_PROG_CC_CFLAGS_OPT([-Wendif-labels])
521   PGAC_PROG_CXX_CFLAGS_OPT([-Wendif-labels])
522   PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-format-attribute])
523   PGAC_PROG_CXX_CFLAGS_OPT([-Wmissing-format-attribute])
524   PGAC_PROG_CC_CFLAGS_OPT([-Wimplicit-fallthrough=3])
525   PGAC_PROG_CXX_CFLAGS_OPT([-Wimplicit-fallthrough=3])
526   PGAC_PROG_CC_CFLAGS_OPT([-Wcast-function-type])
527   PGAC_PROG_CXX_CFLAGS_OPT([-Wcast-function-type])
528   PGAC_PROG_CC_CFLAGS_OPT([-Wshadow=compatible-local])
529   PGAC_PROG_CXX_CFLAGS_OPT([-Wshadow=compatible-local])
530   # This was included in -Wall/-Wformat in older GCC versions
531   PGAC_PROG_CC_CFLAGS_OPT([-Wformat-security])
532   PGAC_PROG_CXX_CFLAGS_OPT([-Wformat-security])
533   # Disable strict-aliasing rules; needed for gcc 3.3+
534   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
535   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
536   # Disable optimizations that assume no overflow; needed for gcc 4.3+
537   PGAC_PROG_CC_CFLAGS_OPT([-fwrapv])
538   PGAC_PROG_CXX_CFLAGS_OPT([-fwrapv])
539   # Disable FP optimizations that cause various errors on gcc 4.5+ or maybe 4.6+
540   PGAC_PROG_CC_CFLAGS_OPT([-fexcess-precision=standard])
541   PGAC_PROG_CXX_CFLAGS_OPT([-fexcess-precision=standard])
542   # Optimization flags for specific files that benefit from loop unrolling
543   PGAC_PROG_CC_VAR_OPT(CFLAGS_UNROLL_LOOPS, [-funroll-loops])
544   # Optimization flags for specific files that benefit from vectorization
545   PGAC_PROG_CC_VAR_OPT(CFLAGS_VECTORIZE, [-ftree-vectorize])
546   #
547   # The following tests want to suppress various unhelpful warnings by adding
548   # -Wno-foo switches.  But gcc won't complain about unrecognized -Wno-foo
549   # switches, so we have to test for the positive form and if that works,
550   # add the negative form.  Note that tests of this form typically need to
551   # be duplicated in the BITCODE_CFLAGS setup stanza below.
552   #
553   # Suppress clang's unhelpful unused-command-line-argument warnings.
554   NOT_THE_CFLAGS=""
555   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wunused-command-line-argument])
556   if test -n "$NOT_THE_CFLAGS"; then
557     CFLAGS="$CFLAGS -Wno-unused-command-line-argument"
558   fi
559   # Remove clang 12+'s compound-token-split-by-macro, as this causes a lot
560   # of warnings when building plperl because of usages in the Perl headers.
561   NOT_THE_CFLAGS=""
562   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
563   if test -n "$NOT_THE_CFLAGS"; then
564     CFLAGS="$CFLAGS -Wno-compound-token-split-by-macro"
565   fi
566   # Similarly disable useless truncation warnings from gcc 8+
567   NOT_THE_CFLAGS=""
568   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wformat-truncation])
569   if test -n "$NOT_THE_CFLAGS"; then
570     CFLAGS="$CFLAGS -Wno-format-truncation"
571   fi
572   NOT_THE_CFLAGS=""
573   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wstringop-truncation])
574   if test -n "$NOT_THE_CFLAGS"; then
575     CFLAGS="$CFLAGS -Wno-stringop-truncation"
576   fi
577   # Suppress clang 16's strict warnings about function casts
578   NOT_THE_CFLAGS=""
579   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wcast-function-type-strict])
580   if test -n "$NOT_THE_CFLAGS"; then
581     CFLAGS="$CFLAGS -Wno-cast-function-type-strict"
582   fi
583 elif test "$ICC" = yes; then
584   # Intel's compiler has a bug/misoptimization in checking for
585   # division by NAN (NaN == 0), -mp1 fixes it, so add it to the CFLAGS.
586   PGAC_PROG_CC_CFLAGS_OPT([-mp1])
587   PGAC_PROG_CXX_CFLAGS_OPT([-mp1])
588   # Make sure strict aliasing is off (though this is said to be the default)
589   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
590   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
593 # If the compiler knows how to hide symbols, add the switch needed for that to
594 # CFLAGS_SL_MODULE and define HAVE_VISIBILITY_ATTRIBUTE.
596 # This is done separately from the above because -fvisibility is supported by
597 # quite a few different compilers, making the required repetition bothersome.
599 # We might need to add a separate test to check if
600 # __attribute__((visibility("hidden"))) is supported, if we encounter a
601 # compiler that supports one of the supported variants of -fvisibility=hidden
602 # but uses a different syntax to mark a symbol as exported.
603 if test "$GCC" = yes -o "$SUN_STUDIO_CC" = yes ; then
604   PGAC_PROG_CC_VAR_OPT(CFLAGS_SL_MODULE, [-fvisibility=hidden])
605   # For C++ we additionally want -fvisibility-inlines-hidden
606   PGAC_PROG_VARCXX_VARFLAGS_OPT(CXX, CXXFLAGS_SL_MODULE, [-fvisibility=hidden])
607   PGAC_PROG_VARCXX_VARFLAGS_OPT(CXX, CXXFLAGS_SL_MODULE, [-fvisibility-inlines-hidden])
608   have_visibility_attribute=$pgac_cv_prog_CC_cflags__fvisibility_hidden
611 if test "$have_visibility_attribute" = "yes"; then
612   AC_DEFINE([HAVE_VISIBILITY_ATTRIBUTE], 1,
613             [Define to 1 if your compiler knows the visibility("hidden") attribute.])
616 AC_SUBST(CFLAGS_UNROLL_LOOPS)
617 AC_SUBST(CFLAGS_VECTORIZE)
618 AC_SUBST(CFLAGS_SL_MODULE)
619 AC_SUBST(CXXFLAGS_SL_MODULE)
621 # Determine flags used to emit bitcode for JIT inlining.
622 # 1. We must duplicate any behaviour-changing compiler flags used above,
623 # to keep compatibility with the compiler used for normal Postgres code.
624 # 2. We don't bother to duplicate extra-warnings switches --- seeing a
625 # warning in the main build is enough.
626 # 3. But we must duplicate -Wno-warning flags, else we'll see those anyway.
627 if test "$with_llvm" = yes ; then
628   CLANGXX="$CLANG -xc++"
630   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fno-strict-aliasing])
631   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fno-strict-aliasing])
632   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fwrapv])
633   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fwrapv])
634   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fexcess-precision=standard])
635   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fexcess-precision=standard])
637   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-Xclang -no-opaque-pointers])
638   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-Xclang -no-opaque-pointers])
640   NOT_THE_CFLAGS=""
641   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wunused-command-line-argument])
642   if test -n "$NOT_THE_CFLAGS"; then
643     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-unused-command-line-argument"
644   fi
645   NOT_THE_CFLAGS=""
646   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
647   if test -n "$NOT_THE_CFLAGS"; then
648     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-compound-token-split-by-macro"
649   fi
650   NOT_THE_CFLAGS=""
651   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wformat-truncation])
652   if test -n "$NOT_THE_CFLAGS"; then
653     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-format-truncation"
654   fi
655   NOT_THE_CFLAGS=""
656   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wstringop-truncation])
657   if test -n "$NOT_THE_CFLAGS"; then
658     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-stringop-truncation"
659   fi
662 # supply -g if --enable-debug
663 if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
664   CFLAGS="$CFLAGS -g"
667 if test "$enable_debug" = yes && test "$ac_cv_prog_cxx_g" = yes; then
668   CXXFLAGS="$CXXFLAGS -g"
671 # enable code coverage if --enable-coverage
672 if test "$enable_coverage" = yes; then
673   if test "$GCC" = yes; then
674     CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
675     CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
676   else
677     AC_MSG_ERROR([--enable-coverage is supported only when using GCC])
678   fi
681 # enable profiling if --enable-profiling
682 if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
683   if test "$GCC" = yes; then
684     AC_DEFINE([PROFILE_PID_DIR], 1,
685            [Define to 1 to allow profiling output to be saved separately for each process.])
686     CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
687     CXXFLAGS="$CXXFLAGS -pg $PLATFORM_PROFILE_FLAGS"
688   else
689     AC_MSG_ERROR([--enable-profiling is supported only when using GCC])
690   fi
693 # On Solaris, we need this #define to get POSIX-conforming versions
694 # of many interfaces (sigwait, getpwuid_r, ...).
695 if test "$PORTNAME" = "solaris"; then
696   CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
699 # We already have this in Makefile.win32, but configure needs it too
700 if test "$PORTNAME" = "win32"; then
701   CPPFLAGS="$CPPFLAGS -I$srcdir/src/include/port/win32"
704 # Now that we're done automatically adding stuff to C[XX]FLAGS, put back the
705 # user-specified flags (if any) at the end.  This lets users override
706 # the automatic additions.
707 CFLAGS="$CFLAGS $user_CFLAGS"
708 CXXFLAGS="$CXXFLAGS $user_CXXFLAGS"
709 BITCODE_CFLAGS="$BITCODE_CFLAGS $user_BITCODE_CFLAGS"
710 BITCODE_CXXFLAGS="$BITCODE_CXXFLAGS $user_BITCODE_CXXFLAGS"
712 AC_SUBST(BITCODE_CFLAGS)
713 AC_SUBST(BITCODE_CXXFLAGS)
715 # The template file must set up CFLAGS_SL; we don't support user override
716 AC_SUBST(CFLAGS_SL)
718 # Check if the compiler still works with the final flag settings
719 # (note, we're not checking that for CXX, which is optional)
720 AC_MSG_CHECKING([whether the C compiler still works])
721 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
722   [AC_MSG_RESULT(yes)],
723   [AC_MSG_RESULT(no)
724    AC_MSG_ERROR([cannot proceed])])
726 # Defend against gcc -ffast-math
727 if test "$GCC" = yes; then
728 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifdef __FAST_MATH__
729 choke me
730 @%:@endif])], [], [AC_MSG_ERROR([do not put -ffast-math in CFLAGS])])
733 # Defend against clang being used on x86-32 without SSE2 enabled.  As current
734 # versions of clang do not understand -fexcess-precision=standard, the use of
735 # x87 floating point operations leads to problems like isinf possibly returning
736 # false for a value that is infinite when converted from the 80bit register to
737 # the 8byte memory representation.
739 # Only perform the test if the compiler doesn't understand
740 # -fexcess-precision=standard, that way a potentially fixed compiler will work
741 # automatically.
742 if test "$pgac_cv_prog_CC_cflags__fexcess_precision_standard" = no; then
743 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
744 @%:@if defined(__clang__) && defined(__i386__) && !defined(__SSE2_MATH__)
745 choke me
746 @%:@endif
747 ])], [],
748 [AC_MSG_ERROR([Compiling PostgreSQL with clang, on 32bit x86, requires SSE2 support. Use -msse2 or use gcc.])])
751 AC_PROG_CPP
752 AC_SUBST(GCC)
756 # Set up TAS assembly code if needed; the template file has now had its
757 # chance to request this.
759 AC_CONFIG_LINKS([src/backend/port/tas.s:src/backend/port/tas/${tas_file}])
761 if test "$need_tas" = yes ; then
762   TAS=tas.o
763 else
764   TAS=""
766 AC_SUBST(TAS)
768 AC_SUBST(DLSUFFIX)dnl
769 AC_DEFINE_UNQUOTED([DLSUFFIX], ["$DLSUFFIX"],
770                    [Define to the file name extension of dynamically-loadable modules.])
773 # Set up pkg_config in case we need it below
775 PKG_PROG_PKG_CONFIG
778 # Automatic dependency tracking
780 PGAC_ARG_BOOL(enable, depend, no, [turn on automatic dependency tracking],
781               [autodepend=yes])
782 AC_SUBST(autodepend)
786 # Enable assert checks
788 PGAC_ARG_BOOL(enable, cassert, no, [enable assertion checks (for debugging)],
789               [AC_DEFINE([USE_ASSERT_CHECKING], 1,
790                          [Define to 1 to build with assertion checks. (--enable-cassert)])])
794 # Include directories
796 ac_save_IFS=$IFS
797 IFS="${IFS}${PATH_SEPARATOR}"
798 # SRCH_INC comes from the template file
799 for dir in $with_includes $SRCH_INC; do
800   if test -d "$dir"; then
801     INCLUDES="$INCLUDES -I$dir"
802   else
803     AC_MSG_WARN([*** Include directory $dir does not exist.])
804   fi
805 done
806 IFS=$ac_save_IFS
807 AC_SUBST(INCLUDES)
811 # Library directories
813 ac_save_IFS=$IFS
814 IFS="${IFS}${PATH_SEPARATOR}"
815 # LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
816 for dir in $LIBRARY_DIRS $SRCH_LIB; do
817   if test -d "$dir"; then
818     LIBDIRS="$LIBDIRS -L$dir"
819   else
820     AC_MSG_WARN([*** Library directory $dir does not exist.])
821   fi
822 done
823 IFS=$ac_save_IFS
826 # ICU
828 AC_MSG_CHECKING([whether to build with ICU support])
829 PGAC_ARG_BOOL(with, icu, yes, [build without ICU support],
830               [AC_DEFINE([USE_ICU], 1, [Define to build with ICU support. (--with-icu)])])
831 AC_MSG_RESULT([$with_icu])
832 AC_SUBST(with_icu)
834 if test "$with_icu" = yes; then
835   PKG_CHECK_MODULES(ICU, icu-uc icu-i18n, [],
836     [AC_MSG_ERROR([ICU library not found
837 If you have ICU already installed, see config.log for details on the
838 failure.  It is possible the compiler isn't looking in the proper directory.
839 Use --without-icu to disable ICU support.])])
843 # Optionally build Tcl modules (PL/Tcl)
845 AC_MSG_CHECKING([whether to build with Tcl])
846 PGAC_ARG_BOOL(with, tcl, no, [build Tcl modules (PL/Tcl)])
847 AC_MSG_RESULT([$with_tcl])
848 AC_SUBST([with_tcl])
850 # We see if the path to the Tcl/Tk configuration scripts is specified.
851 # This will override the use of tclsh to find the paths to search.
853 PGAC_ARG_REQ(with, tclconfig, [DIR], [tclConfig.sh is in DIR])
856 # Optionally build Perl modules (PL/Perl)
858 AC_MSG_CHECKING([whether to build Perl modules])
859 PGAC_ARG_BOOL(with, perl, no, [build Perl modules (PL/Perl)])
860 AC_MSG_RESULT([$with_perl])
861 AC_SUBST(with_perl)
864 # Optionally build Python modules (PL/Python)
866 AC_MSG_CHECKING([whether to build Python modules])
867 PGAC_ARG_BOOL(with, python, no, [build Python modules (PL/Python)])
868 AC_MSG_RESULT([$with_python])
869 AC_SUBST(with_python)
872 # GSSAPI
874 AC_MSG_CHECKING([whether to build with GSSAPI support])
875 PGAC_ARG_BOOL(with, gssapi, no, [build with GSSAPI support],
877   AC_DEFINE(ENABLE_GSS, 1, [Define to build with GSSAPI support. (--with-gssapi)])
878   krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
880 AC_MSG_RESULT([$with_gssapi])
881 AC_SUBST(with_gssapi)
884 AC_SUBST(krb_srvtab)
888 # Kerberos configuration parameters
890 PGAC_ARG_REQ(with, krb-srvnam,
891              [NAME], [default service principal name in Kerberos (GSSAPI) [postgres]],
892              [],
893              [with_krb_srvnam="postgres"])
894 AC_SUBST(with_krb_srvnam)
895 AC_DEFINE_UNQUOTED([PG_KRB_SRVNAM], ["$with_krb_srvnam"],
896                    [Define to the name of the default PostgreSQL service principal in Kerberos (GSSAPI). (--with-krb-srvnam=NAME)])
900 # PAM
902 AC_MSG_CHECKING([whether to build with PAM support])
903 PGAC_ARG_BOOL(with, pam, no,
904               [build with PAM support],
905               [AC_DEFINE([USE_PAM], 1, [Define to 1 to build with PAM support. (--with-pam)])])
906 AC_MSG_RESULT([$with_pam])
910 # BSD AUTH
912 AC_MSG_CHECKING([whether to build with BSD Authentication support])
913 PGAC_ARG_BOOL(with, bsd-auth, no,
914               [build with BSD Authentication support],
915               [AC_DEFINE([USE_BSD_AUTH], 1, [Define to 1 to build with BSD Authentication support. (--with-bsd-auth)])])
916 AC_MSG_RESULT([$with_bsd_auth])
920 # LDAP
922 AC_MSG_CHECKING([whether to build with LDAP support])
923 PGAC_ARG_BOOL(with, ldap, no,
924               [build with LDAP support],
925               [AC_DEFINE([USE_LDAP], 1, [Define to 1 to build with LDAP support. (--with-ldap)])])
926 AC_MSG_RESULT([$with_ldap])
927 AC_SUBST(with_ldap)
931 # Bonjour
933 AC_MSG_CHECKING([whether to build with Bonjour support])
934 PGAC_ARG_BOOL(with, bonjour, no,
935               [build with Bonjour support],
936               [AC_DEFINE([USE_BONJOUR], 1, [Define to 1 to build with Bonjour support. (--with-bonjour)])])
937 AC_MSG_RESULT([$with_bonjour])
941 # SELinux
943 AC_MSG_CHECKING([whether to build with SELinux support])
944 PGAC_ARG_BOOL(with, selinux, no, [build with SELinux support])
945 AC_SUBST(with_selinux)
946 AC_MSG_RESULT([$with_selinux])
949 # Systemd
951 AC_MSG_CHECKING([whether to build with systemd support])
952 PGAC_ARG_BOOL(with, systemd, no, [build with systemd support],
953               [AC_DEFINE([USE_SYSTEMD], 1, [Define to build with systemd support. (--with-systemd)])])
954 AC_SUBST(with_systemd)
955 AC_MSG_RESULT([$with_systemd])
958 # Readline
960 PGAC_ARG_BOOL(with, readline, yes,
961               [do not use GNU Readline nor BSD Libedit for editing])
962 # readline on MinGW has problems with backslashes in psql and other bugs.
963 # This is particularly a problem with non-US code pages.
964 # Therefore disable its use until we understand the cause. 2004-07-20
965 if test "$PORTNAME" = "win32"; then
966   if test "$with_readline" = yes; then
967     AC_MSG_WARN([*** Readline does not work on MinGW --- disabling])
968     with_readline=no
969   fi
971 AC_SUBST(with_readline)
975 # Prefer libedit
977 PGAC_ARG_BOOL(with, libedit-preferred, no,
978               [prefer BSD Libedit over GNU Readline])
982 # UUID library
984 # There are at least three UUID libraries in common use: the FreeBSD/NetBSD
985 # library, the e2fsprogs libuuid (now part of util-linux-ng), and the OSSP
986 # UUID library.  More than one of these might be present on a given platform,
987 # so we make the user say which one she wants.
989 PGAC_ARG_REQ(with, uuid, [LIB], [build contrib/uuid-ossp using LIB (bsd,e2fs,ossp)])
990 if test x"$with_uuid" = x"" ; then
991   with_uuid=no
993 PGAC_ARG_BOOL(with, ossp-uuid, no, [obsolete spelling of --with-uuid=ossp])
994 if test "$with_ossp_uuid" = yes ; then
995   with_uuid=ossp
998 if test "$with_uuid" != no ; then
999   if test "$with_uuid" = bsd ; then
1000     AC_DEFINE([HAVE_UUID_BSD], 1, [Define to 1 if you have BSD UUID support.])
1001   elif test "$with_uuid" = e2fs ; then
1002     AC_DEFINE([HAVE_UUID_E2FS], 1, [Define to 1 if you have E2FS UUID support.])
1003   elif test "$with_uuid" = ossp ; then
1004     AC_DEFINE([HAVE_UUID_OSSP], 1, [Define to 1 if you have OSSP UUID support.])
1005   else
1006     AC_MSG_ERROR([--with-uuid must specify one of bsd, e2fs, or ossp])
1007   fi
1009 AC_SUBST(with_uuid)
1013 # XML
1015 AC_MSG_CHECKING([whether to build with XML support])
1016 PGAC_ARG_BOOL(with, libxml, no, [build with XML support],
1017               [AC_DEFINE([USE_LIBXML], 1, [Define to 1 to build with XML support. (--with-libxml)])])
1018 AC_MSG_RESULT([$with_libxml])
1019 AC_SUBST(with_libxml)
1021 if test "$with_libxml" = yes ; then
1022   # Check pkg-config, then xml2-config.  But for backwards compatibility,
1023   # setting XML2_CONFIG overrides pkg-config.
1024   AC_ARG_VAR(XML2_CONFIG, [path to xml2-config utility])dnl
1025   have_libxml2_pkg_config=no
1026   if test -z "$XML2_CONFIG" -a -n "$PKG_CONFIG"; then
1027     PKG_CHECK_MODULES(XML2, [libxml-2.0 >= 2.6.23],
1028                       [have_libxml2_pkg_config=yes], [# do nothing])
1029   fi
1030   if test "$have_libxml2_pkg_config" = no ; then
1031     PGAC_PATH_PROGS(XML2_CONFIG, xml2-config)
1032     if test -n "$XML2_CONFIG"; then
1033       XML2_CFLAGS=`$XML2_CONFIG --cflags`
1034       XML2_LIBS=`$XML2_CONFIG --libs`
1035     fi
1036   fi
1037   # Note the user could also set XML2_CFLAGS/XML2_LIBS directly
1038   for pgac_option in $XML2_CFLAGS; do
1039     case $pgac_option in
1040       -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1041     esac
1042   done
1043   for pgac_option in $XML2_LIBS; do
1044     case $pgac_option in
1045       -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1046     esac
1047   done
1052 # XSLT
1054 PGAC_ARG_BOOL(with, libxslt, no, [use XSLT support when building contrib/xml2],
1055               [AC_DEFINE([USE_LIBXSLT], 1, [Define to 1 to use XSLT support when building contrib/xml2. (--with-libxslt)])])
1058 AC_SUBST(with_libxslt)
1061 # tzdata
1063 PGAC_ARG_REQ(with, system-tzdata,
1064              [DIR], [use system time zone data in DIR])
1065 AC_SUBST(with_system_tzdata)
1068 # Zlib
1070 PGAC_ARG_BOOL(with, zlib, yes,
1071               [do not use Zlib])
1072 AC_SUBST(with_zlib)
1075 # LZ4
1077 AC_MSG_CHECKING([whether to build with LZ4 support])
1078 PGAC_ARG_BOOL(with, lz4, no, [build with LZ4 support],
1079               [AC_DEFINE([USE_LZ4], 1, [Define to 1 to build with LZ4 support. (--with-lz4)])])
1080 AC_MSG_RESULT([$with_lz4])
1081 AC_SUBST(with_lz4)
1083 if test "$with_lz4" = yes; then
1084   PKG_CHECK_MODULES(LZ4, liblz4)
1085   # We only care about -I, -D, and -L switches;
1086   # note that -llz4 will be added by AC_CHECK_LIB below.
1087   for pgac_option in $LZ4_CFLAGS; do
1088     case $pgac_option in
1089       -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1090     esac
1091   done
1092   for pgac_option in $LZ4_LIBS; do
1093     case $pgac_option in
1094       -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1095     esac
1096   done
1100 # ZSTD
1102 AC_MSG_CHECKING([whether to build with ZSTD support])
1103 PGAC_ARG_BOOL(with, zstd, no, [build with ZSTD support],
1104               [AC_DEFINE([USE_ZSTD], 1, [Define to 1 to build with ZSTD support. (--with-zstd)])])
1105 AC_MSG_RESULT([$with_zstd])
1106 AC_SUBST(with_zstd)
1108 if test "$with_zstd" = yes; then
1109   PKG_CHECK_MODULES(ZSTD, libzstd >= 1.4.0)
1110   # We only care about -I, -D, and -L switches;
1111   # note that -lzstd will be added by AC_CHECK_LIB below.
1112   for pgac_option in $ZSTD_CFLAGS; do
1113     case $pgac_option in
1114       -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1115     esac
1116   done
1117   for pgac_option in $ZSTD_LIBS; do
1118     case $pgac_option in
1119       -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1120     esac
1121   done
1124 # Assignments
1127 CPPFLAGS="$CPPFLAGS $INCLUDES"
1128 LDFLAGS="$LDFLAGS $LIBDIRS"
1130 AC_ARG_VAR(LDFLAGS_EX, [extra linker flags for linking executables only])
1131 AC_ARG_VAR(LDFLAGS_SL, [extra linker flags for linking shared libraries only])
1133 PGAC_CHECK_STRIP
1134 AC_CHECK_TOOL(AR, ar, ar)
1135 if test "$PORTNAME" = "win32"; then
1136   AC_CHECK_TOOL(WINDRES, windres, windres)
1139 AC_PROG_INSTALL
1140 # When Autoconf chooses install-sh as install program it tries to generate
1141 # a relative path to it in each makefile where it substitutes it. This clashes
1142 # with our Makefile.global concept. This workaround helps.
1143 case $INSTALL in
1144   *install-sh*) install_bin='';;
1145   *) install_bin=$INSTALL;;
1146 esac
1147 AC_SUBST(install_bin)
1149 PGAC_PATH_PROGS(TAR, tar)
1150 AC_PROG_LN_S
1151 AC_PROG_MKDIR_P
1152 # When Autoconf chooses install-sh as mkdir -p program it tries to generate
1153 # a relative path to it in each makefile where it substitutes it. This clashes
1154 # with our Makefile.global concept. This workaround helps.
1155 case $MKDIR_P in
1156   *install-sh*) MKDIR_P='\${SHELL} \${top_srcdir}/config/install-sh -c -d';;
1157 esac
1159 PGAC_PATH_BISON
1160 PGAC_PATH_FLEX
1162 PGAC_PATH_PERL
1163 if test "$with_perl" = yes; then
1164   if test -z "$PERL"; then
1165     AC_MSG_ERROR([Perl not found])
1166   fi
1167   PGAC_CHECK_PERL_CONFIGS([archlibexp,privlibexp,useshrplib])
1168   if test "$perl_useshrplib" != yes && test "$perl_useshrplib" != true; then
1169     AC_MSG_ERROR([cannot build PL/Perl because libperl is not a shared library
1170 You might have to rebuild your Perl installation.  Refer to the
1171 documentation for details.  Use --without-perl to disable building
1172 PL/Perl.])
1173   fi
1174   # On most platforms, archlibexp is also where the Perl include files live ...
1175   perl_includespec="-I$perl_archlibexp/CORE"
1176   # ... but on newer macOS versions, we must use -iwithsysroot to look
1177   # under $PG_SYSROOT
1178   if test \! -f "$perl_archlibexp/CORE/perl.h" ; then
1179     if test -f "$PG_SYSROOT$perl_archlibexp/CORE/perl.h" ; then
1180       perl_includespec="-iwithsysroot $perl_archlibexp/CORE"
1181     fi
1182   fi
1183   AC_SUBST(perl_includespec)dnl
1184   PGAC_CHECK_PERL_EMBED_CCFLAGS
1185   PGAC_CHECK_PERL_EMBED_LDFLAGS
1188 if test "$with_python" = yes; then
1189   PGAC_PATH_PYTHON
1190   PGAC_CHECK_PYTHON_EMBED_SETUP
1193 if test x"$cross_compiling" = x"yes" && test -z "$with_system_tzdata"; then
1194   PGAC_PATH_PROGS(ZIC, zic)
1195   if test -z "$ZIC"; then
1196     AC_MSG_ERROR([
1197 When cross-compiling, either use the option --with-system-tzdata to use
1198 existing time-zone data, or set the environment variable ZIC to a zic
1199 program to use during the build.])
1200   fi
1204 # Pthreads
1206 # For each platform, we need to know about any special compile and link
1207 # libraries, and whether the normal C function names are thread-safe.
1208 # WIN32 doesn't need the pthread tests;  it always uses threads
1210 # These tests are run before the library-tests, because linking with the
1211 # other libraries can pull in the pthread functions as a side-effect.  We
1212 # want to use the -pthread or similar flags directly, and not rely on
1213 # the side-effects of linking with some other library.
1215 dnl note: We have to use AS_IF here rather than plain if. The AC_CHECK_HEADER
1216 dnl invocation below is the first one in the script, and autoconf generates
1217 dnl additional code for that, which must not be inside the if-block. AS_IF
1218 dnl knows how to do that.
1219 AS_IF([test "$PORTNAME" != "win32"],
1220 [ # then
1221 AX_PTHREAD      # set thread flags
1223 # Some platforms use these, so just define them.  They can't hurt if they
1224 # are not supported.
1225 PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE"
1227 # Check for *_r functions
1228 _CFLAGS="$CFLAGS"
1229 _LIBS="$LIBS"
1230 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
1231 LIBS="$LIBS $PTHREAD_LIBS"
1233 AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([
1234 pthread.h not found])])
1236 AC_CHECK_FUNCS([strerror_r])
1238 # Do test here with the proper thread flags
1239 PGAC_FUNC_STRERROR_R_INT
1241 CFLAGS="$_CFLAGS"
1242 LIBS="$_LIBS"
1244 ], [ # else
1245 # do not use values from template file
1246 PTHREAD_CFLAGS=
1247 PTHREAD_LIBS=
1248 ]) # fi
1250 AC_SUBST(PTHREAD_CFLAGS)
1251 AC_SUBST(PTHREAD_LIBS)
1255 ## Libraries
1257 ## Most libraries are included only if they demonstrably provide a function
1258 ## we need, but libm is an exception: always include it, because there are
1259 ## too many compilers that play cute optimization games that will break
1260 ## probes for standard functions such as pow().
1263 AC_CHECK_LIB(m, main)
1264 AC_SEARCH_LIBS(setproctitle, util)
1265 # gcc/clang's sanitizer helper library provides dlopen but not dlsym, thus
1266 # when enabling asan the dlopen check doesn't notice that -ldl is actually
1267 # required. Just checking for dlsym() ought to suffice.
1268 AC_SEARCH_LIBS(dlsym, dl)
1269 AC_SEARCH_LIBS(socket, [socket ws2_32])
1270 AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
1271 AC_SEARCH_LIBS(shm_open, rt)
1272 AC_SEARCH_LIBS(shm_unlink, rt)
1273 AC_SEARCH_LIBS(clock_gettime, rt)
1274 # Cygwin:
1275 AC_SEARCH_LIBS(shmget, cygipc)
1276 # *BSD:
1277 AC_SEARCH_LIBS(backtrace_symbols, execinfo)
1279 AC_SEARCH_LIBS(pthread_barrier_wait, pthread)
1281 if test "$with_readline" = yes; then
1282   PGAC_CHECK_READLINE
1283   if test x"$pgac_cv_check_readline" = x"no"; then
1284     AC_MSG_ERROR([readline library not found
1285 If you have readline already installed, see config.log for details on the
1286 failure.  It is possible the compiler isn't looking in the proper directory.
1287 Use --without-readline to disable readline support.])
1288   fi
1291 if test "$with_zlib" = yes; then
1292   AC_CHECK_LIB(z, inflate, [],
1293                [AC_MSG_ERROR([zlib library not found
1294 If you have zlib already installed, see config.log for details on the
1295 failure.  It is possible the compiler isn't looking in the proper directory.
1296 Use --without-zlib to disable zlib support.])])
1299 if test "$enable_spinlocks" = yes; then
1300   AC_DEFINE(HAVE_SPINLOCKS, 1, [Define to 1 if you have spinlocks.])
1301 else
1302   AC_MSG_WARN([
1303 *** Not using spinlocks will cause poor performance.])
1306 if test "$enable_atomics" = yes; then
1307   AC_DEFINE(HAVE_ATOMICS, 1, [Define to 1 if you want to use atomics if available.])
1308 else
1309   AC_MSG_WARN([
1310 *** Not using atomic operations will cause poor performance.])
1313 if test "$with_gssapi" = yes ; then
1314   if test "$PORTNAME" != "win32"; then
1315     AC_SEARCH_LIBS(gss_store_cred_into, [gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'], [],
1316                    [AC_MSG_ERROR([could not find function 'gss_store_cred_into' required for GSSAPI])])
1317   else
1318     LIBS="$LIBS -lgssapi32"
1319   fi
1323 # SSL Library
1325 # There is currently only one supported SSL/TLS library: OpenSSL.
1327 PGAC_ARG_REQ(with, ssl, [LIB], [use LIB for SSL/TLS support (openssl)])
1328 if test x"$with_ssl" = x"" ; then
1329   with_ssl=no
1331 PGAC_ARG_BOOL(with, openssl, no, [obsolete spelling of --with-ssl=openssl])
1332 if test "$with_openssl" = yes ; then
1333   with_ssl=openssl
1336 if test "$with_ssl" = openssl ; then
1337   dnl Order matters!
1338   # Minimum required OpenSSL version is 1.0.2
1339   AC_DEFINE(OPENSSL_API_COMPAT, [0x10002000L],
1340             [Define to the OpenSSL API version in use. This avoids deprecation warnings from newer OpenSSL versions.])
1341   if test "$PORTNAME" != "win32"; then
1342      AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [AC_MSG_ERROR([library 'crypto' is required for OpenSSL])])
1343      AC_CHECK_LIB(ssl,    SSL_new, [], [AC_MSG_ERROR([library 'ssl' is required for OpenSSL])])
1344   else
1345      AC_SEARCH_LIBS(CRYPTO_new_ex_data, [eay32 crypto], [], [AC_MSG_ERROR([library 'eay32' or 'crypto' is required for OpenSSL])])
1346      AC_SEARCH_LIBS(SSL_new, [ssleay32 ssl], [], [AC_MSG_ERROR([library 'ssleay32' or 'ssl' is required for OpenSSL])])
1347   fi
1348   # Function introduced in OpenSSL 1.0.2, not in LibreSSL.
1349   AC_CHECK_FUNCS([SSL_CTX_set_cert_cb])
1350   # Functions introduced in OpenSSL 1.1.0. We used to check for
1351   # OPENSSL_VERSION_NUMBER, but that didn't work with 1.1.0, because LibreSSL
1352   # defines OPENSSL_VERSION_NUMBER to claim version 2.0.0, even though it
1353   # doesn't have these OpenSSL 1.1.0 functions. So check for individual
1354   # functions.
1355   AC_CHECK_FUNCS([OPENSSL_init_ssl BIO_meth_new ASN1_STRING_get0_data HMAC_CTX_new HMAC_CTX_free])
1356   # OpenSSL versions before 1.1.0 required setting callback functions, for
1357   # thread-safety. In 1.1.0, it's no longer required, and CRYPTO_lock()
1358   # function was removed.
1359   AC_CHECK_FUNCS([CRYPTO_lock])
1360   # Function introduced in OpenSSL 1.1.1.
1361   AC_CHECK_FUNCS([X509_get_signature_info])
1362   AC_DEFINE([USE_OPENSSL], 1, [Define to 1 to build with OpenSSL support. (--with-ssl=openssl)])
1363 elif test "$with_ssl" != no ; then
1364   AC_MSG_ERROR([--with-ssl must specify openssl])
1366 AC_SUBST(with_ssl)
1368 if test "$with_pam" = yes ; then
1369   AC_CHECK_LIB(pam,    pam_start, [], [AC_MSG_ERROR([library 'pam' is required for PAM])])
1372 if test "$with_libxml" = yes ; then
1373   AC_CHECK_LIB(xml2, xmlSaveToBuffer, [], [AC_MSG_ERROR([library 'xml2' (version >= 2.6.23) is required for XML support])])
1376 if test "$with_libxslt" = yes ; then
1377   AC_CHECK_LIB(xslt, xsltCleanupGlobals, [], [AC_MSG_ERROR([library 'xslt' is required for XSLT support])])
1380 if test "$with_lz4" = yes ; then
1381   AC_CHECK_LIB(lz4, LZ4_compress_default, [], [AC_MSG_ERROR([library 'lz4' is required for LZ4 support])])
1384 if test "$with_zstd" = yes ; then
1385   AC_CHECK_LIB(zstd, ZSTD_compress, [], [AC_MSG_ERROR([library 'zstd' is required for ZSTD support])])
1388 # Note: We can test for libldap_r only after we know PTHREAD_LIBS
1389 if test "$with_ldap" = yes ; then
1390   _LIBS="$LIBS"
1391   if test "$PORTNAME" != "win32"; then
1392     AC_CHECK_LIB(ldap, ldap_bind, [],
1393                  [AC_MSG_ERROR([library 'ldap' is required for LDAP])],
1394                  [$EXTRA_LDAP_LIBS])
1395     LDAP_LIBS_BE="-lldap $EXTRA_LDAP_LIBS"
1396     # This test is carried out against libldap.
1397     AC_CHECK_FUNCS([ldap_initialize])
1398     # The separate ldap_r library only exists in OpenLDAP < 2.5, and if we
1399     # have 2.5 or later, we shouldn't even probe for ldap_r (we might find a
1400     # library from a separate OpenLDAP installation).  The most reliable
1401     # way to check that is to check for a function introduced in 2.5.
1402     AC_CHECK_FUNC([ldap_verify_credentials],
1403                   [thread_safe_libldap=yes],
1404                   [thread_safe_libldap=no])
1405     if test "$thread_safe_libldap" = no; then
1406       # Use ldap_r for FE if available, else assume ldap is thread-safe.
1407       # On some platforms ldap_r fails to link without PTHREAD_LIBS.
1408       LIBS="$_LIBS"
1409       AC_CHECK_LIB(ldap_r, ldap_bind,
1410                    [LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"],
1411                    [LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"],
1412                    [$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
1413     else
1414       LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
1415     fi
1416   else
1417     AC_CHECK_LIB(wldap32, ldap_bind, [], [AC_MSG_ERROR([library 'wldap32' is required for LDAP])])
1418     LDAP_LIBS_FE="-lwldap32"
1419     LDAP_LIBS_BE="-lwldap32"
1420   fi
1421   LIBS="$_LIBS"
1423 AC_SUBST(LDAP_LIBS_FE)
1424 AC_SUBST(LDAP_LIBS_BE)
1426 # for contrib/sepgsql
1427 if test "$with_selinux" = yes; then
1428   AC_CHECK_LIB(selinux, security_compute_create_name, [],
1429                [AC_MSG_ERROR([library 'libselinux', version 2.1.10 or newer, is required for SELinux support])])
1432 # for contrib/uuid-ossp
1433 if test "$with_uuid" = bsd ; then
1434   # On BSD, the UUID functions are in libc
1435   AC_CHECK_FUNC(uuid_to_string,
1436     [UUID_LIBS=""],
1437     [AC_MSG_ERROR([BSD UUID functions are not present])])
1438 elif test "$with_uuid" = e2fs ; then
1439   # On macOS, the UUID functions are in libc
1440   AC_CHECK_FUNC(uuid_generate,
1441     [UUID_LIBS=""],
1442     [AC_CHECK_LIB(uuid, uuid_generate,
1443       [UUID_LIBS="-luuid"],
1444       [AC_MSG_ERROR([library 'uuid' is required for E2FS UUID])])])
1445 elif test "$with_uuid" = ossp ; then
1446   AC_CHECK_LIB(ossp-uuid, uuid_export,
1447     [UUID_LIBS="-lossp-uuid"],
1448     [AC_CHECK_LIB(uuid, uuid_export,
1449       [UUID_LIBS="-luuid"],
1450       [AC_MSG_ERROR([library 'ossp-uuid' or 'uuid' is required for OSSP UUID])])])
1452 AC_SUBST(UUID_LIBS)
1456 ## Header files
1459 AC_HEADER_STDBOOL
1461 AC_CHECK_HEADERS(m4_normalize([
1462         atomic.h
1463         copyfile.h
1464         execinfo.h
1465         getopt.h
1466         ifaddrs.h
1467         langinfo.h
1468         mbarrier.h
1469         sys/epoll.h
1470         sys/event.h
1471         sys/personality.h
1472         sys/prctl.h
1473         sys/procctl.h
1474         sys/signalfd.h
1475         sys/ucred.h
1476         termios.h
1477         ucred.h
1480 if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
1481   AC_CHECK_HEADERS(readline/readline.h, [],
1482         [AC_CHECK_HEADERS(readline.h, [],
1483                 [AC_MSG_ERROR([readline header not found
1484 If you have readline already installed, see config.log for details on the
1485 failure.  It is possible the compiler isn't looking in the proper directory.
1486 Use --without-readline to disable readline support.])])])
1487   AC_CHECK_HEADERS(readline/history.h, [],
1488         [AC_CHECK_HEADERS(history.h, [],
1489                 [AC_MSG_ERROR([history header not found
1490 If you have readline already installed, see config.log for details on the
1491 failure.  It is possible the compiler isn't looking in the proper directory.
1492 Use --without-readline to disable readline support.])])])
1495 if expr x"$pgac_cv_check_readline" : 'x-ledit' >/dev/null ; then
1496 # Some installations of libedit usurp /usr/include/readline/, which seems
1497 # bad practice, since in combined installations readline will have its headers
1498 # there.  We might have to resort to AC_EGREP checks to make sure we found
1499 # the proper header...
1500   AC_CHECK_HEADERS(editline/readline.h, [],
1501         [AC_CHECK_HEADERS(readline.h, [],
1502                 [AC_CHECK_HEADERS(readline/readline.h, [],
1503                         [AC_MSG_ERROR([readline header not found
1504 If you have libedit already installed, see config.log for details on the
1505 failure.  It is possible the compiler isn't looking in the proper directory.
1506 Use --without-readline to disable libedit support.])])])])
1507 # Note: in a libedit installation, history.h is sometimes a dummy, and may
1508 # not be there at all.  Hence, don't complain if not found.  We must check
1509 # though, since in yet other versions it is an independent header.
1510   AC_CHECK_HEADERS(editline/history.h, [],
1511         [AC_CHECK_HEADERS(history.h, [],
1512                 [AC_CHECK_HEADERS(readline/history.h)])])
1515 if test "$with_zlib" = yes; then
1516   AC_CHECK_HEADER(zlib.h, [], [AC_MSG_ERROR([zlib header not found
1517 If you have zlib already installed, see config.log for details on the
1518 failure.  It is possible the compiler isn't looking in the proper directory.
1519 Use --without-zlib to disable zlib support.])])
1522 PGAC_PATH_PROGS(LZ4, lz4)
1523 if test "$with_lz4" = yes; then
1524   AC_CHECK_HEADER(lz4.h, [], [AC_MSG_ERROR([lz4.h header file is required for LZ4])])
1527 PGAC_PATH_PROGS(ZSTD, zstd)
1528 if test "$with_zstd" = yes; then
1529   AC_CHECK_HEADER(zstd.h, [], [AC_MSG_ERROR([zstd.h header file is required for ZSTD])])
1532 if test "$with_gssapi" = yes ; then
1533   AC_CHECK_HEADERS(gssapi/gssapi.h, [],
1534         [AC_CHECK_HEADERS(gssapi.h, [], [AC_MSG_ERROR([gssapi.h header file is required for GSSAPI])])])
1535   AC_CHECK_HEADERS(gssapi/gssapi_ext.h, [],
1536         [AC_CHECK_HEADERS(gssapi_ext.h, [], [AC_MSG_ERROR([gssapi_ext.h header file is required for GSSAPI])])])
1539 PGAC_PATH_PROGS(OPENSSL, openssl)
1540 pgac_openssl_version="$($OPENSSL version 2> /dev/null || echo openssl not found)"
1541 AC_MSG_NOTICE([using openssl: $pgac_openssl_version])
1542 if test "$with_ssl" = openssl ; then
1543   AC_CHECK_HEADER(openssl/ssl.h, [], [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL])])
1544   AC_CHECK_HEADER(openssl/err.h, [], [AC_MSG_ERROR([header file <openssl/err.h> is required for OpenSSL])])
1547 if test "$with_pam" = yes ; then
1548   AC_CHECK_HEADERS(security/pam_appl.h, [],
1549                    [AC_CHECK_HEADERS(pam/pam_appl.h, [],
1550                                      [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM.])])])
1553 if test "$with_bsd_auth" = yes ; then
1554   AC_CHECK_HEADER(bsd_auth.h, [], [AC_MSG_ERROR([header file <bsd_auth.h> is required for BSD Authentication support])])
1557 if test "$with_systemd" = yes ; then
1558   AC_CHECK_HEADER(systemd/sd-daemon.h, [], [AC_MSG_ERROR([header file <systemd/sd-daemon.h> is required for systemd support])])
1561 if test "$with_libxml" = yes ; then
1562   AC_CHECK_HEADER(libxml/parser.h, [], [AC_MSG_ERROR([header file <libxml/parser.h> is required for XML support])])
1565 if test "$with_libxslt" = yes ; then
1566   AC_CHECK_HEADER(libxslt/xslt.h, [], [AC_MSG_ERROR([header file <libxslt/xslt.h> is required for XSLT support])])
1569 if test "$with_ldap" = yes ; then
1570   if test "$PORTNAME" != "win32"; then
1571      AC_CHECK_HEADER(ldap.h, [],
1572                      [AC_MSG_ERROR([header file <ldap.h> is required for LDAP])])
1573      PGAC_LDAP_SAFE
1574   else
1575      AC_CHECK_HEADER(winldap.h, [],
1576                      [AC_MSG_ERROR([header file <winldap.h> is required for LDAP])],
1577                      [AC_INCLUDES_DEFAULT
1578 #include <windows.h>
1579                      ])
1580   fi
1583 if test "$with_bonjour" = yes ; then
1584   AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])
1585 dnl At some point we might add something like
1586 dnl AC_SEARCH_LIBS(DNSServiceRegister, dns_sd)
1587 dnl but right now, what that would mainly accomplish is to encourage
1588 dnl people to try to use the avahi implementation, which does not work.
1589 dnl If you want to use Apple's own Bonjour code on another platform,
1590 dnl just add -ldns_sd to LIBS manually.
1593 # for contrib/uuid-ossp
1594 if test "$with_uuid" = bsd ; then
1595   AC_CHECK_HEADERS(uuid.h,
1596     [AC_EGREP_HEADER([uuid_to_string], uuid.h, [],
1597       [AC_MSG_ERROR([header file <uuid.h> does not match BSD UUID library])])],
1598     [AC_MSG_ERROR([header file <uuid.h> is required for BSD UUID])])
1599 elif test "$with_uuid" = e2fs ; then
1600   AC_CHECK_HEADERS(uuid/uuid.h,
1601     [AC_EGREP_HEADER([uuid_generate], uuid/uuid.h, [],
1602       [AC_MSG_ERROR([header file <uuid/uuid.h> does not match E2FS UUID library])])],
1603     [AC_CHECK_HEADERS(uuid.h,
1604       [AC_EGREP_HEADER([uuid_generate], uuid.h, [],
1605         [AC_MSG_ERROR([header file <uuid.h> does not match E2FS UUID library])])],
1606       [AC_MSG_ERROR([header file <uuid/uuid.h> or <uuid.h> is required for E2FS UUID])])])
1607 elif test "$with_uuid" = ossp ; then
1608   AC_CHECK_HEADERS(ossp/uuid.h,
1609     [AC_EGREP_HEADER([uuid_export], ossp/uuid.h, [],
1610       [AC_MSG_ERROR([header file <ossp/uuid.h> does not match OSSP UUID library])])],
1611     [AC_CHECK_HEADERS(uuid.h,
1612       [AC_EGREP_HEADER([uuid_export], uuid.h, [],
1613         [AC_MSG_ERROR([header file <uuid.h> does not match OSSP UUID library])])],
1614       [AC_MSG_ERROR([header file <ossp/uuid.h> or <uuid.h> is required for OSSP UUID])])])
1617 if test "$PORTNAME" = "win32" ; then
1618    AC_CHECK_HEADERS(crtdefs.h)
1622 ## Types, structures, compiler characteristics
1625 m4_defun([AC_PROG_CC_STDC], []) dnl We don't want that.
1626 AC_C_BIGENDIAN
1627 AC_C_INLINE
1628 PGAC_PRINTF_ARCHETYPE
1629 PGAC_C_STATIC_ASSERT
1630 PGAC_C_TYPEOF
1631 PGAC_C_TYPES_COMPATIBLE
1632 PGAC_C_BUILTIN_CONSTANT_P
1633 PGAC_C_BUILTIN_UNREACHABLE
1634 PGAC_C_COMPUTED_GOTO
1635 PGAC_STRUCT_TIMEZONE
1636 PGAC_UNION_SEMUN
1637 AC_CHECK_TYPES(socklen_t, [], [], [#include <sys/socket.h>])
1638 PGAC_STRUCT_SOCKADDR_SA_LEN
1640 PGAC_TYPE_LOCALE_T
1642 # MSVC doesn't cope well with defining restrict to __restrict, the
1643 # spelling it understands, because it conflicts with
1644 # __declspec(restrict). Therefore we define pg_restrict to the
1645 # appropriate definition, which presumably won't conflict.
1646 AC_C_RESTRICT
1647 if test "$ac_cv_c_restrict" = "no"; then
1648   pg_restrict=""
1649 else
1650   pg_restrict="$ac_cv_c_restrict"
1652 AC_DEFINE_UNQUOTED([pg_restrict], [$pg_restrict],
1653 [Define to keyword to use for C99 restrict support, or to nothing if not
1654 supported])
1656 AC_CHECK_TYPES([struct option], [], [],
1657 [#ifdef HAVE_GETOPT_H
1658 #include <getopt.h>
1659 #endif])
1661 case $host_cpu in
1662   x86_64)
1663     # On x86_64, check if we can compile a popcntq instruction
1664     AC_CACHE_CHECK([whether assembler supports x86_64 popcntq],
1665                    [pgac_cv_have_x86_64_popcntq],
1666     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1667         [long long x = 1; long long r;
1668          __asm__ __volatile__ (" popcntq %1,%0\n" : "=q"(r) : "rm"(x));])],
1669         [pgac_cv_have_x86_64_popcntq=yes],
1670         [pgac_cv_have_x86_64_popcntq=no])])
1671     if test x"$pgac_cv_have_x86_64_popcntq" = xyes ; then
1672         AC_DEFINE(HAVE_X86_64_POPCNTQ, 1, [Define to 1 if the assembler supports X86_64's POPCNTQ instruction.])
1673     fi
1674   ;;
1675   ppc*|powerpc*)
1676     # On PPC, check if compiler accepts "i"(x) when __builtin_constant_p(x).
1677     AC_CACHE_CHECK([whether __builtin_constant_p(x) implies "i"(x) acceptance],
1678                    [pgac_cv_have_i_constraint__builtin_constant_p],
1679     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1680     [static inline int
1681      addi(int ra, int si)
1682      {
1683          int res = 0;
1684          if (__builtin_constant_p(si))
1685              __asm__ __volatile__(
1686                  " addi %0,%1,%2\n" : "=r"(res) : "b"(ra), "i"(si));
1687          return res;
1688      }
1689      int test_adds(int x) { return addi(3, x) + addi(x, 5); }], [])],
1690     [pgac_cv_have_i_constraint__builtin_constant_p=yes],
1691     [pgac_cv_have_i_constraint__builtin_constant_p=no])])
1692     if test x"$pgac_cv_have_i_constraint__builtin_constant_p" = xyes ; then
1693       AC_DEFINE(HAVE_I_CONSTRAINT__BUILTIN_CONSTANT_P, 1,
1694                 [Define to 1 if __builtin_constant_p(x) implies "i"(x) acceptance.])
1695     fi
1696   ;;
1697 esac
1699 # Check largefile support.  You might think this is a system service not a
1700 # compiler characteristic, but you'd be wrong.  We must check this before
1701 # probing existence of related functions such as fseeko, since the largefile
1702 # defines can affect what is generated for that.
1703 if test "$PORTNAME" != "win32"; then
1704    AC_SYS_LARGEFILE
1705    dnl Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define
1706    dnl _DARWIN_USE_64_BIT_INODE, but it isn't: on macOS 10.5 that activates a
1707    dnl bug that causes readdir() to sometimes return EINVAL.  On later macOS
1708    dnl versions where the feature actually works, it's on by default anyway.
1709    AH_VERBATIM([_DARWIN_USE_64_BIT_INODE],[])
1712 dnl Check for largefile support (must be after AC_SYS_LARGEFILE)
1713 AC_CHECK_SIZEOF([off_t])
1715 # If we don't have largefile support, can't handle segment size >= 2GB.
1716 if test "$ac_cv_sizeof_off_t" -lt 8; then
1717   if expr $RELSEG_SIZE '*' $blocksize '>=' 2 '*' 1024 '*' 1024; then
1718     AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1719   fi
1722 AC_CHECK_SIZEOF([bool], [],
1723 [#ifdef HAVE_STDBOOL_H
1724 #include <stdbool.h>
1725 #endif])
1727 dnl We use <stdbool.h> if we have it and it declares type bool as having
1728 dnl size 1.  Otherwise, c.h will fall back to declaring bool as unsigned char.
1729 if test "$ac_cv_header_stdbool_h" = yes -a "$ac_cv_sizeof_bool" = 1; then
1730   AC_DEFINE([PG_USE_STDBOOL], 1,
1731             [Define to 1 to use <stdbool.h> to define type bool.])
1736 ## Functions, global variables
1739 PGAC_VAR_INT_TIMEZONE
1740 PGAC_FUNC_WCSTOMBS_L
1742 # Some versions of libedit contain strlcpy(), setproctitle(), and other
1743 # symbols that that library has no business exposing to the world.  Pending
1744 # acquisition of a clue by those developers, ignore libedit (including its
1745 # possible alias of libreadline) while checking for everything else.
1746 LIBS_including_readline="$LIBS"
1747 LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`
1749 AC_CHECK_FUNCS(m4_normalize([
1750         backtrace_symbols
1751         copyfile
1752         copy_file_range
1753         getifaddrs
1754         getpeerucred
1755         inet_pton
1756         kqueue
1757         mbstowcs_l
1758         memset_s
1759         posix_fallocate
1760         ppoll
1761         pthread_is_threaded_np
1762         setproctitle
1763         setproctitle_fast
1764         strchrnul
1765         strsignal
1766         syncfs
1767         sync_file_range
1768         uselocale
1769         wcstombs_l
1772 # These typically are compiler builtins, for which AC_CHECK_FUNCS fails.
1773 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap16], [int x])
1774 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap32], [int x])
1775 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap64], [long int x])
1776 # We assume that we needn't test all widths of these explicitly:
1777 PGAC_CHECK_BUILTIN_FUNC([__builtin_clz], [unsigned int x])
1778 PGAC_CHECK_BUILTIN_FUNC([__builtin_ctz], [unsigned int x])
1779 PGAC_CHECK_BUILTIN_FUNC([__builtin_popcount], [unsigned int x])
1780 # __builtin_frame_address may draw a diagnostic for non-constant argument,
1781 # so it needs a different test function.
1782 PGAC_CHECK_BUILTIN_FUNC_PTR([__builtin_frame_address], [0])
1784 # We require 64-bit fseeko() to be available, but run this check anyway
1785 # in case it finds that _LARGEFILE_SOURCE has to be #define'd for that.
1786 AC_FUNC_FSEEKO
1788 # posix_fadvise() is a no-op on Solaris, so don't incur function overhead
1789 # by calling it, 2009-04-02
1790 # http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/gen/posix_fadvise.c
1791 dnl must use AS_IF here, else AC_REQUIRES inside AC_CHECK_DECLS malfunctions
1792 AS_IF([test "$PORTNAME" != "solaris"], [
1793 AC_CHECK_FUNCS(posix_fadvise)
1794 AC_CHECK_DECLS(posix_fadvise, [], [], [#include <fcntl.h>])
1795 ]) # fi
1797 AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
1798 AC_CHECK_DECLS([strlcat, strlcpy, strnlen])
1800 # We can't use AC_CHECK_FUNCS to detect these functions, because it
1801 # won't handle deployment target restrictions on macOS
1802 AC_CHECK_DECLS([preadv], [], [], [#include <sys/uio.h>])
1803 AC_CHECK_DECLS([pwritev], [], [], [#include <sys/uio.h>])
1805 # This is probably only present on macOS, but may as well check always
1806 AC_CHECK_DECLS(F_FULLFSYNC, [], [], [#include <fcntl.h>])
1808 AC_REPLACE_FUNCS(m4_normalize([
1809         explicit_bzero
1810         getopt
1811         getpeereid
1812         inet_aton
1813         mkdtemp
1814         strlcat
1815         strlcpy
1816         strnlen
1819 AC_REPLACE_FUNCS(pthread_barrier_wait)
1821 if test "$PORTNAME" = "win32" -o "$PORTNAME" = "cygwin"; then
1822         # Cygwin and (apparently, based on test results) Mingw both
1823         # have a broken strtof(), so substitute its implementation.
1824         # That's not a perfect fix, since it doesn't avoid double-rounding,
1825         # but we have no better options.
1826         AC_LIBOBJ([strtof])
1827         AC_MSG_NOTICE([On $host_os we will use our strtof wrapper.])
1830 # Similarly, use system's getopt_long() only if system provides struct option.
1831 if test x"$ac_cv_type_struct_option" = xyes ; then
1832   AC_REPLACE_FUNCS([getopt_long])
1833 else
1834   AC_LIBOBJ(getopt_long)
1837 # On OpenBSD and Solaris, getopt() doesn't do what we want for long options
1838 # (i.e., allow '-' as a flag character), so use our version on those platforms.
1839 if test "$PORTNAME" = "openbsd" -o "$PORTNAME" = "solaris"; then
1840   AC_LIBOBJ(getopt)
1843 # mingw has adopted a GNU-centric interpretation of optind/optreset,
1844 # so always use our version on Windows.
1845 if test "$PORTNAME" = "win32"; then
1846   AC_LIBOBJ(getopt)
1847   AC_LIBOBJ(getopt_long)
1850 # Win32 (really MinGW) support
1851 if test "$PORTNAME" = "win32"; then
1852   AC_CHECK_FUNCS(_configthreadlocale)
1853   AC_LIBOBJ(dirmod)
1854   AC_LIBOBJ(kill)
1855   AC_LIBOBJ(open)
1856   AC_LIBOBJ(system)
1857   AC_LIBOBJ(win32common)
1858   AC_LIBOBJ(win32dlopen)
1859   AC_LIBOBJ(win32env)
1860   AC_LIBOBJ(win32error)
1861   AC_LIBOBJ(win32fdatasync)
1862   AC_LIBOBJ(win32gai_strerror)
1863   AC_LIBOBJ(win32getrusage)
1864   AC_LIBOBJ(win32link)
1865   AC_LIBOBJ(win32ntdll)
1866   AC_LIBOBJ(win32pread)
1867   AC_LIBOBJ(win32pwrite)
1868   AC_LIBOBJ(win32security)
1869   AC_LIBOBJ(win32setlocale)
1870   AC_LIBOBJ(win32stat)
1872 # Cygwin needs only a bit of that
1873 if test "$PORTNAME" = "cygwin"; then
1874   AC_LIBOBJ(dirmod)
1877 AC_CHECK_FUNC(syslog,
1878               [AC_CHECK_HEADER(syslog.h,
1879                                [AC_DEFINE(HAVE_SYSLOG, 1, [Define to 1 if you have the syslog interface.])])])
1881 AC_CACHE_CHECK([for opterr], pgac_cv_var_int_opterr,
1882 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1883   [extern int opterr; opterr = 1;])],
1884   [pgac_cv_var_int_opterr=yes],
1885   [pgac_cv_var_int_opterr=no])])
1886 if test x"$pgac_cv_var_int_opterr" = x"yes"; then
1887   AC_DEFINE(HAVE_INT_OPTERR, 1, [Define to 1 if you have the global variable 'int opterr'.])
1890 AC_CACHE_CHECK([for optreset], pgac_cv_var_int_optreset,
1891 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1892   [extern int optreset; optreset = 1;])],
1893   [pgac_cv_var_int_optreset=yes],
1894   [pgac_cv_var_int_optreset=no])])
1895 if test x"$pgac_cv_var_int_optreset" = x"yes"; then
1896   AC_DEFINE(HAVE_INT_OPTRESET, 1, [Define to 1 if you have the global variable 'int optreset'.])
1899 if test "$with_icu" = yes; then
1900   ac_save_CPPFLAGS=$CPPFLAGS
1901   CPPFLAGS="$ICU_CFLAGS $CPPFLAGS"
1903   # Verify we have ICU's header files
1904   AC_CHECK_HEADER(unicode/ucol.h, [],
1905         [AC_MSG_ERROR([header file <unicode/ucol.h> is required for ICU])])
1907   CPPFLAGS=$ac_save_CPPFLAGS
1910 if test "$with_llvm" = yes; then
1911   PGAC_CHECK_LLVM_FUNCTIONS()
1914 # Lastly, restore full LIBS list and check for readline/libedit symbols
1915 LIBS="$LIBS_including_readline"
1917 if test "$with_readline" = yes; then
1918   PGAC_READLINE_VARIABLES
1919   AC_CHECK_FUNCS(m4_normalize([
1920         append_history
1921         history_truncate_file
1922         rl_completion_matches
1923         rl_filename_completion_function
1924         rl_reset_screen_size
1925         rl_variable_bind
1926   ]))
1930 # This test makes sure that run tests work at all.  Sometimes a shared
1931 # library is found by the linker, but the runtime linker can't find it.
1932 # This check should come after all modifications of compiler or linker
1933 # variables, and before any other run tests.
1934 AC_MSG_CHECKING([test program])
1935 AC_RUN_IFELSE([AC_LANG_SOURCE([int main() { return 0; }])],
1936 [AC_MSG_RESULT(ok)],
1937 [AC_MSG_RESULT(failed)
1938 AC_MSG_ERROR([[
1939 Could not execute a simple test program.  This may be a problem
1940 related to locating shared libraries.  Check the file 'config.log'
1941 for the exact reason.]])],
1942 [AC_MSG_RESULT([cross-compiling])])
1944 # --------------------
1945 # Run tests below here
1946 # --------------------
1948 dnl Check to see if we have a working 64-bit integer type.
1949 dnl Since Postgres 8.4, we no longer support compilers without a working
1950 dnl 64-bit type; but we have to determine whether that type is called
1951 dnl "long int" or "long long int".
1953 PGAC_TYPE_64BIT_INT([long int])
1955 if test x"$HAVE_LONG_INT_64" = x"yes" ; then
1956   pg_int64_type="long int"
1957 else
1958   PGAC_TYPE_64BIT_INT([long long int])
1959   if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
1960     pg_int64_type="long long int"
1961   else
1962     AC_MSG_ERROR([Cannot find a working 64-bit integer type.])
1963   fi
1966 AC_DEFINE_UNQUOTED(PG_INT64_TYPE, $pg_int64_type,
1967   [Define to the name of a signed 64-bit integer type.])
1969 # Select the printf length modifier that goes with that, too.
1970 if test x"$pg_int64_type" = x"long long int" ; then
1971   INT64_MODIFIER='"ll"'
1972 else
1973   INT64_MODIFIER='"l"'
1976 AC_DEFINE_UNQUOTED(INT64_MODIFIER, $INT64_MODIFIER,
1977                    [Define to the appropriate printf length modifier for 64-bit ints.])
1979 # has to be down here, rather than with the other builtins, because
1980 # the test uses PG_INT64_TYPE.
1981 PGAC_C_BUILTIN_OP_OVERFLOW
1983 # Check size of void *, size_t (enables tweaks for > 32bit address space)
1984 AC_CHECK_SIZEOF([void *])
1985 AC_CHECK_SIZEOF([size_t])
1986 AC_CHECK_SIZEOF([long])
1988 # Determine memory alignment requirements for the basic C data types.
1990 AC_CHECK_ALIGNOF(short)
1991 AC_CHECK_ALIGNOF(int)
1992 AC_CHECK_ALIGNOF(long)
1993 if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
1994   AC_CHECK_ALIGNOF(long long int)
1996 AC_CHECK_ALIGNOF(double)
1998 # Compute maximum alignment of any basic type.
2000 # We require 'double' to have the strictest alignment among the basic types,
2001 # because otherwise the C ABI might impose 8-byte alignment on some of the
2002 # other C types that correspond to TYPALIGN_DOUBLE SQL types.  That could
2003 # cause a mismatch between the tuple layout and the C struct layout of a
2004 # catalog tuple.  We used to carefully order catalog columns such that any
2005 # fixed-width, attalign=4 columns were at offsets divisible by 8 regardless
2006 # of MAXIMUM_ALIGNOF to avoid that, but we no longer support any platforms
2007 # where TYPALIGN_DOUBLE != MAXIMUM_ALIGNOF.
2009 # We assume without checking that long's alignment is at least as strong as
2010 # char, short, or int.  Note that we intentionally do not consider any types
2011 # wider than 64 bits, as allowing MAXIMUM_ALIGNOF to exceed 8 would be too
2012 # much of a penalty for disk and memory space.
2014 MAX_ALIGNOF=$ac_cv_alignof_double
2016 if test $ac_cv_alignof_long -gt $MAX_ALIGNOF ; then
2017   AC_MSG_ERROR([alignment of 'long' is greater than the alignment of 'double'])
2019 if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $ac_cv_alignof_long_long_int -gt $MAX_ALIGNOF ; then
2020   AC_MSG_ERROR([alignment of 'long long int' is greater than the alignment of 'double'])
2022 AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any C data type.])
2025 # Some platforms predefine the types int8, int16, etc.  Only check
2026 # a (hopefully) representative subset.
2027 AC_CHECK_TYPES([int8, uint8, int64, uint64], [], [],
2028 [#include <stdio.h>])
2030 # Some compilers offer a 128-bit integer scalar type.
2031 PGAC_TYPE_128BIT_INT
2033 # Check for various atomic operations now that we have checked how to declare
2034 # 64bit integers.
2035 PGAC_HAVE_GCC__SYNC_CHAR_TAS
2036 PGAC_HAVE_GCC__SYNC_INT32_TAS
2037 PGAC_HAVE_GCC__SYNC_INT32_CAS
2038 PGAC_HAVE_GCC__SYNC_INT64_CAS
2039 PGAC_HAVE_GCC__ATOMIC_INT32_CAS
2040 PGAC_HAVE_GCC__ATOMIC_INT64_CAS
2043 # Check for x86 cpuid instruction
2044 AC_CACHE_CHECK([for __get_cpuid], [pgac_cv__get_cpuid],
2045 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <cpuid.h>],
2046   [[unsigned int exx[4] = {0, 0, 0, 0};
2047   __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);
2048   ]])],
2049   [pgac_cv__get_cpuid="yes"],
2050   [pgac_cv__get_cpuid="no"])])
2051 if test x"$pgac_cv__get_cpuid" = x"yes"; then
2052   AC_DEFINE(HAVE__GET_CPUID, 1, [Define to 1 if you have __get_cpuid.])
2055 AC_CACHE_CHECK([for __cpuid], [pgac_cv__cpuid],
2056 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <intrin.h>],
2057   [[unsigned int exx[4] = {0, 0, 0, 0};
2058   __get_cpuid(exx[0], 1);
2059   ]])],
2060   [pgac_cv__cpuid="yes"],
2061   [pgac_cv__cpuid="no"])])
2062 if test x"$pgac_cv__cpuid" = x"yes"; then
2063   AC_DEFINE(HAVE__CPUID, 1, [Define to 1 if you have __cpuid.])
2066 # Check for Intel SSE 4.2 intrinsics to do CRC calculations.
2068 # First check if the _mm_crc32_u8 and _mm_crc32_u64 intrinsics can be used
2069 # with the default compiler flags. If not, check if adding the -msse4.2
2070 # flag helps. CFLAGS_CRC is set to -msse4.2 if that's required.
2071 PGAC_SSE42_CRC32_INTRINSICS([])
2072 if test x"$pgac_sse42_crc32_intrinsics" != x"yes"; then
2073   PGAC_SSE42_CRC32_INTRINSICS([-msse4.2])
2076 # Are we targeting a processor that supports SSE 4.2? gcc, clang and icc all
2077 # define __SSE4_2__ in that case.
2078 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
2079 #ifndef __SSE4_2__
2080 #error __SSE4_2__ not defined
2081 #endif
2082 ])], [SSE4_2_TARGETED=1])
2084 # Check for ARMv8 CRC Extension intrinsics to do CRC calculations.
2086 # First check if __crc32c* intrinsics can be used with the default compiler
2087 # flags. If not, check if adding -march=armv8-a+crc flag helps.
2088 # CFLAGS_CRC is set if the extra flag is required.
2089 PGAC_ARMV8_CRC32C_INTRINSICS([])
2090 if test x"$pgac_armv8_crc32c_intrinsics" != x"yes"; then
2091   PGAC_ARMV8_CRC32C_INTRINSICS([-march=armv8-a+crc])
2094 # Check for LoongArch CRC intrinsics to do CRC calculations.
2096 # Check if __builtin_loongarch_crcc_* intrinsics can be used
2097 # with the default compiler flags.
2098 PGAC_LOONGARCH_CRC32C_INTRINSICS()
2100 AC_SUBST(CFLAGS_CRC)
2102 # Select CRC-32C implementation.
2104 # If we are targeting a processor that has Intel SSE 4.2 instructions, we can
2105 # use the special CRC instructions for calculating CRC-32C. If we're not
2106 # targeting such a processor, but we can nevertheless produce code that uses
2107 # the SSE intrinsics, perhaps with some extra CFLAGS, compile both
2108 # implementations and select which one to use at runtime, depending on whether
2109 # SSE 4.2 is supported by the processor we're running on.
2111 # Similarly, if we are targeting an ARM processor that has the CRC
2112 # instructions that are part of the ARMv8 CRC Extension, use them. And if
2113 # we're not targeting such a processor, but can nevertheless produce code that
2114 # uses the CRC instructions, compile both, and select at runtime.
2116 # You can skip the runtime check by setting the appropriate USE_*_CRC32 flag to 1
2117 # in the template or configure command line.
2119 # If we are targeting a LoongArch processor, CRC instructions are
2120 # always available (at least on 64 bit), so no runtime check is needed.
2121 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
2122   # Use Intel SSE 4.2 if available.
2123   if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && test x"$SSE4_2_TARGETED" = x"1" ; then
2124     USE_SSE42_CRC32C=1
2125   else
2126     # Intel SSE 4.2, with runtime check? The CPUID instruction is needed for
2127     # the runtime check.
2128     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
2129       USE_SSE42_CRC32C_WITH_RUNTIME_CHECK=1
2130     else
2131       # Use ARM CRC Extension if available.
2132       if test x"$pgac_armv8_crc32c_intrinsics" = x"yes" && test x"$CFLAGS_CRC" = x""; then
2133         USE_ARMV8_CRC32C=1
2134       else
2135         # ARM CRC Extension, with runtime check?
2136         if test x"$pgac_armv8_crc32c_intrinsics" = x"yes"; then
2137           USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK=1
2138         else
2139           # LoongArch CRCC instructions.
2140           if test x"$pgac_loongarch_crc32c_intrinsics" = x"yes"; then
2141             USE_LOONGARCH_CRC32C=1
2142           else
2143             # fall back to slicing-by-8 algorithm, which doesn't require any
2144             # special CPU support.
2145             USE_SLICING_BY_8_CRC32C=1
2146           fi
2147         fi
2148       fi
2149     fi
2150   fi
2153 # Set PG_CRC32C_OBJS appropriately depending on the selected implementation.
2154 AC_MSG_CHECKING([which CRC-32C implementation to use])
2155 if test x"$USE_SSE42_CRC32C" = x"1"; then
2156   AC_DEFINE(USE_SSE42_CRC32C, 1, [Define to 1 use Intel SSE 4.2 CRC instructions.])
2157   PG_CRC32C_OBJS="pg_crc32c_sse42.o"
2158   AC_MSG_RESULT(SSE 4.2)
2159 else
2160   if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2161     AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
2162     PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_sse42_choose.o"
2163     AC_MSG_RESULT(SSE 4.2 with runtime check)
2164   else
2165     if test x"$USE_ARMV8_CRC32C" = x"1"; then
2166       AC_DEFINE(USE_ARMV8_CRC32C, 1, [Define to 1 to use ARMv8 CRC Extension.])
2167       PG_CRC32C_OBJS="pg_crc32c_armv8.o"
2168       AC_MSG_RESULT(ARMv8 CRC instructions)
2169     else
2170       if test x"$USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2171         AC_DEFINE(USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use ARMv8 CRC Extension with a runtime check.])
2172         PG_CRC32C_OBJS="pg_crc32c_armv8.o pg_crc32c_sb8.o pg_crc32c_armv8_choose.o"
2173         AC_MSG_RESULT(ARMv8 CRC instructions with runtime check)
2174       else
2175         if test x"$USE_LOONGARCH_CRC32C" = x"1"; then
2176           AC_DEFINE(USE_LOONGARCH_CRC32C, 1, [Define to 1 to use LoongArch CRCC instructions.])
2177           PG_CRC32C_OBJS="pg_crc32c_loongarch.o"
2178           AC_MSG_RESULT(LoongArch CRCC instructions)
2179         else
2180           AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use software CRC-32C implementation (slicing-by-8).])
2181           PG_CRC32C_OBJS="pg_crc32c_sb8.o"
2182           AC_MSG_RESULT(slicing-by-8)
2183         fi
2184       fi
2185     fi
2186   fi
2188 AC_SUBST(PG_CRC32C_OBJS)
2191 # Select semaphore implementation type.
2192 if test "$PORTNAME" != "win32"; then
2193   if test x"$PREFERRED_SEMAPHORES" = x"NAMED_POSIX" ; then
2194     # Need sem_open for this
2195     AC_SEARCH_LIBS(sem_open, [rt pthread], [USE_NAMED_POSIX_SEMAPHORES=1])
2196   fi
2197   if test x"$PREFERRED_SEMAPHORES" = x"UNNAMED_POSIX" ; then
2198     # Need sem_init for this
2199     AC_SEARCH_LIBS(sem_init, [rt pthread], [USE_UNNAMED_POSIX_SEMAPHORES=1])
2200   fi
2201   AC_MSG_CHECKING([which semaphore API to use])
2202   if test x"$USE_NAMED_POSIX_SEMAPHORES" = x"1" ; then
2203     AC_DEFINE(USE_NAMED_POSIX_SEMAPHORES, 1, [Define to select named POSIX semaphores.])
2204     SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2205     sematype="named POSIX"
2206   else
2207     if test x"$USE_UNNAMED_POSIX_SEMAPHORES" = x"1" ; then
2208       AC_DEFINE(USE_UNNAMED_POSIX_SEMAPHORES, 1, [Define to select unnamed POSIX semaphores.])
2209       SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2210       sematype="unnamed POSIX"
2211     else
2212       AC_DEFINE(USE_SYSV_SEMAPHORES, 1, [Define to select SysV-style semaphores.])
2213       SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
2214       sematype="System V"
2215     fi
2216   fi
2217   AC_MSG_RESULT([$sematype])
2218 else
2219   AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.])
2220   SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
2224 # Select shared-memory implementation type.
2225 if test "$PORTNAME" != "win32"; then
2226   AC_DEFINE(USE_SYSV_SHARED_MEMORY, 1, [Define to select SysV-style shared memory.])
2227   SHMEM_IMPLEMENTATION="src/backend/port/sysv_shmem.c"
2228 else
2229   AC_DEFINE(USE_WIN32_SHARED_MEMORY, 1, [Define to select Win32-style shared memory.])
2230   SHMEM_IMPLEMENTATION="src/backend/port/win32_shmem.c"
2233 # Select random number source. If a TLS library is used then it will be the
2234 # first choice, else the native platform sources (Windows API or /dev/urandom)
2235 # will be used.
2236 AC_MSG_CHECKING([which random number source to use])
2237 if test x"$with_ssl" = x"openssl" ; then
2238   AC_MSG_RESULT([OpenSSL])
2239 elif test x"$PORTNAME" = x"win32" ; then
2240   AC_MSG_RESULT([Windows native])
2241 elif test x"$cross_compiling" = x"yes"; then
2242   AC_MSG_RESULT([assuming /dev/urandom])
2243 else
2244   AC_MSG_RESULT([/dev/urandom])
2245   AC_CHECK_FILE([/dev/urandom], [], [])
2247   if test x"$ac_cv_file__dev_urandom" = x"no" ; then
2248     AC_MSG_ERROR([
2249 no source of strong random numbers was found
2250 PostgreSQL can use OpenSSL, native Windows API or /dev/urandom as a source of random numbers.])
2251   fi
2254 # If not set in template file, set bytes to use libc memset()
2255 if test x"$MEMSET_LOOP_LIMIT" = x"" ; then
2256   MEMSET_LOOP_LIMIT=1024
2258 AC_DEFINE_UNQUOTED(MEMSET_LOOP_LIMIT, ${MEMSET_LOOP_LIMIT}, [Define bytes to use libc memset().])
2261 if test "$enable_nls" = yes ; then
2262   PGAC_CHECK_GETTEXT
2265 # Check for Tcl configuration script tclConfig.sh
2266 if test "$with_tcl" = yes; then
2267     PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
2268     PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
2269                           [TCL_INCLUDE_SPEC,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
2270     if test "$TCL_SHARED_BUILD" != 1; then
2271       AC_MSG_ERROR([cannot build PL/Tcl because Tcl is not a shared library
2272 Use --without-tcl to disable building PL/Tcl.])
2273     fi
2274     # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h>
2275     ac_save_CPPFLAGS=$CPPFLAGS
2276     CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS"
2277     AC_CHECK_HEADER(tcl.h, [], [AC_MSG_ERROR([header file <tcl.h> is required for Tcl])])
2278     CPPFLAGS=$ac_save_CPPFLAGS
2281 # check for <perl.h>
2282 if test "$with_perl" = yes; then
2283   ac_save_CPPFLAGS=$CPPFLAGS
2284   CPPFLAGS="$CPPFLAGS $perl_includespec"
2285   AC_CHECK_HEADER(perl.h, [], [AC_MSG_ERROR([header file <perl.h> is required for Perl])],
2286                   [#include <EXTERN.h>])
2287   # While we're at it, check that we can link to libperl.
2288   # On most platforms, if perl.h is there then libperl.so will be too, but at
2289   # this writing Debian packages them separately.  There is no known reason to
2290   # waste cycles on separate probes for the Tcl or Python libraries, though.
2291   # On some Red Hat platforms, the link attempt can fail if we don't use
2292   # CFLAGS_SL while building the test program.
2293   ac_save_CFLAGS=$CFLAGS
2294   CFLAGS="$CFLAGS $CFLAGS_SL"
2295   pgac_save_LIBS=$LIBS
2296   LIBS="$perl_embed_ldflags"
2297   AC_MSG_CHECKING([for libperl])
2298   AC_LINK_IFELSE([AC_LANG_PROGRAM([
2299 #include <EXTERN.h>
2300 #include <perl.h>
2301 ],  [perl_alloc();])],
2302     [AC_MSG_RESULT(yes)],
2303     [AC_MSG_RESULT(no)
2304      AC_MSG_ERROR([libperl library is required for Perl])])
2305   LIBS=$pgac_save_LIBS
2306   CFLAGS=$ac_save_CFLAGS
2307   CPPFLAGS=$ac_save_CPPFLAGS
2310 # check for <Python.h>
2311 if test "$with_python" = yes; then
2312   ac_save_CPPFLAGS=$CPPFLAGS
2313   CPPFLAGS="$python_includespec $CPPFLAGS"
2314   AC_CHECK_HEADER(Python.h, [], [AC_MSG_ERROR([header file <Python.h> is required for Python])])
2315   CPPFLAGS=$ac_save_CPPFLAGS
2319 # Check for documentation-building tools
2321 PGAC_PATH_PROGS(XMLLINT, xmllint)
2322 PGAC_PATH_PROGS(XSLTPROC, xsltproc)
2323 PGAC_PATH_PROGS(FOP, fop)
2324 PGAC_PATH_PROGS(DBTOEPUB, dbtoepub)
2327 # Check for test tools
2329 if test "$enable_tap_tests" = yes; then
2330   # Make sure we know where prove is.
2331   PGAC_PATH_PROGS(PROVE, prove)
2332   if test -z "$PROVE"; then
2333     AC_MSG_ERROR([prove not found])
2334   fi
2335   # Check for necessary Perl modules.  You might think we should use
2336   # AX_PROG_PERL_MODULES here, but prove might be part of a different Perl
2337   # installation than perl, eg on MSys, so we have to check using prove.
2338   AC_MSG_CHECKING(for Perl modules required for TAP tests)
2339   __CONFIG_HOST_OS__=$host_os; export __CONFIG_HOST_OS__
2340   [modulestderr=`"$PROVE" "$srcdir/config/check_modules.pl" 2>&1 >/dev/null`]
2341   if test $? -eq 0; then
2342     # log the module version details, but don't show them interactively
2343     echo "$modulestderr" >&AS_MESSAGE_LOG_FD
2344     AC_MSG_RESULT(yes)
2345   else
2346     # on failure, though, show the results to the user
2347     AC_MSG_RESULT([$modulestderr])
2348     AC_MSG_ERROR([Additional Perl modules are required to run TAP tests])
2349   fi
2352 # If compiler will take -Wl,--as-needed (or various platform-specific
2353 # spellings thereof) then add that to LDFLAGS.  This is much easier than
2354 # trying to filter LIBS to the minimum for each executable.
2355 # On (at least) some Red-Hat-derived systems, this switch breaks linking to
2356 # libreadline; therefore we postpone testing it until we know what library
2357 # dependencies readline has.  The test code will try to link with $LIBS.
2358 if test "$with_readline" = yes; then
2359   link_test_func=readline
2360 else
2361   link_test_func=exit
2364 if test "$PORTNAME" = "darwin"; then
2365   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-dead_strip_dylibs], $link_test_func)
2366 elif test "$PORTNAME" = "openbsd"; then
2367   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-Bdynamic], $link_test_func)
2368 else
2369   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,--as-needed], $link_test_func)
2372 # For linkers that understand --export-dynamic, add that to the LDFLAGS_EX_BE
2373 # (backend specific ldflags). One some platforms this will always fail (e.g.,
2374 # windows), but on others it depends on the choice of linker (e.g., solaris).
2375 PGAC_PROG_CC_LD_VARFLAGS_OPT(LDFLAGS_EX_BE, [-Wl,--export-dynamic], $link_test_func)
2376 AC_SUBST(LDFLAGS_EX_BE)
2378 # Create compiler version string
2379 if test x"$GCC" = x"yes" ; then
2380   cc_string=`${CC} --version | sed q`
2381   case $cc_string in [[A-Za-z]]*) ;; *) cc_string="GCC $cc_string";; esac
2382 elif test x"$SUN_STUDIO_CC" = x"yes" ; then
2383   cc_string=`${CC} -V 2>&1 | sed q`
2384 else
2385   cc_string=$CC
2388 AC_DEFINE_UNQUOTED(PG_VERSION_STR,
2389                    ["PostgreSQL $PG_VERSION on $host, compiled by $cc_string, `expr $ac_cv_sizeof_void_p \* 8`-bit"],
2390                    [A string containing the version number, platform, and C compiler])
2392 # Supply a numeric version string for use by 3rd party add-ons
2393 # awk -F is a regex on some platforms, and not on others, so make "." a tab
2394 [PG_VERSION_NUM="`echo $PG_MAJORVERSION $PG_MINORVERSION |
2395 $AWK '{printf "%d%04d", $1, $2}'`"]
2396 AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number])
2397 AC_SUBST(PG_VERSION_NUM)
2399 # If we are inserting PG_SYSROOT into CPPFLAGS, do so symbolically not
2400 # literally, so that it's possible to override it at build time using
2401 # a command like "make ... PG_SYSROOT=path".  This has to be done after
2402 # we've finished all configure checks that depend on CPPFLAGS.
2403 # The same for LDFLAGS, too.
2404 if test x"$PG_SYSROOT" != x; then
2405   CPPFLAGS=`echo "$CPPFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2406   LDFLAGS=`echo "$LDFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2408 AC_SUBST(PG_SYSROOT)
2411 # Begin output steps
2413 AC_MSG_NOTICE([using compiler=$cc_string])
2414 AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
2415 AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS])
2416 AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS])
2417 # Currently only used when LLVM is used
2418 if test "$with_llvm" = yes ; then
2419    AC_MSG_NOTICE([using CXX=$CXX])
2420    AC_MSG_NOTICE([using CXXFLAGS=$CXXFLAGS])
2421    AC_MSG_NOTICE([using CLANG=$CLANG])
2422    AC_MSG_NOTICE([using BITCODE_CFLAGS=$BITCODE_CFLAGS])
2423    AC_MSG_NOTICE([using BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS])
2426 # prepare build tree if outside source tree
2427 # Note 1: test -ef might not exist, but it's more reliable than `pwd`.
2428 # Note 2: /bin/pwd might be better than shell's built-in at getting
2429 #         a symlink-free name.
2430 if ( test "$srcdir" -ef . ) >/dev/null 2>&1 || test "`cd $srcdir && /bin/pwd`" = "`/bin/pwd`"; then
2431   vpath_build=no
2432 else
2433   vpath_build=yes
2434   if test "$no_create" != yes; then
2435     _AS_ECHO_N([preparing build tree... ])
2436     pgac_abs_top_srcdir=`cd "$srcdir" && pwd`
2437     $SHELL "$ac_aux_dir/prep_buildtree" "$pgac_abs_top_srcdir" "." \
2438       || AC_MSG_ERROR(failed)
2439     AC_MSG_RESULT(done)
2440   fi
2442 AC_SUBST(vpath_build)
2445 AC_CONFIG_FILES([GNUmakefile src/Makefile.global])
2447 AC_CONFIG_LINKS([
2448   src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION}
2449   src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION}
2450   src/include/pg_config_os.h:src/include/port/${template}.h
2451   src/Makefile.port:src/makefiles/Makefile.${template}
2454 if test "$PORTNAME" = "win32"; then
2455 AC_CONFIG_COMMANDS([check_win32_symlinks],[
2456 # Links sometimes fail undetected on Mingw -
2457 # so here we detect it and warn the user
2458 for FILE in $CONFIG_LINKS
2459  do
2460         # test -e works for symlinks in the MinGW console
2461         test -e `expr "$FILE" : '\([[^:]]*\)'` || AC_MSG_WARN([*** link for $FILE -- please fix by hand])
2462  done
2466 AC_CONFIG_HEADERS([src/include/pg_config.h],
2468 # Update timestamp for pg_config.h (see Makefile.global)
2469 echo >src/include/stamp-h
2472 AC_CONFIG_HEADERS([src/include/pg_config_ext.h],
2474 # Update timestamp for pg_config_ext.h (see Makefile.global)
2475 echo >src/include/stamp-ext-h
2478 AC_CONFIG_HEADERS([src/interfaces/ecpg/include/ecpg_config.h],
2479                   [echo >src/interfaces/ecpg/include/stamp-h])
2481 AC_OUTPUT
2483 # Ensure that any meson build directories would reconfigure and see that
2484 # there's a conflicting in-tree build and can error out.
2485 if test "$vpath_build"="no"; then
2486   touch meson.build