Fix comment in CheckIndexCompatible().
[pgsql.git] / configure.ac
blob16167329fca9c779c8dabf2b770f896a18c4654d
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], [15devel], [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-2022, 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      aix*) template=aix ;;
66   cygwin*|msys*) template=cygwin ;;
67   darwin*) template=darwin ;;
68 dragonfly*) template=netbsd ;;
69  freebsd*) template=freebsd ;;
70     hpux*) template=hpux ;;
71  linux*|gnu*|k*bsd*-gnu)
72            template=linux ;;
73    mingw*) template=win32 ;;
74   netbsd*) template=netbsd ;;
75  openbsd*) template=openbsd ;;
76  solaris*) template=solaris ;;
77 esac
79   if test x"$template" = x"" ; then
80     AC_MSG_ERROR([[
81 *******************************************************************
82 PostgreSQL has apparently not been ported to your platform yet.
83 To try a manual configuration, look into the src/template directory
84 for a similar platform and use the '--with-template=' option.
86 Please also contact <]AC_PACKAGE_BUGREPORT[> to see about
87 rectifying this.  Include the above 'checking host system type...'
88 line.
89 *******************************************************************
90 ]])
91   fi
95 AC_MSG_RESULT([$template])
97 PORTNAME=$template
98 AC_SUBST(PORTNAME)
100 # Initialize default assumption that we do not need separate assembly code
101 # for TAS (test-and-set).  This can be overridden by the template file
102 # when it's executed.
103 need_tas=no
104 tas_file=dummy.s
109 ## Command line options
113 # Add non-standard directories to the include path
115 PGAC_ARG_REQ(with, includes, [DIRS], [look for additional header files in DIRS])
119 # Add non-standard directories to the library search path
121 PGAC_ARG_REQ(with, libraries, [DIRS], [look for additional libraries in DIRS],
122              [LIBRARY_DIRS=$withval])
124 PGAC_ARG_REQ(with, libs,      [DIRS], [alternative spelling of --with-libraries],
125              [LIBRARY_DIRS=$withval])
129 # 64-bit integer date/time storage is now the only option, but to avoid
130 # unnecessary breakage of build scripts, continue to accept an explicit
131 # "--enable-integer-datetimes" switch.
133 PGAC_ARG_BOOL(enable, integer-datetimes, yes, [obsolete option, no longer supported],
134               [],
135               [AC_MSG_ERROR([--disable-integer-datetimes is no longer supported])])
139 # NLS
141 AC_MSG_CHECKING([whether NLS is wanted])
142 PGAC_ARG_OPTARG(enable, nls,
143                 [LANGUAGES], [enable Native Language Support],
144                 [],
145                 [WANTED_LANGUAGES=$enableval],
146                 [AC_DEFINE(ENABLE_NLS, 1,
147                            [Define to 1 if you want National Language Support. (--enable-nls)])])
148 AC_MSG_RESULT([$enable_nls])
149 AC_SUBST(enable_nls)
150 AC_SUBST(WANTED_LANGUAGES)
153 # Default port number (--with-pgport), default 5432
155 AC_MSG_CHECKING([for default port number])
156 PGAC_ARG_REQ(with, pgport, [PORTNUM], [set default port number [5432]],
157              [default_port=$withval],
158              [default_port=5432])
159 AC_MSG_RESULT([$default_port])
160 # Need both of these because some places want an integer and some a string
161 AC_DEFINE_UNQUOTED(DEF_PGPORT, ${default_port},
162 [Define to the default TCP port number on which the server listens and
163 to which clients will try to connect.  This can be overridden at run-time,
164 but it's convenient if your clients have the right default compiled in.
165 (--with-pgport=PORTNUM)])
166 AC_DEFINE_UNQUOTED(DEF_PGPORT_STR, "${default_port}",
167                    [Define to the default TCP port number as a string constant.])
168 AC_SUBST(default_port)
170 # It's worth validating port; you can get very confusing errors otherwise
171 if test x"$default_port" = x""; then
172   AC_MSG_ERROR([invalid --with-pgport specification: empty string])
173 elif test ! x`echo "$default_port" | sed -e 's/[[0-9]]*//'` = x""; then
174   AC_MSG_ERROR([invalid --with-pgport specification: must be a number])
175 elif test ! x`echo "$default_port" | sed -e 's/^0.//'` = x"$default_port"; then
176   AC_MSG_ERROR([invalid --with-pgport specification: must not have leading 0])
177 elif test "$default_port" -lt "1" -o "$default_port" -gt "65535"; then
178   AC_MSG_ERROR([invalid --with-pgport specification: must be between 1 and 65535])
182 # '-rpath'-like feature can be disabled
184 PGAC_ARG_BOOL(enable, rpath, yes,
185               [do not embed shared library search path in executables])
186 AC_SUBST(enable_rpath)
189 # Spinlocks
191 PGAC_ARG_BOOL(enable, spinlocks, yes,
192               [do not use spinlocks])
195 # Atomic operations
197 PGAC_ARG_BOOL(enable, atomics, yes,
198               [do not use atomic operations])
201 # --enable-debug adds -g to compiler flags
203 PGAC_ARG_BOOL(enable, debug, no,
204               [build with debugging symbols (-g)])
205 AC_SUBST(enable_debug)
208 # --enable-profiling enables gcc profiling
210 PGAC_ARG_BOOL(enable, profiling, no,
211               [build with profiling enabled ])
214 # --enable-coverage enables generation of code coverage metrics with gcov
216 PGAC_ARG_BOOL(enable, coverage, no,
217               [build with coverage testing instrumentation],
218 [PGAC_PATH_PROGS(GCOV, gcov)
219 if test -z "$GCOV"; then
220   AC_MSG_ERROR([gcov not found])
222 PGAC_PATH_PROGS(LCOV, lcov)
223 if test -z "$LCOV"; then
224   AC_MSG_ERROR([lcov not found])
226 PGAC_PATH_PROGS(GENHTML, genhtml)
227 if test -z "$GENHTML"; then
228   AC_MSG_ERROR([genhtml not found])
229 fi])
230 AC_SUBST(enable_coverage)
233 # DTrace
235 PGAC_ARG_BOOL(enable, dtrace, no,
236               [build with DTrace support],
237 [PGAC_PATH_PROGS(DTRACE, dtrace)
238 if test -z "$DTRACE"; then
239   AC_MSG_ERROR([dtrace not found])
241 AC_SUBST(DTRACEFLAGS)])
242 AC_SUBST(enable_dtrace)
245 # TAP tests
247 PGAC_ARG_BOOL(enable, tap-tests, no,
248               [enable TAP tests (requires Perl and IPC::Run)])
249 AC_SUBST(enable_tap_tests)
252 # Block size
254 AC_MSG_CHECKING([for block size])
255 PGAC_ARG_REQ(with, blocksize, [BLOCKSIZE], [set table block size in kB [8]],
256              [blocksize=$withval],
257              [blocksize=8])
258 case ${blocksize} in
259   1) BLCKSZ=1024;;
260   2) BLCKSZ=2048;;
261   4) BLCKSZ=4096;;
262   8) BLCKSZ=8192;;
263  16) BLCKSZ=16384;;
264  32) BLCKSZ=32768;;
265   *) AC_MSG_ERROR([Invalid block size. Allowed values are 1,2,4,8,16,32.])
266 esac
267 AC_MSG_RESULT([${blocksize}kB])
269 AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
270  Size of a disk block --- this also limits the size of a tuple.  You
271  can set it bigger if you need bigger tuples (although TOAST should
272  reduce the need to have large tuples, since fields can be spread
273  across multiple tuples).
275  BLCKSZ must be a power of 2.  The maximum possible value of BLCKSZ
276  is currently 2^15 (32768).  This is determined by the 15-bit widths
277  of the lp_off and lp_len fields in ItemIdData (see
278  include/storage/itemid.h).
280  Changing BLCKSZ requires an initdb.
284 # Relation segment size
286 AC_MSG_CHECKING([for segment size])
287 PGAC_ARG_REQ(with, segsize, [SEGSIZE], [set table segment size in GB [1]],
288              [segsize=$withval],
289              [segsize=1])
290 # this expression is set up to avoid unnecessary integer overflow
291 # blocksize is already guaranteed to be a factor of 1024
292 RELSEG_SIZE=`expr '(' 1024 / ${blocksize} ')' '*' ${segsize} '*' 1024`
293 test $? -eq 0 || exit 1
294 AC_MSG_RESULT([${segsize}GB])
296 AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
297  RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
298  Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
299  relations bigger than that are divided into multiple files.
301  RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
302  This is often 2 GB or 4GB in a 32-bit operating system, unless you
303  have large file support enabled.  By default, we make the limit 1 GB
304  to avoid any possible integer-overflow problems within the OS.
305  A limit smaller than necessary only means we divide a large
306  relation into more chunks than necessary, so it seems best to err
307  in the direction of a small limit.
309  A power-of-2 value is recommended to save a few cycles in md.c,
310  but is not absolutely required.
312  Changing RELSEG_SIZE requires an initdb.
316 # WAL block size
318 AC_MSG_CHECKING([for WAL block size])
319 PGAC_ARG_REQ(with, wal-blocksize, [BLOCKSIZE], [set WAL block size in kB [8]],
320              [wal_blocksize=$withval],
321              [wal_blocksize=8])
322 case ${wal_blocksize} in
323   1) XLOG_BLCKSZ=1024;;
324   2) XLOG_BLCKSZ=2048;;
325   4) XLOG_BLCKSZ=4096;;
326   8) XLOG_BLCKSZ=8192;;
327  16) XLOG_BLCKSZ=16384;;
328  32) XLOG_BLCKSZ=32768;;
329  64) XLOG_BLCKSZ=65536;;
330   *) AC_MSG_ERROR([Invalid WAL block size. Allowed values are 1,2,4,8,16,32,64.])
331 esac
332 AC_MSG_RESULT([${wal_blocksize}kB])
334 AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
335  Size of a WAL file block.  This need have no particular relation to BLCKSZ.
336  XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
337  XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
338  buffers, else direct I/O may fail.
340  Changing XLOG_BLCKSZ requires an initdb.
344 # C compiler
347 # For historical reasons you can also use --with-CC to specify the C compiler
348 # to use, although the standard way to do this is to set the CC environment
349 # variable.
350 PGAC_ARG_REQ(with, CC, [CMD], [set compiler (deprecated)], [CC=$with_CC])
352 case $template in
353   aix) pgac_cc_list="gcc xlc"; pgac_cxx_list="g++ xlC";;
354     *) pgac_cc_list="gcc cc"; pgac_cxx_list="g++ c++";;
355 esac
357 AC_PROG_CC([$pgac_cc_list])
358 AC_PROG_CC_C99()
360 # Error out if the compiler does not support C99, as the codebase
361 # relies on that.
362 if test "$ac_cv_prog_cc_c99" = no; then
363     AC_MSG_ERROR([C compiler "$CC" does not support C99])
366 AC_PROG_CXX([$pgac_cxx_list])
368 # Check if it's Intel's compiler, which (usually) pretends to be gcc,
369 # but has idiosyncrasies of its own.  We assume icc will define
370 # __INTEL_COMPILER regardless of CFLAGS.
371 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __INTEL_COMPILER
372 choke me
373 @%:@endif])], [ICC=yes], [ICC=no])
375 # Check if it's Sun Studio compiler. We assume that
376 # __SUNPRO_C will be defined for Sun Studio compilers
377 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __SUNPRO_C
378 choke me
379 @%:@endif])], [SUN_STUDIO_CC=yes], [SUN_STUDIO_CC=no])
381 AC_SUBST(SUN_STUDIO_CC)
385 # LLVM
387 # Checked early because subsequent tests depend on it.
388 PGAC_ARG_BOOL(with, llvm, no, [build with LLVM based JIT support],
389               [AC_DEFINE([USE_LLVM], 1, [Define to 1 to build with LLVM based JIT support. (--with-llvm)])])
390 AC_SUBST(with_llvm)
391 dnl must use AS_IF here, else AC_REQUIRES inside PGAC_LLVM_SUPPORT malfunctions
392 AS_IF([test "$with_llvm" = yes], [
393   PGAC_LLVM_SUPPORT()
394 ]) # fi
397 unset CFLAGS
398 unset CXXFLAGS
401 # Read the template
403 . "$srcdir/src/template/$template" || exit
405 # C[XX]FLAGS are selected so:
406 # If the user specifies something in the environment, that is used.
407 # else:  If the template file set something, that is used.
408 # else:  If coverage was enabled, don't set anything.
409 # else:  If the compiler is GCC, then we use -O2.
410 # else:  If the compiler is something else, then we use -O, unless debugging.
412 if test "$ac_env_CFLAGS_set" = set; then
413   CFLAGS=$ac_env_CFLAGS_value
414 elif test "${CFLAGS+set}" = set; then
415   : # (keep what template set)
416 elif test "$enable_coverage" = yes; then
417   : # no optimization by default
418 elif test "$GCC" = yes; then
419   CFLAGS="-O2"
420 else
421   # if the user selected debug mode, don't use -O
422   if test "$enable_debug" != yes; then
423     CFLAGS="-O"
424   fi
427 if test "$ac_env_CXXFLAGS_set" = set; then
428   CXXFLAGS=$ac_env_CXXFLAGS_value
429 elif test "${CXXFLAGS+set}" = set; then
430   : # (keep what template set)
431 elif test "$enable_coverage" = yes; then
432   : # no optimization by default
433 elif test "$GCC" = yes; then
434   CXXFLAGS="-O2"
435 else
436   # if the user selected debug mode, don't use -O
437   if test "$enable_debug" != yes; then
438     CXXFLAGS="-O"
439   fi
442 # When generating bitcode (for inlining) we always want to use -O2
443 # even when --enable-debug is specified. The bitcode is not going to
444 # be used for line-by-line debugging, and JIT inlining doesn't work
445 # without at least -O1 (otherwise clang will emit 'noinline'
446 # attributes everywhere), which is bad for testing.  Still allow the
447 # environment to override if done explicitly.
448 if test "$ac_env_BITCODE_CFLAGS_set" = set; then
449   BITCODE_CFLAGS=$ac_env_BITCODE_CFLAGS_value
450 else
451   BITCODE_CFLAGS="-O2 $BITCODE_CFLAGS"
453 if test "$ac_env_BITCODE_CXXFLAGS_set" = set; then
454   BITCODE_CXXFLAGS=$ac_env_BITCODE_CXXFLAGS_value
455 else
456   BITCODE_CXXFLAGS="-O2 $BITCODE_CXXFLAGS"
459 # C[XX]FLAGS we determined above will be added back at the end
460 user_CFLAGS=$CFLAGS
461 CFLAGS=""
462 user_CXXFLAGS=$CXXFLAGS
463 CXXFLAGS=""
464 user_BITCODE_CFLAGS=$BITCODE_CFLAGS
465 BITCODE_CFLAGS=""
466 user_BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS
467 BITCODE_CXXFLAGS=""
469 # set CFLAGS_UNROLL_LOOPS and CFLAGS_VECTORIZE from the environment, if present
470 if test "$ac_env_CFLAGS_UNROLL_LOOPS_set" = set; then
471   CFLAGS_UNROLL_LOOPS=$ac_env_CFLAGS_UNROLL_LOOPS_value
473 if test "$ac_env_CFLAGS_VECTORIZE_set" = set; then
474   CFLAGS_VECTORIZE=$ac_env_CFLAGS_VECTORIZE_value
477 # Some versions of GCC support some additional useful warning flags.
478 # Check whether they are supported, and add them to CFLAGS if so.
479 # ICC pretends to be GCC but it's lying; it doesn't support these flags,
480 # but has its own.  Also check other compiler-specific flags here.
482 if test "$GCC" = yes -a "$ICC" = no; then
483   CFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith"
484   CXXFLAGS="-Wall -Wpointer-arith"
485   # These work in some but not all gcc versions
486   save_CFLAGS=$CFLAGS
487   PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
488   # -Wdeclaration-after-statement isn't applicable for C++.  Specific C files
489   # disable it, so AC_SUBST the negative form.
490   PERMIT_DECLARATION_AFTER_STATEMENT=
491   if test x"$save_CFLAGS" != x"$CFLAGS"; then
492     PERMIT_DECLARATION_AFTER_STATEMENT=-Wno-declaration-after-statement
493   fi
494   AC_SUBST(PERMIT_DECLARATION_AFTER_STATEMENT)
495   # Really don't want VLAs to be used in our dialect of C
496   PGAC_PROG_CC_CFLAGS_OPT([-Werror=vla])
497   # On macOS, complain about usage of symbols newer than the deployment target
498   PGAC_PROG_CC_CFLAGS_OPT([-Werror=unguarded-availability-new])
499   PGAC_PROG_CXX_CFLAGS_OPT([-Werror=unguarded-availability-new])
500   # -Wvla is not applicable for C++
501   PGAC_PROG_CC_CFLAGS_OPT([-Wendif-labels])
502   PGAC_PROG_CXX_CFLAGS_OPT([-Wendif-labels])
503   PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-format-attribute])
504   PGAC_PROG_CXX_CFLAGS_OPT([-Wmissing-format-attribute])
505   PGAC_PROG_CC_CFLAGS_OPT([-Wimplicit-fallthrough=3])
506   PGAC_PROG_CXX_CFLAGS_OPT([-Wimplicit-fallthrough=3])
507   PGAC_PROG_CC_CFLAGS_OPT([-Wcast-function-type])
508   PGAC_PROG_CXX_CFLAGS_OPT([-Wcast-function-type])
509   # This was included in -Wall/-Wformat in older GCC versions
510   PGAC_PROG_CC_CFLAGS_OPT([-Wformat-security])
511   PGAC_PROG_CXX_CFLAGS_OPT([-Wformat-security])
512   # Disable strict-aliasing rules; needed for gcc 3.3+
513   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
514   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
515   # Disable optimizations that assume no overflow; needed for gcc 4.3+
516   PGAC_PROG_CC_CFLAGS_OPT([-fwrapv])
517   PGAC_PROG_CXX_CFLAGS_OPT([-fwrapv])
518   # Disable FP optimizations that cause various errors on gcc 4.5+ or maybe 4.6+
519   PGAC_PROG_CC_CFLAGS_OPT([-fexcess-precision=standard])
520   PGAC_PROG_CXX_CFLAGS_OPT([-fexcess-precision=standard])
521   # Optimization flags for specific files that benefit from loop unrolling
522   PGAC_PROG_CC_VAR_OPT(CFLAGS_UNROLL_LOOPS, [-funroll-loops])
523   # Optimization flags for specific files that benefit from vectorization
524   PGAC_PROG_CC_VAR_OPT(CFLAGS_VECTORIZE, [-ftree-vectorize])
525   #
526   # The following tests want to suppress various unhelpful warnings by adding
527   # -Wno-foo switches.  But gcc won't complain about unrecognized -Wno-foo
528   # switches, so we have to test for the positive form and if that works,
529   # add the negative form.  Note that tests of this form typically need to
530   # be duplicated in the BITCODE_CFLAGS setup stanza below.
531   #
532   # Suppress clang's unhelpful unused-command-line-argument warnings.
533   NOT_THE_CFLAGS=""
534   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wunused-command-line-argument])
535   if test -n "$NOT_THE_CFLAGS"; then
536     CFLAGS="$CFLAGS -Wno-unused-command-line-argument"
537   fi
538   # Remove clang 12+'s compound-token-split-by-macro, as this causes a lot
539   # of warnings when building plperl because of usages in the Perl headers.
540   NOT_THE_CFLAGS=""
541   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
542   if test -n "$NOT_THE_CFLAGS"; then
543     CFLAGS="$CFLAGS -Wno-compound-token-split-by-macro"
544   fi
545   # Similarly disable useless truncation warnings from gcc 8+
546   NOT_THE_CFLAGS=""
547   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wformat-truncation])
548   if test -n "$NOT_THE_CFLAGS"; then
549     CFLAGS="$CFLAGS -Wno-format-truncation"
550   fi
551   NOT_THE_CFLAGS=""
552   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wstringop-truncation])
553   if test -n "$NOT_THE_CFLAGS"; then
554     CFLAGS="$CFLAGS -Wno-stringop-truncation"
555   fi
556 elif test "$ICC" = yes; then
557   # Intel's compiler has a bug/misoptimization in checking for
558   # division by NAN (NaN == 0), -mp1 fixes it, so add it to the CFLAGS.
559   PGAC_PROG_CC_CFLAGS_OPT([-mp1])
560   PGAC_PROG_CXX_CFLAGS_OPT([-mp1])
561   # Make sure strict aliasing is off (though this is said to be the default)
562   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
563   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
564 elif test "$PORTNAME" = "aix"; then
565   # AIX's xlc has to have strict aliasing turned off too
566   PGAC_PROG_CC_CFLAGS_OPT([-qnoansialias])
567   PGAC_PROG_CXX_CFLAGS_OPT([-qnoansialias])
568   PGAC_PROG_CC_CFLAGS_OPT([-qlonglong])
569   PGAC_PROG_CXX_CFLAGS_OPT([-qlonglong])
570 elif test "$PORTNAME" = "hpux"; then
571   # On some versions of HP-UX, libm functions do not set errno by default.
572   # Fix that by using +Olibmerrno if the compiler recognizes it.
573   PGAC_PROG_CC_CFLAGS_OPT([+Olibmerrno])
574   PGAC_PROG_CXX_CFLAGS_OPT([+Olibmerrno])
577 AC_SUBST(CFLAGS_UNROLL_LOOPS)
578 AC_SUBST(CFLAGS_VECTORIZE)
580 # Determine flags used to emit bitcode for JIT inlining.
581 # 1. We must duplicate any behaviour-changing compiler flags used above,
582 # to keep compatibility with the compiler used for normal Postgres code.
583 # 2. We don't bother to duplicate extra-warnings switches --- seeing a
584 # warning in the main build is enough.
585 # 3. But we must duplicate -Wno-warning flags, else we'll see those anyway.
586 if test "$with_llvm" = yes ; then
587   CLANGXX="$CLANG -xc++"
589   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fno-strict-aliasing])
590   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fno-strict-aliasing])
591   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fwrapv])
592   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fwrapv])
593   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fexcess-precision=standard])
594   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fexcess-precision=standard])
596   NOT_THE_CFLAGS=""
597   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wunused-command-line-argument])
598   if test -n "$NOT_THE_CFLAGS"; then
599     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-unused-command-line-argument"
600   fi
601   NOT_THE_CFLAGS=""
602   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
603   if test -n "$NOT_THE_CFLAGS"; then
604     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-compound-token-split-by-macro"
605   fi
606   NOT_THE_CFLAGS=""
607   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wformat-truncation])
608   if test -n "$NOT_THE_CFLAGS"; then
609     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-format-truncation"
610   fi
611   NOT_THE_CFLAGS=""
612   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wstringop-truncation])
613   if test -n "$NOT_THE_CFLAGS"; then
614     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-stringop-truncation"
615   fi
618 # supply -g if --enable-debug
619 if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
620   CFLAGS="$CFLAGS -g"
623 if test "$enable_debug" = yes && test "$ac_cv_prog_cxx_g" = yes; then
624   CXXFLAGS="$CXXFLAGS -g"
627 # enable code coverage if --enable-coverage
628 if test "$enable_coverage" = yes; then
629   if test "$GCC" = yes; then
630     CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
631     CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
632   else
633     AC_MSG_ERROR([--enable-coverage is supported only when using GCC])
634   fi
637 # enable profiling if --enable-profiling
638 if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
639   if test "$GCC" = yes; then
640     AC_DEFINE([PROFILE_PID_DIR], 1,
641            [Define to 1 to allow profiling output to be saved separately for each process.])
642     CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
643     CXXFLAGS="$CXXFLAGS -pg $PLATFORM_PROFILE_FLAGS"
644   else
645     AC_MSG_ERROR([--enable-profiling is supported only when using GCC])
646   fi
649 # On Solaris, we need this #define to get POSIX-conforming versions
650 # of many interfaces (sigwait, getpwuid_r, ...).
651 if test "$PORTNAME" = "solaris"; then
652   CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
655 # We already have this in Makefile.win32, but configure needs it too
656 if test "$PORTNAME" = "win32"; then
657   CPPFLAGS="$CPPFLAGS -I$srcdir/src/include/port/win32"
660 # Now that we're done automatically adding stuff to C[XX]FLAGS, put back the
661 # user-specified flags (if any) at the end.  This lets users override
662 # the automatic additions.
663 CFLAGS="$CFLAGS $user_CFLAGS"
664 CXXFLAGS="$CXXFLAGS $user_CXXFLAGS"
665 BITCODE_CFLAGS="$BITCODE_CFLAGS $user_BITCODE_CFLAGS"
666 BITCODE_CXXFLAGS="$BITCODE_CXXFLAGS $user_BITCODE_CXXFLAGS"
668 AC_SUBST(BITCODE_CFLAGS)
669 AC_SUBST(BITCODE_CXXFLAGS)
671 # The template file must set up CFLAGS_SL; we don't support user override
672 AC_SUBST(CFLAGS_SL)
674 # Check if the compiler still works with the final flag settings
675 # (note, we're not checking that for CXX, which is optional)
676 AC_MSG_CHECKING([whether the C compiler still works])
677 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
678   [AC_MSG_RESULT(yes)],
679   [AC_MSG_RESULT(no)
680    AC_MSG_ERROR([cannot proceed])])
682 # Defend against gcc -ffast-math
683 if test "$GCC" = yes; then
684 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifdef __FAST_MATH__
685 choke me
686 @%:@endif])], [], [AC_MSG_ERROR([do not put -ffast-math in CFLAGS])])
689 # Defend against clang being used on x86-32 without SSE2 enabled.  As current
690 # versions of clang do not understand -fexcess-precision=standard, the use of
691 # x87 floating point operations leads to problems like isinf possibly returning
692 # false for a value that is infinite when converted from the 80bit register to
693 # the 8byte memory representation.
695 # Only perform the test if the compiler doesn't understand
696 # -fexcess-precision=standard, that way a potentially fixed compiler will work
697 # automatically.
698 if test "$pgac_cv_prog_CC_cflags__fexcess_precision_standard" = no; then
699 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
700 @%:@if defined(__clang__) && defined(__i386__) && !defined(__SSE2_MATH__)
701 choke me
702 @%:@endif
703 ])], [],
704 [AC_MSG_ERROR([Compiling PostgreSQL with clang, on 32bit x86, requires SSE2 support. Use -msse2 or use gcc.])])
707 AC_PROG_CPP
708 AC_SUBST(GCC)
712 # Set up TAS assembly code if needed; the template file has now had its
713 # chance to request this.
715 AC_CONFIG_LINKS([src/backend/port/tas.s:src/backend/port/tas/${tas_file}])
717 if test "$need_tas" = yes ; then
718   TAS=tas.o
719 else
720   TAS=""
722 AC_SUBST(TAS)
725 # Set up pkg_config in case we need it below
727 PKG_PROG_PKG_CONFIG
730 # Automatic dependency tracking
732 PGAC_ARG_BOOL(enable, depend, no, [turn on automatic dependency tracking],
733               [autodepend=yes])
734 AC_SUBST(autodepend)
738 # Enable assert checks
740 PGAC_ARG_BOOL(enable, cassert, no, [enable assertion checks (for debugging)],
741               [AC_DEFINE([USE_ASSERT_CHECKING], 1,
742                          [Define to 1 to build with assertion checks. (--enable-cassert)])])
746 # Include directories
748 ac_save_IFS=$IFS
749 IFS="${IFS}${PATH_SEPARATOR}"
750 # SRCH_INC comes from the template file
751 for dir in $with_includes $SRCH_INC; do
752   if test -d "$dir"; then
753     INCLUDES="$INCLUDES -I$dir"
754   else
755     AC_MSG_WARN([*** Include directory $dir does not exist.])
756   fi
757 done
758 IFS=$ac_save_IFS
759 AC_SUBST(INCLUDES)
763 # Library directories
765 ac_save_IFS=$IFS
766 IFS="${IFS}${PATH_SEPARATOR}"
767 # LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
768 for dir in $LIBRARY_DIRS $SRCH_LIB; do
769   if test -d "$dir"; then
770     LIBDIRS="$LIBDIRS -L$dir"
771   else
772     AC_MSG_WARN([*** Library directory $dir does not exist.])
773   fi
774 done
775 IFS=$ac_save_IFS
778 # Enable thread-safe client libraries
780 AC_MSG_CHECKING([allow thread-safe client libraries])
781 PGAC_ARG_BOOL(enable, thread-safety, yes, [disable thread-safety in client libraries])
782 if test "$enable_thread_safety" = yes; then
783   AC_DEFINE([ENABLE_THREAD_SAFETY], 1,
784           [Define to 1 to build client libraries as thread-safe code. (--enable-thread-safety)])
786 AC_MSG_RESULT([$enable_thread_safety])
787 AC_SUBST(enable_thread_safety)
790 # ICU
792 AC_MSG_CHECKING([whether to build with ICU support])
793 PGAC_ARG_BOOL(with, icu, no, [build with ICU support],
794               [AC_DEFINE([USE_ICU], 1, [Define to build with ICU support. (--with-icu)])])
795 AC_MSG_RESULT([$with_icu])
796 AC_SUBST(with_icu)
798 if test "$with_icu" = yes; then
799   PKG_CHECK_MODULES(ICU, icu-uc icu-i18n)
803 # Optionally build Tcl modules (PL/Tcl)
805 AC_MSG_CHECKING([whether to build with Tcl])
806 PGAC_ARG_BOOL(with, tcl, no, [build Tcl modules (PL/Tcl)])
807 AC_MSG_RESULT([$with_tcl])
808 AC_SUBST([with_tcl])
810 # We see if the path to the Tcl/Tk configuration scripts is specified.
811 # This will override the use of tclsh to find the paths to search.
813 PGAC_ARG_REQ(with, tclconfig, [DIR], [tclConfig.sh is in DIR])
816 # Optionally build Perl modules (PL/Perl)
818 AC_MSG_CHECKING([whether to build Perl modules])
819 PGAC_ARG_BOOL(with, perl, no, [build Perl modules (PL/Perl)])
820 AC_MSG_RESULT([$with_perl])
821 AC_SUBST(with_perl)
824 # Optionally build Python modules (PL/Python)
826 AC_MSG_CHECKING([whether to build Python modules])
827 PGAC_ARG_BOOL(with, python, no, [build Python modules (PL/Python)])
828 AC_MSG_RESULT([$with_python])
829 AC_SUBST(with_python)
832 # GSSAPI
834 AC_MSG_CHECKING([whether to build with GSSAPI support])
835 PGAC_ARG_BOOL(with, gssapi, no, [build with GSSAPI support],
837   AC_DEFINE(ENABLE_GSS, 1, [Define to build with GSSAPI support. (--with-gssapi)])
838   krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
840 AC_MSG_RESULT([$with_gssapi])
841 AC_SUBST(with_gssapi)
844 AC_SUBST(krb_srvtab)
848 # Kerberos configuration parameters
850 PGAC_ARG_REQ(with, krb-srvnam,
851              [NAME], [default service principal name in Kerberos (GSSAPI) [postgres]],
852              [],
853              [with_krb_srvnam="postgres"])
854 AC_SUBST(with_krb_srvnam)
855 AC_DEFINE_UNQUOTED([PG_KRB_SRVNAM], ["$with_krb_srvnam"],
856                    [Define to the name of the default PostgreSQL service principal in Kerberos (GSSAPI). (--with-krb-srvnam=NAME)])
860 # PAM
862 AC_MSG_CHECKING([whether to build with PAM support])
863 PGAC_ARG_BOOL(with, pam, no,
864               [build with PAM support],
865               [AC_DEFINE([USE_PAM], 1, [Define to 1 to build with PAM support. (--with-pam)])])
866 AC_MSG_RESULT([$with_pam])
870 # BSD AUTH
872 AC_MSG_CHECKING([whether to build with BSD Authentication support])
873 PGAC_ARG_BOOL(with, bsd-auth, no,
874               [build with BSD Authentication support],
875               [AC_DEFINE([USE_BSD_AUTH], 1, [Define to 1 to build with BSD Authentication support. (--with-bsd-auth)])])
876 AC_MSG_RESULT([$with_bsd_auth])
880 # LDAP
882 AC_MSG_CHECKING([whether to build with LDAP support])
883 PGAC_ARG_BOOL(with, ldap, no,
884               [build with LDAP support],
885               [AC_DEFINE([USE_LDAP], 1, [Define to 1 to build with LDAP support. (--with-ldap)])])
886 AC_MSG_RESULT([$with_ldap])
887 AC_SUBST(with_ldap)
891 # Bonjour
893 AC_MSG_CHECKING([whether to build with Bonjour support])
894 PGAC_ARG_BOOL(with, bonjour, no,
895               [build with Bonjour support],
896               [AC_DEFINE([USE_BONJOUR], 1, [Define to 1 to build with Bonjour support. (--with-bonjour)])])
897 AC_MSG_RESULT([$with_bonjour])
901 # SELinux
903 AC_MSG_CHECKING([whether to build with SELinux support])
904 PGAC_ARG_BOOL(with, selinux, no, [build with SELinux support])
905 AC_SUBST(with_selinux)
906 AC_MSG_RESULT([$with_selinux])
909 # Systemd
911 AC_MSG_CHECKING([whether to build with systemd support])
912 PGAC_ARG_BOOL(with, systemd, no, [build with systemd support],
913               [AC_DEFINE([USE_SYSTEMD], 1, [Define to build with systemd support. (--with-systemd)])])
914 AC_SUBST(with_systemd)
915 AC_MSG_RESULT([$with_systemd])
918 # Readline
920 PGAC_ARG_BOOL(with, readline, yes,
921               [do not use GNU Readline nor BSD Libedit for editing])
922 # readline on MinGW has problems with backslashes in psql and other bugs.
923 # This is particularly a problem with non-US code pages.
924 # Therefore disable its use until we understand the cause. 2004-07-20
925 if test "$PORTNAME" = "win32"; then
926   if test "$with_readline" = yes; then
927     AC_MSG_WARN([*** Readline does not work on MinGW --- disabling])
928     with_readline=no
929   fi
931 AC_SUBST(with_readline)
935 # Prefer libedit
937 PGAC_ARG_BOOL(with, libedit-preferred, no,
938               [prefer BSD Libedit over GNU Readline])
942 # UUID library
944 # There are at least three UUID libraries in common use: the FreeBSD/NetBSD
945 # library, the e2fsprogs libuuid (now part of util-linux-ng), and the OSSP
946 # UUID library.  More than one of these might be present on a given platform,
947 # so we make the user say which one she wants.
949 PGAC_ARG_REQ(with, uuid, [LIB], [build contrib/uuid-ossp using LIB (bsd,e2fs,ossp)])
950 if test x"$with_uuid" = x"" ; then
951   with_uuid=no
953 PGAC_ARG_BOOL(with, ossp-uuid, no, [obsolete spelling of --with-uuid=ossp])
954 if test "$with_ossp_uuid" = yes ; then
955   with_uuid=ossp
958 if test "$with_uuid" != no ; then
959   if test "$with_uuid" = bsd ; then
960     AC_DEFINE([HAVE_UUID_BSD], 1, [Define to 1 if you have BSD UUID support.])
961   elif test "$with_uuid" = e2fs ; then
962     AC_DEFINE([HAVE_UUID_E2FS], 1, [Define to 1 if you have E2FS UUID support.])
963   elif test "$with_uuid" = ossp ; then
964     AC_DEFINE([HAVE_UUID_OSSP], 1, [Define to 1 if you have OSSP UUID support.])
965   else
966     AC_MSG_ERROR([--with-uuid must specify one of bsd, e2fs, or ossp])
967   fi
969 AC_SUBST(with_uuid)
973 # XML
975 AC_MSG_CHECKING([whether to build with XML support])
976 PGAC_ARG_BOOL(with, libxml, no, [build with XML support],
977               [AC_DEFINE([USE_LIBXML], 1, [Define to 1 to build with XML support. (--with-libxml)])])
978 AC_MSG_RESULT([$with_libxml])
979 AC_SUBST(with_libxml)
981 if test "$with_libxml" = yes ; then
982   # Check pkg-config, then xml2-config.  But for backwards compatibility,
983   # setting XML2_CONFIG overrides pkg-config.
984   AC_ARG_VAR(XML2_CONFIG, [path to xml2-config utility])dnl
985   have_libxml2_pkg_config=no
986   if test -z "$XML2_CONFIG" -a -n "$PKG_CONFIG"; then
987     PKG_CHECK_MODULES(XML2, [libxml-2.0 >= 2.6.23],
988                       [have_libxml2_pkg_config=yes], [# do nothing])
989   fi
990   if test "$have_libxml2_pkg_config" = no ; then
991     PGAC_PATH_PROGS(XML2_CONFIG, xml2-config)
992     if test -n "$XML2_CONFIG"; then
993       XML2_CFLAGS=`$XML2_CONFIG --cflags`
994       XML2_LIBS=`$XML2_CONFIG --libs`
995     fi
996   fi
997   # Note the user could also set XML2_CFLAGS/XML2_LIBS directly
998   for pgac_option in $XML2_CFLAGS; do
999     case $pgac_option in
1000       -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1001     esac
1002   done
1003   for pgac_option in $XML2_LIBS; do
1004     case $pgac_option in
1005       -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1006     esac
1007   done
1012 # XSLT
1014 PGAC_ARG_BOOL(with, libxslt, no, [use XSLT support when building contrib/xml2],
1015               [AC_DEFINE([USE_LIBXSLT], 1, [Define to 1 to use XSLT support when building contrib/xml2. (--with-libxslt)])])
1018 AC_SUBST(with_libxslt)
1021 # tzdata
1023 PGAC_ARG_REQ(with, system-tzdata,
1024              [DIR], [use system time zone data in DIR])
1025 AC_SUBST(with_system_tzdata)
1028 # Zlib
1030 PGAC_ARG_BOOL(with, zlib, yes,
1031               [do not use Zlib])
1032 AC_SUBST(with_zlib)
1035 # LZ4
1037 AC_MSG_CHECKING([whether to build with LZ4 support])
1038 PGAC_ARG_BOOL(with, lz4, no, [build with LZ4 support],
1039               [AC_DEFINE([USE_LZ4], 1, [Define to 1 to build with LZ4 support. (--with-lz4)])])
1040 AC_MSG_RESULT([$with_lz4])
1041 AC_SUBST(with_lz4)
1043 if test "$with_lz4" = yes; then
1044   PKG_CHECK_MODULES(LZ4, liblz4)
1045   # We only care about -I, -D, and -L switches;
1046   # note that -llz4 will be added by AC_CHECK_LIB below.
1047   for pgac_option in $LZ4_CFLAGS; do
1048     case $pgac_option in
1049       -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1050     esac
1051   done
1052   for pgac_option in $LZ4_LIBS; do
1053     case $pgac_option in
1054       -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1055     esac
1056   done
1060 # Assignments
1063 CPPFLAGS="$CPPFLAGS $INCLUDES"
1064 LDFLAGS="$LDFLAGS $LIBDIRS"
1066 AC_ARG_VAR(LDFLAGS_EX, [extra linker flags for linking executables only])
1067 AC_ARG_VAR(LDFLAGS_SL, [extra linker flags for linking shared libraries only])
1069 PGAC_PROG_LD
1070 AC_SUBST(LD)
1071 AC_SUBST(with_gnu_ld)
1072 AC_PROG_RANLIB
1073 PGAC_CHECK_STRIP
1074 AC_CHECK_TOOL(AR, ar, ar)
1075 if test "$PORTNAME" = "win32"; then
1076   AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool)
1077   AC_CHECK_TOOL(DLLWRAP, dllwrap, dllwrap)
1078   AC_CHECK_TOOL(WINDRES, windres, windres)
1081 AC_PROG_INSTALL
1082 # When Autoconf chooses install-sh as install program it tries to generate
1083 # a relative path to it in each makefile where it substitutes it. This clashes
1084 # with our Makefile.global concept. This workaround helps.
1085 case $INSTALL in
1086   *install-sh*) install_bin='';;
1087   *) install_bin=$INSTALL;;
1088 esac
1089 AC_SUBST(install_bin)
1091 PGAC_PATH_PROGS(TAR, tar)
1092 AC_PROG_LN_S
1093 AC_PROG_MKDIR_P
1094 # When Autoconf chooses install-sh as mkdir -p program it tries to generate
1095 # a relative path to it in each makefile where it substitutes it. This clashes
1096 # with our Makefile.global concept. This workaround helps.
1097 case $MKDIR_P in
1098   *install-sh*) MKDIR_P='\${SHELL} \${top_srcdir}/config/install-sh -c -d';;
1099 esac
1101 PGAC_PATH_BISON
1102 PGAC_PATH_FLEX
1104 PGAC_PATH_PERL
1105 if test "$with_perl" = yes; then
1106   if test -z "$PERL"; then
1107     AC_MSG_ERROR([Perl not found])
1108   fi
1109   PGAC_CHECK_PERL_CONFIGS([archlibexp,privlibexp,useshrplib])
1110   if test "$perl_useshrplib" != yes && test "$perl_useshrplib" != true; then
1111     AC_MSG_ERROR([cannot build PL/Perl because libperl is not a shared library
1112 You might have to rebuild your Perl installation.  Refer to the
1113 documentation for details.  Use --without-perl to disable building
1114 PL/Perl.])
1115   fi
1116   # On most platforms, archlibexp is also where the Perl include files live ...
1117   perl_includespec="-I$perl_archlibexp/CORE"
1118   # ... but on newer macOS versions, we must use -iwithsysroot to look
1119   # under $PG_SYSROOT
1120   if test \! -f "$perl_archlibexp/CORE/perl.h" ; then
1121     if test -f "$PG_SYSROOT$perl_archlibexp/CORE/perl.h" ; then
1122       perl_includespec="-iwithsysroot $perl_archlibexp/CORE"
1123     fi
1124   fi
1125   AC_SUBST(perl_includespec)dnl
1126   PGAC_CHECK_PERL_EMBED_CCFLAGS
1127   PGAC_CHECK_PERL_EMBED_LDFLAGS
1130 if test "$with_python" = yes; then
1131   PGAC_PATH_PYTHON
1132   PGAC_CHECK_PYTHON_EMBED_SETUP
1135 if test x"$cross_compiling" = x"yes" && test -z "$with_system_tzdata"; then
1136   PGAC_PATH_PROGS(ZIC, zic)
1137   if test -z "$ZIC"; then
1138     AC_MSG_ERROR([
1139 When cross-compiling, either use the option --with-system-tzdata to use
1140 existing time-zone data, or set the environment variable ZIC to a zic
1141 program to use during the build.])
1142   fi
1146 # Pthreads
1148 # For each platform, we need to know about any special compile and link
1149 # libraries, and whether the normal C function names are thread-safe.
1150 # See the comment at the top of src/port/thread.c for more information.
1151 # WIN32 doesn't need the pthread tests;  it always uses threads
1153 # These tests are run before the library-tests, because linking with the
1154 # other libraries can pull in the pthread functions as a side-effect.  We
1155 # want to use the -pthread or similar flags directly, and not rely on
1156 # the side-effects of linking with some other library.
1158 dnl note: We have to use AS_IF here rather than plain if. The AC_CHECK_HEADER
1159 dnl invocation below is the first one in the script, and autoconf generates
1160 dnl additional code for that, which must not be inside the if-block. AS_IF
1161 dnl knows how to do that.
1162 AS_IF([test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"],
1163 [ # then
1164 AX_PTHREAD      # set thread flags
1166 # Some platforms use these, so just define them.  They can't hurt if they
1167 # are not supported.
1168 PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE"
1170 # Check for *_r functions
1171 _CFLAGS="$CFLAGS"
1172 _LIBS="$LIBS"
1173 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
1174 LIBS="$LIBS $PTHREAD_LIBS"
1176 AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([
1177 pthread.h not found;  use --disable-thread-safety to disable thread safety])])
1179 AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r])
1181 # Do test here with the proper thread flags
1182 PGAC_FUNC_STRERROR_R_INT
1184 CFLAGS="$_CFLAGS"
1185 LIBS="$_LIBS"
1187 ], [ # else
1188 # do not use values from template file
1189 PTHREAD_CFLAGS=
1190 PTHREAD_LIBS=
1191 ]) # fi
1193 AC_SUBST(PTHREAD_CFLAGS)
1194 AC_SUBST(PTHREAD_LIBS)
1198 ## Libraries
1200 ## Most libraries are included only if they demonstrably provide a function
1201 ## we need, but libm is an exception: always include it, because there are
1202 ## too many compilers that play cute optimization games that will break
1203 ## probes for standard functions such as pow().
1206 AC_CHECK_LIB(m, main)
1207 AC_SEARCH_LIBS(setproctitle, util)
1208 AC_SEARCH_LIBS(dlopen, dl)
1209 AC_SEARCH_LIBS(socket, [socket ws2_32])
1210 AC_SEARCH_LIBS(shl_load, dld)
1211 AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
1212 AC_SEARCH_LIBS(shm_open, rt)
1213 AC_SEARCH_LIBS(shm_unlink, rt)
1214 AC_SEARCH_LIBS(clock_gettime, [rt posix4])
1215 # Solaris:
1216 AC_SEARCH_LIBS(fdatasync, [rt posix4])
1217 # Cygwin:
1218 AC_SEARCH_LIBS(shmget, cygipc)
1219 # *BSD:
1220 AC_SEARCH_LIBS(backtrace_symbols, execinfo)
1222 if test "$enable_thread_safety" = yes; then
1223   AC_SEARCH_LIBS(gethostbyname_r, nsl)
1224   AC_SEARCH_LIBS(pthread_barrier_wait, pthread)
1227 if test "$with_readline" = yes; then
1228   PGAC_CHECK_READLINE
1229   if test x"$pgac_cv_check_readline" = x"no"; then
1230     AC_MSG_ERROR([readline library not found
1231 If you have readline already installed, see config.log for details on the
1232 failure.  It is possible the compiler isn't looking in the proper directory.
1233 Use --without-readline to disable readline support.])
1234   fi
1237 if test "$with_zlib" = yes; then
1238   AC_CHECK_LIB(z, inflate, [],
1239                [AC_MSG_ERROR([zlib library not found
1240 If you have zlib already installed, see config.log for details on the
1241 failure.  It is possible the compiler isn't looking in the proper directory.
1242 Use --without-zlib to disable zlib support.])])
1245 if test "$enable_spinlocks" = yes; then
1246   AC_DEFINE(HAVE_SPINLOCKS, 1, [Define to 1 if you have spinlocks.])
1247 else
1248   AC_MSG_WARN([
1249 *** Not using spinlocks will cause poor performance.])
1252 if test "$enable_atomics" = yes; then
1253   AC_DEFINE(HAVE_ATOMICS, 1, [Define to 1 if you want to use atomics if available.])
1254 else
1255   AC_MSG_WARN([
1256 *** Not using atomic operations will cause poor performance.])
1259 if test "$with_gssapi" = yes ; then
1260   if test "$PORTNAME" != "win32"; then
1261     AC_SEARCH_LIBS(gss_init_sec_context, [gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'], [],
1262                    [AC_MSG_ERROR([could not find function 'gss_init_sec_context' required for GSSAPI])])
1263   else
1264     LIBS="$LIBS -lgssapi32"
1265   fi
1269 # SSL Library
1271 # There is currently only one supported SSL/TLS library: OpenSSL.
1273 PGAC_ARG_REQ(with, ssl, [LIB], [use LIB for SSL/TLS support (openssl)])
1274 if test x"$with_ssl" = x"" ; then
1275   with_ssl=no
1277 PGAC_ARG_BOOL(with, openssl, no, [obsolete spelling of --with-ssl=openssl])
1278 if test "$with_openssl" = yes ; then
1279   with_ssl=openssl
1282 if test "$with_ssl" = openssl ; then
1283   dnl Order matters!
1284   # Minimum required OpenSSL version is 1.0.1
1285   AC_DEFINE(OPENSSL_API_COMPAT, [0x10001000L],
1286             [Define to the OpenSSL API version in use. This avoids deprecation warnings from newer OpenSSL versions.])
1287   if test "$PORTNAME" != "win32"; then
1288      AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [AC_MSG_ERROR([library 'crypto' is required for OpenSSL])])
1289      AC_CHECK_LIB(ssl,    SSL_new, [], [AC_MSG_ERROR([library 'ssl' is required for OpenSSL])])
1290   else
1291      AC_SEARCH_LIBS(CRYPTO_new_ex_data, [eay32 crypto], [], [AC_MSG_ERROR([library 'eay32' or 'crypto' is required for OpenSSL])])
1292      AC_SEARCH_LIBS(SSL_new, [ssleay32 ssl], [], [AC_MSG_ERROR([library 'ssleay32' or 'ssl' is required for OpenSSL])])
1293   fi
1294   # Function introduced in OpenSSL 1.0.2.
1295   AC_CHECK_FUNCS([X509_get_signature_nid])
1296   # Functions introduced in OpenSSL 1.1.0. We used to check for
1297   # OPENSSL_VERSION_NUMBER, but that didn't work with 1.1.0, because LibreSSL
1298   # defines OPENSSL_VERSION_NUMBER to claim version 2.0.0, even though it
1299   # doesn't have these OpenSSL 1.1.0 functions. So check for individual
1300   # functions.
1301   AC_CHECK_FUNCS([OPENSSL_init_ssl BIO_get_data BIO_meth_new ASN1_STRING_get0_data HMAC_CTX_new HMAC_CTX_free])
1302   # OpenSSL versions before 1.1.0 required setting callback functions, for
1303   # thread-safety. In 1.1.0, it's no longer required, and CRYPTO_lock()
1304   # function was removed.
1305   AC_CHECK_FUNCS([CRYPTO_lock])
1306   AC_DEFINE([USE_OPENSSL], 1, [Define to 1 to build with OpenSSL support. (--with-ssl=openssl)])
1307 elif test "$with_ssl" != no ; then
1308   AC_MSG_ERROR([--with-ssl must specify openssl])
1310 AC_SUBST(with_ssl)
1312 if test "$with_pam" = yes ; then
1313   AC_CHECK_LIB(pam,    pam_start, [], [AC_MSG_ERROR([library 'pam' is required for PAM])])
1316 if test "$with_libxml" = yes ; then
1317   AC_CHECK_LIB(xml2, xmlSaveToBuffer, [], [AC_MSG_ERROR([library 'xml2' (version >= 2.6.23) is required for XML support])])
1320 if test "$with_libxslt" = yes ; then
1321   AC_CHECK_LIB(xslt, xsltCleanupGlobals, [], [AC_MSG_ERROR([library 'xslt' is required for XSLT support])])
1324 if test "$with_lz4" = yes ; then
1325   AC_CHECK_LIB(lz4, LZ4_compress_default, [], [AC_MSG_ERROR([library 'lz4' is required for LZ4 support])])
1328 # Note: We can test for libldap_r only after we know PTHREAD_LIBS;
1329 # also, on AIX, we may need to have openssl in LIBS for this step.
1330 if test "$with_ldap" = yes ; then
1331   _LIBS="$LIBS"
1332   if test "$PORTNAME" != "win32"; then
1333     AC_CHECK_LIB(ldap, ldap_bind, [],
1334                  [AC_MSG_ERROR([library 'ldap' is required for LDAP])],
1335                  [$EXTRA_LDAP_LIBS])
1336     LDAP_LIBS_BE="-lldap $EXTRA_LDAP_LIBS"
1337     # This test is carried out against libldap.
1338     AC_CHECK_FUNCS([ldap_initialize])
1339     if test "$enable_thread_safety" = yes; then
1340       # Use ldap_r for FE if available, else assume ldap is thread-safe.
1341       # On some platforms ldap_r fails to link without PTHREAD_LIBS.
1342       LIBS="$_LIBS"
1343       AC_CHECK_LIB(ldap_r, ldap_bind,
1344                    [LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"],
1345                    [LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"],
1346                    [$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
1347     else
1348       LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
1349     fi
1350   else
1351     AC_CHECK_LIB(wldap32, ldap_bind, [], [AC_MSG_ERROR([library 'wldap32' is required for LDAP])])
1352     LDAP_LIBS_FE="-lwldap32"
1353     LDAP_LIBS_BE="-lwldap32"
1354   fi
1355   LIBS="$_LIBS"
1357 AC_SUBST(LDAP_LIBS_FE)
1358 AC_SUBST(LDAP_LIBS_BE)
1360 # for contrib/sepgsql
1361 if test "$with_selinux" = yes; then
1362   AC_CHECK_LIB(selinux, security_compute_create_name, [],
1363                [AC_MSG_ERROR([library 'libselinux', version 2.1.10 or newer, is required for SELinux support])])
1366 # for contrib/uuid-ossp
1367 if test "$with_uuid" = bsd ; then
1368   # On BSD, the UUID functions are in libc
1369   AC_CHECK_FUNC(uuid_to_string,
1370     [UUID_LIBS=""],
1371     [AC_MSG_ERROR([BSD UUID functions are not present])])
1372 elif test "$with_uuid" = e2fs ; then
1373   # On macOS, the UUID functions are in libc
1374   AC_CHECK_FUNC(uuid_generate,
1375     [UUID_LIBS=""],
1376     [AC_CHECK_LIB(uuid, uuid_generate,
1377       [UUID_LIBS="-luuid"],
1378       [AC_MSG_ERROR([library 'uuid' is required for E2FS UUID])])])
1379 elif test "$with_uuid" = ossp ; then
1380   AC_CHECK_LIB(ossp-uuid, uuid_export,
1381     [UUID_LIBS="-lossp-uuid"],
1382     [AC_CHECK_LIB(uuid, uuid_export,
1383       [UUID_LIBS="-luuid"],
1384       [AC_MSG_ERROR([library 'ossp-uuid' or 'uuid' is required for OSSP UUID])])])
1386 AC_SUBST(UUID_LIBS)
1390 ## Header files
1393 AC_HEADER_STDBOOL
1395 AC_CHECK_HEADERS(m4_normalize([
1396         atomic.h
1397         copyfile.h
1398         execinfo.h
1399         getopt.h
1400         ifaddrs.h
1401         langinfo.h
1402         mbarrier.h
1403         poll.h
1404         sys/epoll.h
1405         sys/event.h
1406         sys/ipc.h
1407         sys/personality.h
1408         sys/prctl.h
1409         sys/procctl.h
1410         sys/pstat.h
1411         sys/resource.h
1412         sys/select.h
1413         sys/sem.h
1414         sys/shm.h
1415         sys/signalfd.h
1416         sys/sockio.h
1417         sys/tas.h
1418         sys/uio.h
1419         sys/un.h
1420         termios.h
1421         ucred.h
1422         wctype.h
1425 # On BSD, test for net/if.h will fail unless sys/socket.h
1426 # is included first.
1427 AC_CHECK_HEADERS(net/if.h, [], [],
1428 [AC_INCLUDES_DEFAULT
1429 #include <sys/socket.h>
1432 # On OpenBSD, test for sys/ucred.h will fail unless sys/param.h
1433 # is included first.
1434 AC_CHECK_HEADERS(sys/ucred.h, [], [],
1435 [AC_INCLUDES_DEFAULT
1436 #include <sys/param.h>
1439 # At least on IRIX, test for netinet/tcp.h will fail unless
1440 # netinet/in.h is included first.
1441 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
1442 [AC_INCLUDES_DEFAULT
1443 #include <netinet/in.h>
1446 if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
1447   AC_CHECK_HEADERS(readline/readline.h, [],
1448         [AC_CHECK_HEADERS(readline.h, [],
1449                 [AC_MSG_ERROR([readline header not found
1450 If you have readline already installed, see config.log for details on the
1451 failure.  It is possible the compiler isn't looking in the proper directory.
1452 Use --without-readline to disable readline support.])])])
1453   AC_CHECK_HEADERS(readline/history.h, [],
1454         [AC_CHECK_HEADERS(history.h, [],
1455                 [AC_MSG_ERROR([history header not found
1456 If you have readline already installed, see config.log for details on the
1457 failure.  It is possible the compiler isn't looking in the proper directory.
1458 Use --without-readline to disable readline support.])])])
1461 if expr x"$pgac_cv_check_readline" : 'x-ledit' >/dev/null ; then
1462 # Some installations of libedit usurp /usr/include/readline/, which seems
1463 # bad practice, since in combined installations readline will have its headers
1464 # there.  We might have to resort to AC_EGREP checks to make sure we found
1465 # the proper header...
1466   AC_CHECK_HEADERS(editline/readline.h, [],
1467         [AC_CHECK_HEADERS(readline.h, [],
1468                 [AC_CHECK_HEADERS(readline/readline.h, [],
1469                         [AC_MSG_ERROR([readline header not found
1470 If you have libedit already installed, see config.log for details on the
1471 failure.  It is possible the compiler isn't looking in the proper directory.
1472 Use --without-readline to disable libedit support.])])])])
1473 # Note: in a libedit installation, history.h is sometimes a dummy, and may
1474 # not be there at all.  Hence, don't complain if not found.  We must check
1475 # though, since in yet other versions it is an independent header.
1476   AC_CHECK_HEADERS(editline/history.h, [],
1477         [AC_CHECK_HEADERS(history.h, [],
1478                 [AC_CHECK_HEADERS(readline/history.h)])])
1481 if test "$with_zlib" = yes; then
1482   AC_CHECK_HEADER(zlib.h, [], [AC_MSG_ERROR([zlib header not found
1483 If you have zlib already installed, see config.log for details on the
1484 failure.  It is possible the compiler isn't looking in the proper directory.
1485 Use --without-zlib to disable zlib support.])])
1488 PGAC_PATH_PROGS(LZ4, lz4)
1489 if test "$with_lz4" = yes; then
1490   AC_CHECK_HEADERS(lz4.h, [], [AC_MSG_ERROR([lz4.h header file is required for LZ4])])
1493 if test "$with_gssapi" = yes ; then
1494   AC_CHECK_HEADERS(gssapi/gssapi.h, [],
1495         [AC_CHECK_HEADERS(gssapi.h, [], [AC_MSG_ERROR([gssapi.h header file is required for GSSAPI])])])
1498 if test "$with_ssl" = openssl ; then
1499   AC_CHECK_HEADER(openssl/ssl.h, [], [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL])])
1500   AC_CHECK_HEADER(openssl/err.h, [], [AC_MSG_ERROR([header file <openssl/err.h> is required for OpenSSL])])
1503 if test "$with_pam" = yes ; then
1504   AC_CHECK_HEADERS(security/pam_appl.h, [],
1505                    [AC_CHECK_HEADERS(pam/pam_appl.h, [],
1506                                      [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM.])])])
1509 if test "$with_bsd_auth" = yes ; then
1510   AC_CHECK_HEADER(bsd_auth.h, [], [AC_MSG_ERROR([header file <bsd_auth.h> is required for BSD Authentication support])])
1513 if test "$with_systemd" = yes ; then
1514   AC_CHECK_HEADER(systemd/sd-daemon.h, [], [AC_MSG_ERROR([header file <systemd/sd-daemon.h> is required for systemd support])])
1517 if test "$with_libxml" = yes ; then
1518   AC_CHECK_HEADER(libxml/parser.h, [], [AC_MSG_ERROR([header file <libxml/parser.h> is required for XML support])])
1521 if test "$with_libxslt" = yes ; then
1522   AC_CHECK_HEADER(libxslt/xslt.h, [], [AC_MSG_ERROR([header file <libxslt/xslt.h> is required for XSLT support])])
1525 if test "$with_ldap" = yes ; then
1526   if test "$PORTNAME" != "win32"; then
1527      AC_CHECK_HEADERS(ldap.h, [],
1528                       [AC_MSG_ERROR([header file <ldap.h> is required for LDAP])])
1529      PGAC_LDAP_SAFE
1530   else
1531      AC_CHECK_HEADERS(winldap.h, [],
1532                       [AC_MSG_ERROR([header file <winldap.h> is required for LDAP])],
1533                       [AC_INCLUDES_DEFAULT
1534 #include <windows.h>
1535                       ])
1536   fi
1539 if test "$with_bonjour" = yes ; then
1540   AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])
1541 dnl At some point we might add something like
1542 dnl AC_SEARCH_LIBS(DNSServiceRegister, dns_sd)
1543 dnl but right now, what that would mainly accomplish is to encourage
1544 dnl people to try to use the avahi implementation, which does not work.
1545 dnl If you want to use Apple's own Bonjour code on another platform,
1546 dnl just add -ldns_sd to LIBS manually.
1549 # for contrib/uuid-ossp
1550 if test "$with_uuid" = bsd ; then
1551   AC_CHECK_HEADERS(uuid.h,
1552     [AC_EGREP_HEADER([uuid_to_string], uuid.h, [],
1553       [AC_MSG_ERROR([header file <uuid.h> does not match BSD UUID library])])],
1554     [AC_MSG_ERROR([header file <uuid.h> is required for BSD UUID])])
1555 elif test "$with_uuid" = e2fs ; then
1556   AC_CHECK_HEADERS(uuid/uuid.h,
1557     [AC_EGREP_HEADER([uuid_generate], uuid/uuid.h, [],
1558       [AC_MSG_ERROR([header file <uuid/uuid.h> does not match E2FS UUID library])])],
1559     [AC_CHECK_HEADERS(uuid.h,
1560       [AC_EGREP_HEADER([uuid_generate], uuid.h, [],
1561         [AC_MSG_ERROR([header file <uuid.h> does not match E2FS UUID library])])],
1562       [AC_MSG_ERROR([header file <uuid/uuid.h> or <uuid.h> is required for E2FS UUID])])])
1563 elif test "$with_uuid" = ossp ; then
1564   AC_CHECK_HEADERS(ossp/uuid.h,
1565     [AC_EGREP_HEADER([uuid_export], ossp/uuid.h, [],
1566       [AC_MSG_ERROR([header file <ossp/uuid.h> does not match OSSP UUID library])])],
1567     [AC_CHECK_HEADERS(uuid.h,
1568       [AC_EGREP_HEADER([uuid_export], uuid.h, [],
1569         [AC_MSG_ERROR([header file <uuid.h> does not match OSSP UUID library])])],
1570       [AC_MSG_ERROR([header file <ossp/uuid.h> or <uuid.h> is required for OSSP UUID])])])
1573 if test "$PORTNAME" = "win32" ; then
1574    AC_CHECK_HEADERS(crtdefs.h)
1578 ## Types, structures, compiler characteristics
1581 m4_defun([AC_PROG_CC_STDC], []) dnl We don't want that.
1582 AC_C_BIGENDIAN
1583 AC_C_INLINE
1584 PGAC_PRINTF_ARCHETYPE
1585 PGAC_C_FUNCNAME_SUPPORT
1586 PGAC_C_STATIC_ASSERT
1587 PGAC_C_TYPEOF
1588 PGAC_C_TYPES_COMPATIBLE
1589 PGAC_C_BUILTIN_CONSTANT_P
1590 PGAC_C_BUILTIN_UNREACHABLE
1591 PGAC_C_COMPUTED_GOTO
1592 PGAC_STRUCT_TIMEZONE
1593 PGAC_UNION_SEMUN
1594 AC_CHECK_TYPES(socklen_t, [], [], [#include <sys/socket.h>])
1595 PGAC_STRUCT_SOCKADDR_UN
1596 PGAC_STRUCT_SOCKADDR_STORAGE
1597 PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS
1598 PGAC_STRUCT_ADDRINFO
1600 PGAC_TYPE_LOCALE_T
1602 # MSVC doesn't cope well with defining restrict to __restrict, the
1603 # spelling it understands, because it conflicts with
1604 # __declspec(restrict). Therefore we define pg_restrict to the
1605 # appropriate definition, which presumably won't conflict.
1607 # Allow platforms with buggy compilers to force restrict to not be
1608 # used by setting $FORCE_DISABLE_RESTRICT=yes in the relevant
1609 # template.
1610 AC_C_RESTRICT
1611 if test "$ac_cv_c_restrict" = "no" -o "x$FORCE_DISABLE_RESTRICT" = "xyes"; then
1612   pg_restrict=""
1613 else
1614   pg_restrict="$ac_cv_c_restrict"
1616 AC_DEFINE_UNQUOTED([pg_restrict], [$pg_restrict],
1617 [Define to keyword to use for C99 restrict support, or to nothing if not
1618 supported])
1620 AC_CHECK_TYPES([struct cmsgcred], [], [],
1621 [#include <sys/socket.h>
1622 #include <sys/param.h>
1623 #ifdef HAVE_SYS_UCRED_H
1624 #include <sys/ucred.h>
1625 #endif])
1627 AC_CHECK_TYPES([struct option], [], [],
1628 [#ifdef HAVE_GETOPT_H
1629 #include <getopt.h>
1630 #endif])
1632 if test "$with_zlib" = yes; then
1633   # Check that <zlib.h> defines z_streamp (versions before about 1.0.4
1634   # did not).  While we could work around the lack of z_streamp, it
1635   # seems unwise to encourage people to use such old zlib versions...
1636   AC_CHECK_TYPE(z_streamp, [], [AC_MSG_ERROR([zlib version is too old
1637 Use --without-zlib to disable zlib support.])],
1638                 [#include <zlib.h>])
1641 case $host_cpu in
1642   x86_64)
1643     # On x86_64, check if we can compile a popcntq instruction
1644     AC_CACHE_CHECK([whether assembler supports x86_64 popcntq],
1645                    [pgac_cv_have_x86_64_popcntq],
1646     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1647         [long long x = 1; long long r;
1648          __asm__ __volatile__ (" popcntq %1,%0\n" : "=q"(r) : "rm"(x));])],
1649         [pgac_cv_have_x86_64_popcntq=yes],
1650         [pgac_cv_have_x86_64_popcntq=no])])
1651     if test x"$pgac_cv_have_x86_64_popcntq" = xyes ; then
1652         AC_DEFINE(HAVE_X86_64_POPCNTQ, 1, [Define to 1 if the assembler supports X86_64's POPCNTQ instruction.])
1653     fi
1654   ;;
1655   ppc*|powerpc*)
1656     # On PPC, check if assembler supports LWARX instruction's mutex hint bit
1657     AC_CACHE_CHECK([whether assembler supports lwarx hint bit],
1658                    [pgac_cv_have_ppc_mutex_hint],
1659     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1660         [int a = 0; int *p = &a; int r;
1661          __asm__ __volatile__ (" lwarx %0,0,%1,1\n" : "=&r"(r) : "r"(p));])],
1662         [pgac_cv_have_ppc_mutex_hint=yes],
1663         [pgac_cv_have_ppc_mutex_hint=no])])
1664     if test x"$pgac_cv_have_ppc_mutex_hint" = xyes ; then
1665         AC_DEFINE(HAVE_PPC_LWARX_MUTEX_HINT, 1, [Define to 1 if the assembler supports PPC's LWARX mutex hint bit.])
1666     fi
1667     # Check if compiler accepts "i"(x) when __builtin_constant_p(x).
1668     AC_CACHE_CHECK([whether __builtin_constant_p(x) implies "i"(x) acceptance],
1669                    [pgac_cv_have_i_constraint__builtin_constant_p],
1670     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1671     [static inline int
1672      addi(int ra, int si)
1673      {
1674          int res = 0;
1675          if (__builtin_constant_p(si))
1676              __asm__ __volatile__(
1677                  " addi %0,%1,%2\n" : "=r"(res) : "b"(ra), "i"(si));
1678          return res;
1679      }
1680      int test_adds(int x) { return addi(3, x) + addi(x, 5); }], [])],
1681     [pgac_cv_have_i_constraint__builtin_constant_p=yes],
1682     [pgac_cv_have_i_constraint__builtin_constant_p=no])])
1683     if test x"$pgac_cv_have_i_constraint__builtin_constant_p" = xyes ; then
1684       AC_DEFINE(HAVE_I_CONSTRAINT__BUILTIN_CONSTANT_P, 1,
1685                 [Define to 1 if __builtin_constant_p(x) implies "i"(x) acceptance.])
1686     fi
1687   ;;
1688 esac
1690 # Check largefile support.  You might think this is a system service not a
1691 # compiler characteristic, but you'd be wrong.  We must check this before
1692 # probing existence of related functions such as fseeko, since the largefile
1693 # defines can affect what is generated for that.
1694 if test "$PORTNAME" != "win32"; then
1695    AC_SYS_LARGEFILE
1696    dnl Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define
1697    dnl _DARWIN_USE_64_BIT_INODE, but it isn't: on macOS 10.5 that activates a
1698    dnl bug that causes readdir() to sometimes return EINVAL.  On later macOS
1699    dnl versions where the feature actually works, it's on by default anyway.
1700    AH_VERBATIM([_DARWIN_USE_64_BIT_INODE],[])
1703 dnl Check for largefile support (must be after AC_SYS_LARGEFILE)
1704 AC_CHECK_SIZEOF([off_t])
1706 # If we don't have largefile support, can't handle segsize >= 2GB.
1707 if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
1708    AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1711 AC_CHECK_SIZEOF([bool], [],
1712 [#ifdef HAVE_STDBOOL_H
1713 #include <stdbool.h>
1714 #endif])
1716 dnl We use <stdbool.h> if we have it and it declares type bool as having
1717 dnl size 1.  Otherwise, c.h will fall back to declaring bool as unsigned char.
1718 if test "$ac_cv_header_stdbool_h" = yes -a "$ac_cv_sizeof_bool" = 1; then
1719   AC_DEFINE([PG_USE_STDBOOL], 1,
1720             [Define to 1 to use <stdbool.h> to define type bool.])
1725 ## Functions, global variables
1728 PGAC_VAR_INT_TIMEZONE
1729 PGAC_FUNC_GETTIMEOFDAY_1ARG
1730 PGAC_FUNC_WCSTOMBS_L
1732 # Some versions of libedit contain strlcpy(), setproctitle(), and other
1733 # symbols that that library has no business exposing to the world.  Pending
1734 # acquisition of a clue by those developers, ignore libedit (including its
1735 # possible alias of libreadline) while checking for everything else.
1736 LIBS_including_readline="$LIBS"
1737 LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`
1739 AC_CHECK_FUNCS(m4_normalize([
1740         backtrace_symbols
1741         clock_gettime
1742         copyfile
1743         fdatasync
1744         getifaddrs
1745         getpeerucred
1746         getrlimit
1747         kqueue
1748         mbstowcs_l
1749         memset_s
1750         poll
1751         posix_fallocate
1752         ppoll
1753         pstat
1754         pthread_is_threaded_np
1755         readlink
1756         readv
1757         setproctitle
1758         setproctitle_fast
1759         setsid
1760         shm_open
1761         strchrnul
1762         strsignal
1763         symlink
1764         syncfs
1765         sync_file_range
1766         uselocale
1767         wcstombs_l
1768         writev
1771 # These typically are compiler builtins, for which AC_CHECK_FUNCS fails.
1772 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap16], [int x])
1773 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap32], [int x])
1774 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap64], [long int x])
1775 # We assume that we needn't test all widths of these explicitly:
1776 PGAC_CHECK_BUILTIN_FUNC([__builtin_clz], [unsigned int x])
1777 PGAC_CHECK_BUILTIN_FUNC([__builtin_ctz], [unsigned int x])
1778 PGAC_CHECK_BUILTIN_FUNC([__builtin_popcount], [unsigned int x])
1780 # We require 64-bit fseeko() to be available, but run this check anyway
1781 # in case it finds that _LARGEFILE_SOURCE has to be #define'd for that.
1782 AC_FUNC_FSEEKO
1784 # Make sure there's a declaration for sigwait(), then make sure
1785 # that it conforms to the POSIX standard (there seem to still be
1786 # some platforms out there with pre-POSIX sigwait()).  On Solaris,
1787 # _POSIX_PTHREAD_SEMANTICS affects the result, but we already
1788 # added that to CPPFLAGS.
1789 AC_CHECK_DECLS(sigwait, [], [], [#include <signal.h>])
1790 if test "x$ac_cv_have_decl_sigwait" = xyes; then
1791   AC_CACHE_CHECK([for POSIX-conforming sigwait declaration],
1792     [pgac_cv_have_posix_decl_sigwait],
1793     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1794       #include <signal.h>
1795       int sigwait(const sigset_t *set, int *sig);
1796       ],
1797       [])],
1798       [pgac_cv_have_posix_decl_sigwait=yes],
1799       [pgac_cv_have_posix_decl_sigwait=no])])
1801 if test "x$pgac_cv_have_posix_decl_sigwait" = xyes; then
1802   AC_DEFINE(HAVE_POSIX_DECL_SIGWAIT, 1,
1803             [Define to 1 if you have a POSIX-conforming sigwait declaration.])
1804 else
1805   # On non-Windows, libpq requires POSIX sigwait() for thread safety.
1806   if test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"; then
1807     AC_MSG_ERROR([POSIX-conforming sigwait is required to enable thread safety.])
1808   fi
1811 # posix_fadvise() is a no-op on Solaris, so don't incur function overhead
1812 # by calling it, 2009-04-02
1813 # http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/gen/posix_fadvise.c
1814 dnl must use AS_IF here, else AC_REQUIRES inside AC_CHECK_DECLS malfunctions
1815 AS_IF([test "$PORTNAME" != "solaris"], [
1816 AC_CHECK_FUNCS(posix_fadvise)
1817 AC_CHECK_DECLS(posix_fadvise, [], [], [#include <fcntl.h>])
1818 ]) # fi
1820 AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
1821 AC_CHECK_DECLS([strlcat, strlcpy, strnlen])
1823 # We can't use AC_REPLACE_FUNCS to replace these functions, because it
1824 # won't handle deployment target restrictions on macOS
1825 AC_CHECK_DECLS([preadv], [], [AC_LIBOBJ(preadv)], [#include <sys/uio.h>])
1826 AC_CHECK_DECLS([pwritev], [], [AC_LIBOBJ(pwritev)], [#include <sys/uio.h>])
1828 # This is probably only present on macOS, but may as well check always
1829 AC_CHECK_DECLS(F_FULLFSYNC, [], [], [#include <fcntl.h>])
1831 AC_CHECK_DECLS([RTLD_GLOBAL, RTLD_NOW], [], [], [#include <dlfcn.h>])
1833 AC_CHECK_TYPE([struct sockaddr_in6],
1834         [AC_DEFINE(HAVE_IPV6, 1, [Define to 1 if you have support for IPv6.])],
1835         [],
1836 [$ac_includes_default
1837 #include <netinet/in.h>])
1839 AC_CACHE_CHECK([for PS_STRINGS], [pgac_cv_var_PS_STRINGS],
1840 [AC_LINK_IFELSE([AC_LANG_PROGRAM(
1841 [#include <machine/vmparam.h>
1842 #include <sys/exec.h>
1844 [PS_STRINGS->ps_nargvstr = 1;
1845 PS_STRINGS->ps_argvstr = "foo";])],
1846 [pgac_cv_var_PS_STRINGS=yes],
1847 [pgac_cv_var_PS_STRINGS=no])])
1848 if test "$pgac_cv_var_PS_STRINGS" = yes ; then
1849   AC_DEFINE([HAVE_PS_STRINGS], 1, [Define to 1 if the PS_STRINGS thing exists.])
1852 AC_REPLACE_FUNCS(m4_normalize([
1853         dlopen
1854         explicit_bzero
1855         fls
1856         getopt
1857         getpeereid
1858         getrusage
1859         inet_aton
1860         link
1861         mkdtemp
1862         pread
1863         pwrite
1864         strlcat
1865         strlcpy
1866         strnlen
1867         strtof
1870 if test "$enable_thread_safety" = yes; then
1871   AC_REPLACE_FUNCS(pthread_barrier_wait)
1874 if test "$PORTNAME" = "win32" -o "$PORTNAME" = "cygwin"; then
1875         # Cygwin and (apparently, based on test results) Mingw both
1876         # have a broken strtof(), so substitute the same replacement
1877         # code we use with VS2013. That's not a perfect fix, since
1878         # (unlike with VS2013) it doesn't avoid double-rounding, but
1879         # we have no better options. To get that, though, we have to
1880         # force the file to be compiled despite HAVE_STRTOF.
1881         AC_LIBOBJ([strtof])
1882         AC_MSG_NOTICE([On $host_os we will use our strtof wrapper.])
1885 case $host_os in
1886         # Windows uses a specialised env handler
1887         mingw*)
1888                 AC_DEFINE(HAVE_SETENV, 1, [Define to 1 because replacement version used.])
1889                 AC_DEFINE(HAVE_UNSETENV, 1, [Define to 1 because replacement version used.])
1890                 ac_cv_func_setenv=yes
1891                 ac_cv_func_unsetenv=yes
1892                 ;;
1893         *)
1894                 AC_REPLACE_FUNCS([setenv unsetenv])
1895                 ;;
1896 esac
1898 # System's version of getaddrinfo(), if any, may be used only if we found
1899 # a definition for struct addrinfo; see notes in src/include/getaddrinfo.h.
1900 # We use only our own getaddrinfo.c on Windows, but it's time to revisit that.
1901 if test x"$ac_cv_type_struct_addrinfo" = xyes && \
1902    test "$PORTNAME" != "win32"; then
1903   AC_REPLACE_FUNCS([getaddrinfo])
1904 else
1905   AC_LIBOBJ(getaddrinfo)
1908 # Similarly, use system's getopt_long() only if system provides struct option.
1909 if test x"$ac_cv_type_struct_option" = xyes ; then
1910   AC_REPLACE_FUNCS([getopt_long])
1911 else
1912   AC_LIBOBJ(getopt_long)
1915 # On OpenBSD and Solaris, getopt() doesn't do what we want for long options
1916 # (i.e., allow '-' as a flag character), so use our version on those platforms.
1917 if test "$PORTNAME" = "openbsd" -o "$PORTNAME" = "solaris"; then
1918   AC_LIBOBJ(getopt)
1921 # mingw has adopted a GNU-centric interpretation of optind/optreset,
1922 # so always use our version on Windows.
1923 if test "$PORTNAME" = "win32"; then
1924   AC_LIBOBJ(getopt)
1925   AC_LIBOBJ(getopt_long)
1928 # Win32 (really MinGW) support
1929 if test "$PORTNAME" = "win32"; then
1930   AC_CHECK_FUNCS(_configthreadlocale)
1931   AC_REPLACE_FUNCS(gettimeofday)
1932   AC_LIBOBJ(dirmod)
1933   AC_LIBOBJ(kill)
1934   AC_LIBOBJ(open)
1935   AC_LIBOBJ(system)
1936   AC_LIBOBJ(win32env)
1937   AC_LIBOBJ(win32error)
1938   AC_LIBOBJ(win32ntdll)
1939   AC_LIBOBJ(win32security)
1940   AC_LIBOBJ(win32setlocale)
1941   AC_LIBOBJ(win32stat)
1942   AC_DEFINE([HAVE_SYMLINK], 1,
1943             [Define to 1 if you have the `symlink' function.])
1944   AC_CHECK_TYPES(MINIDUMP_TYPE, [pgac_minidump_type=yes], [pgac_minidump_type=no], [
1945 #define WIN32_LEAN_AND_MEAN
1946 #include <windows.h>
1947 #include <string.h>
1948 #include <dbghelp.h>])
1950 if test x"$pgac_minidump_type" = x"yes" ; then
1951   AC_SUBST(have_win32_dbghelp,yes)
1952 else
1953   AC_SUBST(have_win32_dbghelp,no)
1956 # Cygwin needs only a bit of that
1957 if test "$PORTNAME" = "cygwin"; then
1958   AC_LIBOBJ(dirmod)
1961 AC_CHECK_FUNC(syslog,
1962               [AC_CHECK_HEADER(syslog.h,
1963                                [AC_DEFINE(HAVE_SYSLOG, 1, [Define to 1 if you have the syslog interface.])])])
1965 AC_CACHE_CHECK([for opterr], pgac_cv_var_int_opterr,
1966 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1967   [extern int opterr; opterr = 1;])],
1968   [pgac_cv_var_int_opterr=yes],
1969   [pgac_cv_var_int_opterr=no])])
1970 if test x"$pgac_cv_var_int_opterr" = x"yes"; then
1971   AC_DEFINE(HAVE_INT_OPTERR, 1, [Define to 1 if you have the global variable 'int opterr'.])
1974 AC_CACHE_CHECK([for optreset], pgac_cv_var_int_optreset,
1975 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1976   [extern int optreset; optreset = 1;])],
1977   [pgac_cv_var_int_optreset=yes],
1978   [pgac_cv_var_int_optreset=no])])
1979 if test x"$pgac_cv_var_int_optreset" = x"yes"; then
1980   AC_DEFINE(HAVE_INT_OPTRESET, 1, [Define to 1 if you have the global variable 'int optreset'.])
1983 AC_CHECK_FUNCS([strtoll __strtoll strtoq], [break])
1984 AC_CHECK_FUNCS([strtoull __strtoull strtouq], [break])
1985 # strto[u]ll may exist but not be declared
1986 AC_CHECK_DECLS([strtoll, strtoull])
1988 if test "$with_icu" = yes; then
1989   ac_save_CPPFLAGS=$CPPFLAGS
1990   CPPFLAGS="$ICU_CFLAGS $CPPFLAGS"
1992   # Verify we have ICU's header files
1993   AC_CHECK_HEADER(unicode/ucol.h, [],
1994         [AC_MSG_ERROR([header file <unicode/ucol.h> is required for ICU])])
1996   CPPFLAGS=$ac_save_CPPFLAGS
1999 if test "$with_llvm" = yes; then
2000   PGAC_CHECK_LLVM_FUNCTIONS()
2003 # Lastly, restore full LIBS list and check for readline/libedit symbols
2004 LIBS="$LIBS_including_readline"
2006 if test "$with_readline" = yes; then
2007   PGAC_READLINE_VARIABLES
2008   AC_CHECK_FUNCS(m4_normalize([
2009         append_history
2010         history_truncate_file
2011         rl_completion_matches
2012         rl_filename_completion_function
2013         rl_reset_screen_size
2014         rl_variable_bind
2015   ]))
2019 # This test makes sure that run tests work at all.  Sometimes a shared
2020 # library is found by the linker, but the runtime linker can't find it.
2021 # This check should come after all modifications of compiler or linker
2022 # variables, and before any other run tests.
2023 AC_MSG_CHECKING([test program])
2024 AC_RUN_IFELSE([AC_LANG_SOURCE([int main() { return 0; }])],
2025 [AC_MSG_RESULT(ok)],
2026 [AC_MSG_RESULT(failed)
2027 AC_MSG_ERROR([[
2028 Could not execute a simple test program.  This may be a problem
2029 related to locating shared libraries.  Check the file 'config.log'
2030 for the exact reason.]])],
2031 [AC_MSG_RESULT([cross-compiling])])
2033 # --------------------
2034 # Run tests below here
2035 # --------------------
2037 dnl Check to see if we have a working 64-bit integer type.
2038 dnl Since Postgres 8.4, we no longer support compilers without a working
2039 dnl 64-bit type; but we have to determine whether that type is called
2040 dnl "long int" or "long long int".
2042 PGAC_TYPE_64BIT_INT([long int])
2044 if test x"$HAVE_LONG_INT_64" = x"yes" ; then
2045   pg_int64_type="long int"
2046 else
2047   PGAC_TYPE_64BIT_INT([long long int])
2048   if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
2049     pg_int64_type="long long int"
2050   else
2051     AC_MSG_ERROR([Cannot find a working 64-bit integer type.])
2052   fi
2055 AC_DEFINE_UNQUOTED(PG_INT64_TYPE, $pg_int64_type,
2056   [Define to the name of a signed 64-bit integer type.])
2058 # Select the printf length modifier that goes with that, too.
2059 if test x"$pg_int64_type" = x"long long int" ; then
2060   INT64_MODIFIER='"ll"'
2061 else
2062   INT64_MODIFIER='"l"'
2065 AC_DEFINE_UNQUOTED(INT64_MODIFIER, $INT64_MODIFIER,
2066                    [Define to the appropriate printf length modifier for 64-bit ints.])
2068 # has to be down here, rather than with the other builtins, because
2069 # the test uses PG_INT64_TYPE.
2070 PGAC_C_BUILTIN_OP_OVERFLOW
2072 # Check size of void *, size_t (enables tweaks for > 32bit address space)
2073 AC_CHECK_SIZEOF([void *])
2074 AC_CHECK_SIZEOF([size_t])
2075 AC_CHECK_SIZEOF([long])
2077 # Determine memory alignment requirements for the basic C data types.
2079 AC_CHECK_ALIGNOF(short)
2080 AC_CHECK_ALIGNOF(int)
2081 AC_CHECK_ALIGNOF(long)
2082 if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
2083   AC_CHECK_ALIGNOF(long long int)
2085 AC_CHECK_ALIGNOF(double)
2087 # Compute maximum alignment of any basic type.
2088 # We assume long's alignment is at least as strong as char, short, or int;
2089 # but we must check long long (if it is being used for int64) and double.
2090 # Note that we intentionally do not consider any types wider than 64 bits,
2091 # as allowing MAXIMUM_ALIGNOF to exceed 8 would be too much of a penalty
2092 # for disk and memory space.
2094 MAX_ALIGNOF=$ac_cv_alignof_long
2095 if test $MAX_ALIGNOF -lt $ac_cv_alignof_double ; then
2096   MAX_ALIGNOF=$ac_cv_alignof_double
2098 if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $MAX_ALIGNOF -lt $ac_cv_alignof_long_long_int ; then
2099   MAX_ALIGNOF="$ac_cv_alignof_long_long_int"
2101 AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any C data type.])
2104 # Some platforms predefine the types int8, int16, etc.  Only check
2105 # a (hopefully) representative subset.
2106 AC_CHECK_TYPES([int8, uint8, int64, uint64], [], [],
2107 [#include <stdio.h>])
2109 # Some compilers offer a 128-bit integer scalar type.
2110 PGAC_TYPE_128BIT_INT
2112 # Check for various atomic operations now that we have checked how to declare
2113 # 64bit integers.
2114 PGAC_HAVE_GCC__SYNC_CHAR_TAS
2115 PGAC_HAVE_GCC__SYNC_INT32_TAS
2116 PGAC_HAVE_GCC__SYNC_INT32_CAS
2117 PGAC_HAVE_GCC__SYNC_INT64_CAS
2118 PGAC_HAVE_GCC__ATOMIC_INT32_CAS
2119 PGAC_HAVE_GCC__ATOMIC_INT64_CAS
2122 # Check for x86 cpuid instruction
2123 AC_CACHE_CHECK([for __get_cpuid], [pgac_cv__get_cpuid],
2124 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <cpuid.h>],
2125   [[unsigned int exx[4] = {0, 0, 0, 0};
2126   __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);
2127   ]])],
2128   [pgac_cv__get_cpuid="yes"],
2129   [pgac_cv__get_cpuid="no"])])
2130 if test x"$pgac_cv__get_cpuid" = x"yes"; then
2131   AC_DEFINE(HAVE__GET_CPUID, 1, [Define to 1 if you have __get_cpuid.])
2134 AC_CACHE_CHECK([for __cpuid], [pgac_cv__cpuid],
2135 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <intrin.h>],
2136   [[unsigned int exx[4] = {0, 0, 0, 0};
2137   __get_cpuid(exx[0], 1);
2138   ]])],
2139   [pgac_cv__cpuid="yes"],
2140   [pgac_cv__cpuid="no"])])
2141 if test x"$pgac_cv__cpuid" = x"yes"; then
2142   AC_DEFINE(HAVE__CPUID, 1, [Define to 1 if you have __cpuid.])
2145 # Check for Intel SSE 4.2 intrinsics to do CRC calculations.
2147 # First check if the _mm_crc32_u8 and _mm_crc32_u64 intrinsics can be used
2148 # with the default compiler flags. If not, check if adding the -msse4.2
2149 # flag helps. CFLAGS_SSE42 is set to -msse4.2 if that's required.
2150 PGAC_SSE42_CRC32_INTRINSICS([])
2151 if test x"$pgac_sse42_crc32_intrinsics" != x"yes"; then
2152   PGAC_SSE42_CRC32_INTRINSICS([-msse4.2])
2154 AC_SUBST(CFLAGS_SSE42)
2156 # Are we targeting a processor that supports SSE 4.2? gcc, clang and icc all
2157 # define __SSE4_2__ in that case.
2158 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
2159 #ifndef __SSE4_2__
2160 #error __SSE4_2__ not defined
2161 #endif
2162 ])], [SSE4_2_TARGETED=1])
2164 # Check for ARMv8 CRC Extension intrinsics to do CRC calculations.
2166 # First check if __crc32c* intrinsics can be used with the default compiler
2167 # flags. If not, check if adding -march=armv8-a+crc flag helps.
2168 # CFLAGS_ARMV8_CRC32C is set if the extra flag is required.
2169 PGAC_ARMV8_CRC32C_INTRINSICS([])
2170 if test x"$pgac_armv8_crc32c_intrinsics" != x"yes"; then
2171   PGAC_ARMV8_CRC32C_INTRINSICS([-march=armv8-a+crc])
2173 AC_SUBST(CFLAGS_ARMV8_CRC32C)
2175 # Select CRC-32C implementation.
2177 # If we are targeting a processor that has Intel SSE 4.2 instructions, we can
2178 # use the special CRC instructions for calculating CRC-32C. If we're not
2179 # targeting such a processor, but we can nevertheless produce code that uses
2180 # the SSE intrinsics, perhaps with some extra CFLAGS, compile both
2181 # implementations and select which one to use at runtime, depending on whether
2182 # SSE 4.2 is supported by the processor we're running on.
2184 # Similarly, if we are targeting an ARM processor that has the CRC
2185 # instructions that are part of the ARMv8 CRC Extension, use them. And if
2186 # we're not targeting such a processor, but can nevertheless produce code that
2187 # uses the CRC instructions, compile both, and select at runtime.
2189 # You can override this logic by setting the appropriate USE_*_CRC32 flag to 1
2190 # in the template or configure command line.
2191 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""; then
2192   # Use Intel SSE 4.2 if available.
2193   if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && test x"$SSE4_2_TARGETED" = x"1" ; then
2194     USE_SSE42_CRC32C=1
2195   else
2196     # Intel SSE 4.2, with runtime check? The CPUID instruction is needed for
2197     # the runtime check.
2198     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
2199       USE_SSE42_CRC32C_WITH_RUNTIME_CHECK=1
2200     else
2201       # Use ARM CRC Extension if available.
2202       if test x"$pgac_armv8_crc32c_intrinsics" = x"yes" && test x"$CFLAGS_ARMV8_CRC32C" = x""; then
2203         USE_ARMV8_CRC32C=1
2204       else
2205         # ARM CRC Extension, with runtime check?
2206         if test x"$pgac_armv8_crc32c_intrinsics" = x"yes"; then
2207           USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK=1
2208         else
2209           # fall back to slicing-by-8 algorithm, which doesn't require any
2210           # special CPU support.
2211           USE_SLICING_BY_8_CRC32C=1
2212         fi
2213       fi
2214     fi
2215   fi
2218 # Set PG_CRC32C_OBJS appropriately depending on the selected implementation.
2219 AC_MSG_CHECKING([which CRC-32C implementation to use])
2220 if test x"$USE_SSE42_CRC32C" = x"1"; then
2221   AC_DEFINE(USE_SSE42_CRC32C, 1, [Define to 1 use Intel SSE 4.2 CRC instructions.])
2222   PG_CRC32C_OBJS="pg_crc32c_sse42.o"
2223   AC_MSG_RESULT(SSE 4.2)
2224 else
2225   if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2226     AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
2227     PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_sse42_choose.o"
2228     AC_MSG_RESULT(SSE 4.2 with runtime check)
2229   else
2230     if test x"$USE_ARMV8_CRC32C" = x"1"; then
2231       AC_DEFINE(USE_ARMV8_CRC32C, 1, [Define to 1 to use ARMv8 CRC Extension.])
2232       PG_CRC32C_OBJS="pg_crc32c_armv8.o"
2233       AC_MSG_RESULT(ARMv8 CRC instructions)
2234     else
2235       if test x"$USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2236         AC_DEFINE(USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use ARMv8 CRC Extension with a runtime check.])
2237         PG_CRC32C_OBJS="pg_crc32c_armv8.o pg_crc32c_sb8.o pg_crc32c_armv8_choose.o"
2238         AC_MSG_RESULT(ARMv8 CRC instructions with runtime check)
2239       else
2240         AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use software CRC-32C implementation (slicing-by-8).])
2241         PG_CRC32C_OBJS="pg_crc32c_sb8.o"
2242         AC_MSG_RESULT(slicing-by-8)
2243       fi
2244     fi
2245   fi
2247 AC_SUBST(PG_CRC32C_OBJS)
2250 # Select semaphore implementation type.
2251 if test "$PORTNAME" != "win32"; then
2252   if test x"$PREFERRED_SEMAPHORES" = x"NAMED_POSIX" ; then
2253     # Need sem_open for this
2254     AC_SEARCH_LIBS(sem_open, [rt pthread], [USE_NAMED_POSIX_SEMAPHORES=1])
2255   fi
2256   if test x"$PREFERRED_SEMAPHORES" = x"UNNAMED_POSIX" ; then
2257     # Need sem_init for this
2258     AC_SEARCH_LIBS(sem_init, [rt pthread], [USE_UNNAMED_POSIX_SEMAPHORES=1])
2259   fi
2260   AC_MSG_CHECKING([which semaphore API to use])
2261   if test x"$USE_NAMED_POSIX_SEMAPHORES" = x"1" ; then
2262     AC_DEFINE(USE_NAMED_POSIX_SEMAPHORES, 1, [Define to select named POSIX semaphores.])
2263     SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2264     sematype="named POSIX"
2265   else
2266     if test x"$USE_UNNAMED_POSIX_SEMAPHORES" = x"1" ; then
2267       AC_DEFINE(USE_UNNAMED_POSIX_SEMAPHORES, 1, [Define to select unnamed POSIX semaphores.])
2268       SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2269       sematype="unnamed POSIX"
2270     else
2271       AC_DEFINE(USE_SYSV_SEMAPHORES, 1, [Define to select SysV-style semaphores.])
2272       SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
2273       sematype="System V"
2274     fi
2275   fi
2276   AC_MSG_RESULT([$sematype])
2277 else
2278   AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.])
2279   SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
2283 # Select shared-memory implementation type.
2284 if test "$PORTNAME" != "win32"; then
2285   AC_DEFINE(USE_SYSV_SHARED_MEMORY, 1, [Define to select SysV-style shared memory.])
2286   SHMEM_IMPLEMENTATION="src/backend/port/sysv_shmem.c"
2287 else
2288   AC_DEFINE(USE_WIN32_SHARED_MEMORY, 1, [Define to select Win32-style shared memory.])
2289   SHMEM_IMPLEMENTATION="src/backend/port/win32_shmem.c"
2292 # Select random number source. If a TLS library is used then it will be the
2293 # first choice, else the native platform sources (Windows API or /dev/urandom)
2294 # will be used.
2295 AC_MSG_CHECKING([which random number source to use])
2296 if test x"$with_ssl" = x"openssl" ; then
2297   AC_MSG_RESULT([OpenSSL])
2298 elif test x"$PORTNAME" = x"win32" ; then
2299   AC_MSG_RESULT([Windows native])
2300 elif test x"$cross_compiling" = x"yes"; then
2301   AC_MSG_RESULT([assuming /dev/urandom])
2302 else
2303   AC_MSG_RESULT([/dev/urandom])
2304   AC_CHECK_FILE([/dev/urandom], [], [])
2306   if test x"$ac_cv_file__dev_urandom" = x"no" ; then
2307     AC_MSG_ERROR([
2308 no source of strong random numbers was found
2309 PostgreSQL can use OpenSSL, native Windows API or /dev/urandom as a source of random numbers.])
2310   fi
2313 # If not set in template file, set bytes to use libc memset()
2314 if test x"$MEMSET_LOOP_LIMIT" = x"" ; then
2315   MEMSET_LOOP_LIMIT=1024
2317 AC_DEFINE_UNQUOTED(MEMSET_LOOP_LIMIT, ${MEMSET_LOOP_LIMIT}, [Define bytes to use libc memset().])
2320 if test "$enable_nls" = yes ; then
2321   PGAC_CHECK_GETTEXT
2324 # Check for Tcl configuration script tclConfig.sh
2325 if test "$with_tcl" = yes; then
2326     PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
2327     PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
2328                           [TCL_INCLUDE_SPEC,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
2329     AC_SUBST(TCL_SHLIB_LD_LIBS)dnl don't want to double-evaluate that one
2330     if test "$TCL_SHARED_BUILD" != 1; then
2331       AC_MSG_ERROR([cannot build PL/Tcl because Tcl is not a shared library
2332 Use --without-tcl to disable building PL/Tcl.])
2333     fi
2334     # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h>
2335     ac_save_CPPFLAGS=$CPPFLAGS
2336     CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS"
2337     AC_CHECK_HEADER(tcl.h, [], [AC_MSG_ERROR([header file <tcl.h> is required for Tcl])])
2338     CPPFLAGS=$ac_save_CPPFLAGS
2341 # check for <perl.h>
2342 if test "$with_perl" = yes; then
2343   ac_save_CPPFLAGS=$CPPFLAGS
2344   CPPFLAGS="$CPPFLAGS $perl_includespec"
2345   AC_CHECK_HEADER(perl.h, [], [AC_MSG_ERROR([header file <perl.h> is required for Perl])],
2346                   [#include <EXTERN.h>])
2347   # While we're at it, check that we can link to libperl.
2348   # On most platforms, if perl.h is there then libperl.so will be too, but at
2349   # this writing Debian packages them separately.  There is no known reason to
2350   # waste cycles on separate probes for the Tcl or Python libraries, though.
2351   # On some Red Hat platforms, the link attempt can fail if we don't use
2352   # CFLAGS_SL while building the test program.
2353   ac_save_CFLAGS=$CFLAGS
2354   CFLAGS="$CFLAGS $CFLAGS_SL"
2355   pgac_save_LIBS=$LIBS
2356   LIBS="$perl_embed_ldflags"
2357   AC_MSG_CHECKING([for libperl])
2358   AC_LINK_IFELSE([AC_LANG_PROGRAM([
2359 #include <EXTERN.h>
2360 #include <perl.h>
2361 ],  [perl_alloc();])],
2362     [AC_MSG_RESULT(yes)],
2363     [AC_MSG_RESULT(no)
2364      AC_MSG_ERROR([libperl library is required for Perl])])
2365   LIBS=$pgac_save_LIBS
2366   CFLAGS=$ac_save_CFLAGS
2367   CPPFLAGS=$ac_save_CPPFLAGS
2370 # check for <Python.h>
2371 if test "$with_python" = yes; then
2372   ac_save_CPPFLAGS=$CPPFLAGS
2373   CPPFLAGS="$python_includespec $CPPFLAGS"
2374   AC_CHECK_HEADER(Python.h, [], [AC_MSG_ERROR([header file <Python.h> is required for Python])])
2375   CPPFLAGS=$ac_save_CPPFLAGS
2379 # Check for documentation-building tools
2381 PGAC_PATH_PROGS(XMLLINT, xmllint)
2382 PGAC_PATH_PROGS(XSLTPROC, xsltproc)
2383 PGAC_PATH_PROGS(FOP, fop)
2384 PGAC_PATH_PROGS(DBTOEPUB, dbtoepub)
2387 # Check for test tools
2389 if test "$enable_tap_tests" = yes; then
2390   # Make sure we know where prove is.
2391   PGAC_PATH_PROGS(PROVE, prove)
2392   if test -z "$PROVE"; then
2393     AC_MSG_ERROR([prove not found])
2394   fi
2395   # Check for necessary Perl modules.  You might think we should use
2396   # AX_PROG_PERL_MODULES here, but prove might be part of a different Perl
2397   # installation than perl, eg on MSys, so we have to check using prove.
2398   AC_MSG_CHECKING(for Perl modules required for TAP tests)
2399   [modulestderr=`"$PROVE" "$srcdir/config/check_modules.pl" 2>&1 >/dev/null`]
2400   if test $? -eq 0; then
2401     # log the module version details, but don't show them interactively
2402     echo "$modulestderr" >&AS_MESSAGE_LOG_FD
2403     AC_MSG_RESULT(yes)
2404   else
2405     # on failure, though, show the results to the user
2406     AC_MSG_RESULT([$modulestderr])
2407     AC_MSG_ERROR([Additional Perl modules are required to run TAP tests])
2408   fi
2411 # If compiler will take -Wl,--as-needed (or various platform-specific
2412 # spellings thereof) then add that to LDFLAGS.  This is much easier than
2413 # trying to filter LIBS to the minimum for each executable.
2414 # On (at least) some Red-Hat-derived systems, this switch breaks linking to
2415 # libreadline; therefore we postpone testing it until we know what library
2416 # dependencies readline has.  The test code will try to link with $LIBS.
2417 if test "$with_readline" = yes; then
2418   link_test_func=readline
2419 else
2420   link_test_func=exit
2423 if test "$PORTNAME" = "darwin"; then
2424   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-dead_strip_dylibs], $link_test_func)
2425 elif test "$PORTNAME" = "openbsd"; then
2426   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-Bdynamic], $link_test_func)
2427 else
2428   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,--as-needed], $link_test_func)
2431 # Create compiler version string
2432 if test x"$GCC" = x"yes" ; then
2433   cc_string=`${CC} --version | sed q`
2434   case $cc_string in [[A-Za-z]]*) ;; *) cc_string="GCC $cc_string";; esac
2435 elif test x"$SUN_STUDIO_CC" = x"yes" ; then
2436   cc_string=`${CC} -V 2>&1 | sed q`
2437 else
2438   cc_string=$CC
2441 AC_DEFINE_UNQUOTED(PG_VERSION_STR,
2442                    ["PostgreSQL $PG_VERSION on $host, compiled by $cc_string, `expr $ac_cv_sizeof_void_p \* 8`-bit"],
2443                    [A string containing the version number, platform, and C compiler])
2445 # Supply a numeric version string for use by 3rd party add-ons
2446 # awk -F is a regex on some platforms, and not on others, so make "." a tab
2447 [PG_VERSION_NUM="`echo $PG_MAJORVERSION $PG_MINORVERSION |
2448 $AWK '{printf "%d%04d", $1, $2}'`"]
2449 AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number])
2450 AC_SUBST(PG_VERSION_NUM)
2452 # If we are inserting PG_SYSROOT into CPPFLAGS, do so symbolically not
2453 # literally, so that it's possible to override it at build time using
2454 # a command like "make ... PG_SYSROOT=path".  This has to be done after
2455 # we've finished all configure checks that depend on CPPFLAGS.
2456 # The same for LDFLAGS, too.
2457 if test x"$PG_SYSROOT" != x; then
2458   CPPFLAGS=`echo "$CPPFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2459   LDFLAGS=`echo "$LDFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2461 AC_SUBST(PG_SYSROOT)
2464 # Begin output steps
2466 AC_MSG_NOTICE([using compiler=$cc_string])
2467 AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
2468 AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS])
2469 AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS])
2470 # Currently only used when LLVM is used
2471 if test "$with_llvm" = yes ; then
2472    AC_MSG_NOTICE([using CXX=$CXX])
2473    AC_MSG_NOTICE([using CXXFLAGS=$CXXFLAGS])
2474    AC_MSG_NOTICE([using CLANG=$CLANG])
2475    AC_MSG_NOTICE([using BITCODE_CFLAGS=$BITCODE_CFLAGS])
2476    AC_MSG_NOTICE([using BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS])
2479 # prepare build tree if outside source tree
2480 # Note 1: test -ef might not exist, but it's more reliable than `pwd`.
2481 # Note 2: /bin/pwd might be better than shell's built-in at getting
2482 #         a symlink-free name.
2483 if ( test "$srcdir" -ef . ) >/dev/null 2>&1 || test "`cd $srcdir && /bin/pwd`" = "`/bin/pwd`"; then
2484   vpath_build=no
2485 else
2486   vpath_build=yes
2487   if test "$no_create" != yes; then
2488     _AS_ECHO_N([preparing build tree... ])
2489     pgac_abs_top_srcdir=`cd "$srcdir" && pwd`
2490     $SHELL "$ac_aux_dir/prep_buildtree" "$pgac_abs_top_srcdir" "." \
2491       || AC_MSG_ERROR(failed)
2492     AC_MSG_RESULT(done)
2493   fi
2495 AC_SUBST(vpath_build)
2498 AC_CONFIG_FILES([GNUmakefile src/Makefile.global])
2500 AC_CONFIG_LINKS([
2501   src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION}
2502   src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION}
2503   src/include/pg_config_os.h:src/include/port/${template}.h
2504   src/Makefile.port:src/makefiles/Makefile.${template}
2507 if test "$PORTNAME" = "win32"; then
2508 AC_CONFIG_COMMANDS([check_win32_symlinks],[
2509 # Links sometimes fail undetected on Mingw -
2510 # so here we detect it and warn the user
2511 for FILE in $CONFIG_LINKS
2512  do
2513         # test -e works for symlinks in the MinGW console
2514         test -e `expr "$FILE" : '\([[^:]]*\)'` || AC_MSG_WARN([*** link for $FILE -- please fix by hand])
2515  done
2519 AC_CONFIG_HEADERS([src/include/pg_config.h],
2521 # Update timestamp for pg_config.h (see Makefile.global)
2522 echo >src/include/stamp-h
2525 AC_CONFIG_HEADERS([src/include/pg_config_ext.h],
2527 # Update timestamp for pg_config_ext.h (see Makefile.global)
2528 echo >src/include/stamp-ext-h
2531 AC_CONFIG_HEADERS([src/interfaces/ecpg/include/ecpg_config.h],
2532                   [echo >src/interfaces/ecpg/include/stamp-h])
2534 AC_OUTPUT