Stamp 12.19.
[pgsql.git] / configure.in
blob6c19a803697939cfd4f8d74ddcaf0aea7f4f241e
1 dnl Process this file with autoconf to produce a configure script.
2 dnl configure.in
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], [12.19], [pgsql-bugs@lists.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.in' but it is then
25 your responsibility whether the result works or not.])])
26 AC_COPYRIGHT([Copyright (c) 1996-2019, 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_SUBST(configure_args, [$ac_configure_args])
32 [PG_MAJORVERSION=`expr "$PACKAGE_VERSION" : '\([0-9][0-9]*\)'`]
33 AC_SUBST(PG_MAJORVERSION)
34 AC_DEFINE_UNQUOTED(PG_MAJORVERSION, "$PG_MAJORVERSION", [PostgreSQL major version as a string])
36 PGAC_ARG_REQ(with, extra-version, [STRING], [append STRING to version],
37              [PG_VERSION="$PACKAGE_VERSION$withval"],
38              [PG_VERSION="$PACKAGE_VERSION"])
39 AC_DEFINE_UNQUOTED(PG_VERSION, "$PG_VERSION", [PostgreSQL version as a string])
41 AC_CANONICAL_HOST
43 template=
44 AC_MSG_CHECKING([which template to use])
46 PGAC_ARG_REQ(with, template, [NAME], [override operating system template],
48   case $withval in
49     list)   echo; ls "$srcdir/src/template"; exit;;
50     *)      if test -f "$srcdir/src/template/$with_template" ; then
51               template=$withval
52             else
53               AC_MSG_ERROR(['$withval' is not a valid template name. Use 'list' for a list.])
54             fi;;
55   esac
58 # --with-template not given
60 case $host_os in
61      aix*) template=aix ;;
62   cygwin*) template=cygwin ;;
63   darwin*) template=darwin ;;
64 dragonfly*) template=netbsd ;;
65  freebsd*) template=freebsd ;;
66     hpux*) template=hpux ;;
67  linux*|gnu*|k*bsd*-gnu)
68            template=linux ;;
69    mingw*) template=win32 ;;
70   netbsd*) template=netbsd ;;
71  openbsd*) template=openbsd ;;
72  solaris*) template=solaris ;;
73 esac
75   if test x"$template" = x"" ; then
76     AC_MSG_ERROR([[
77 *******************************************************************
78 PostgreSQL has apparently not been ported to your platform yet.
79 To try a manual configuration, look into the src/template directory
80 for a similar platform and use the '--with-template=' option.
82 Please also contact <pgsql-bugs@lists.postgresql.org> to see about
83 rectifying this.  Include the above 'checking host system type...'
84 line.
85 *******************************************************************
86 ]])
87   fi
91 AC_MSG_RESULT([$template])
93 PORTNAME=$template
94 AC_SUBST(PORTNAME)
96 # Initialize default assumption that we do not need separate assembly code
97 # for TAS (test-and-set).  This can be overridden by the template file
98 # when it's executed.
99 need_tas=no
100 tas_file=dummy.s
105 ## Command line options
109 # Add non-standard directories to the include path
111 PGAC_ARG_REQ(with, includes, [DIRS], [look for additional header files in DIRS])
115 # Add non-standard directories to the library search path
117 PGAC_ARG_REQ(with, libraries, [DIRS], [look for additional libraries in DIRS],
118              [LIBRARY_DIRS=$withval])
120 PGAC_ARG_REQ(with, libs,      [DIRS], [alternative spelling of --with-libraries],
121              [LIBRARY_DIRS=$withval])
125 # 64-bit integer date/time storage is now the only option, but to avoid
126 # unnecessary breakage of build scripts, continue to accept an explicit
127 # "--enable-integer-datetimes" switch.
129 PGAC_ARG_BOOL(enable, integer-datetimes, yes, [obsolete option, no longer supported],
130               [],
131               [AC_MSG_ERROR([--disable-integer-datetimes is no longer supported])])
135 # NLS
137 AC_MSG_CHECKING([whether NLS is wanted])
138 PGAC_ARG_OPTARG(enable, nls,
139                 [LANGUAGES], [enable Native Language Support],
140                 [],
141                 [WANTED_LANGUAGES=$enableval],
142                 [AC_DEFINE(ENABLE_NLS, 1,
143                            [Define to 1 if you want National Language Support. (--enable-nls)])])
144 AC_MSG_RESULT([$enable_nls])
145 AC_SUBST(enable_nls)
146 AC_SUBST(WANTED_LANGUAGES)
149 # Default port number (--with-pgport), default 5432
151 AC_MSG_CHECKING([for default port number])
152 PGAC_ARG_REQ(with, pgport, [PORTNUM], [set default port number [5432]],
153              [default_port=$withval],
154              [default_port=5432])
155 AC_MSG_RESULT([$default_port])
156 # Need both of these because some places want an integer and some a string
157 AC_DEFINE_UNQUOTED(DEF_PGPORT, ${default_port},
158 [Define to the default TCP port number on which the server listens and
159 to which clients will try to connect.  This can be overridden at run-time,
160 but it's convenient if your clients have the right default compiled in.
161 (--with-pgport=PORTNUM)])
162 AC_DEFINE_UNQUOTED(DEF_PGPORT_STR, "${default_port}",
163                    [Define to the default TCP port number as a string constant.])
164 AC_SUBST(default_port)
166 # It's worth validating port; you can get very confusing errors otherwise
167 if test x"$default_port" = x""; then
168   AC_MSG_ERROR([invalid --with-pgport specification: empty string])
169 elif test ! x`echo "$default_port" | sed -e 's/[[0-9]]*//'` = x""; then
170   AC_MSG_ERROR([invalid --with-pgport specification: must be a number])
171 elif test ! x`echo "$default_port" | sed -e 's/^0.//'` = x"$default_port"; then
172   AC_MSG_ERROR([invalid --with-pgport specification: must not have leading 0])
173 elif test "$default_port" -lt "1" -o "$default_port" -gt "65535"; then
174   AC_MSG_ERROR([invalid --with-pgport specification: must be between 1 and 65535])
178 # '-rpath'-like feature can be disabled
180 PGAC_ARG_BOOL(enable, rpath, yes,
181               [do not embed shared library search path in executables])
182 AC_SUBST(enable_rpath)
185 # Spinlocks
187 PGAC_ARG_BOOL(enable, spinlocks, yes,
188               [do not use spinlocks])
191 # Atomic operations
193 PGAC_ARG_BOOL(enable, atomics, yes,
194               [do not use atomic operations])
197 # --enable-debug adds -g to compiler flags
199 PGAC_ARG_BOOL(enable, debug, no,
200               [build with debugging symbols (-g)])
201 AC_SUBST(enable_debug)
204 # --enable-profiling enables gcc profiling
206 PGAC_ARG_BOOL(enable, profiling, no,
207               [build with profiling enabled ])
210 # --enable-coverage enables generation of code coverage metrics with gcov
212 PGAC_ARG_BOOL(enable, coverage, no,
213               [build with coverage testing instrumentation],
214 [PGAC_PATH_PROGS(GCOV, gcov)
215 if test -z "$GCOV"; then
216   AC_MSG_ERROR([gcov not found])
218 PGAC_PATH_PROGS(LCOV, lcov)
219 if test -z "$LCOV"; then
220   AC_MSG_ERROR([lcov not found])
222 PGAC_PATH_PROGS(GENHTML, genhtml)
223 if test -z "$GENHTML"; then
224   AC_MSG_ERROR([genhtml not found])
225 fi])
226 AC_SUBST(enable_coverage)
229 # DTrace
231 PGAC_ARG_BOOL(enable, dtrace, no,
232               [build with DTrace support],
233 [PGAC_PATH_PROGS(DTRACE, dtrace)
234 if test -z "$DTRACE"; then
235   AC_MSG_ERROR([dtrace not found])
237 AC_SUBST(DTRACEFLAGS)])
238 AC_SUBST(enable_dtrace)
241 # TAP tests
243 PGAC_ARG_BOOL(enable, tap-tests, no,
244               [enable TAP tests (requires Perl and IPC::Run)])
245 AC_SUBST(enable_tap_tests)
248 # Block size
250 AC_MSG_CHECKING([for block size])
251 PGAC_ARG_REQ(with, blocksize, [BLOCKSIZE], [set table block size in kB [8]],
252              [blocksize=$withval],
253              [blocksize=8])
254 case ${blocksize} in
255   1) BLCKSZ=1024;;
256   2) BLCKSZ=2048;;
257   4) BLCKSZ=4096;;
258   8) BLCKSZ=8192;;
259  16) BLCKSZ=16384;;
260  32) BLCKSZ=32768;;
261   *) AC_MSG_ERROR([Invalid block size. Allowed values are 1,2,4,8,16,32.])
262 esac
263 AC_MSG_RESULT([${blocksize}kB])
265 AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
266  Size of a disk block --- this also limits the size of a tuple.  You
267  can set it bigger if you need bigger tuples (although TOAST should
268  reduce the need to have large tuples, since fields can be spread
269  across multiple tuples).
271  BLCKSZ must be a power of 2.  The maximum possible value of BLCKSZ
272  is currently 2^15 (32768).  This is determined by the 15-bit widths
273  of the lp_off and lp_len fields in ItemIdData (see
274  include/storage/itemid.h).
276  Changing BLCKSZ requires an initdb.
280 # Relation segment size
282 AC_MSG_CHECKING([for segment size])
283 PGAC_ARG_REQ(with, segsize, [SEGSIZE], [set table segment size in GB [1]],
284              [segsize=$withval],
285              [segsize=1])
286 # this expression is set up to avoid unnecessary integer overflow
287 # blocksize is already guaranteed to be a factor of 1024
288 RELSEG_SIZE=`expr '(' 1024 / ${blocksize} ')' '*' ${segsize} '*' 1024`
289 test $? -eq 0 || exit 1
290 AC_MSG_RESULT([${segsize}GB])
292 AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
293  RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
294  Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
295  relations bigger than that are divided into multiple files.
297  RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
298  This is often 2 GB or 4GB in a 32-bit operating system, unless you
299  have large file support enabled.  By default, we make the limit 1 GB
300  to avoid any possible integer-overflow problems within the OS.
301  A limit smaller than necessary only means we divide a large
302  relation into more chunks than necessary, so it seems best to err
303  in the direction of a small limit.
305  A power-of-2 value is recommended to save a few cycles in md.c,
306  but is not absolutely required.
308  Changing RELSEG_SIZE requires an initdb.
312 # WAL block size
314 AC_MSG_CHECKING([for WAL block size])
315 PGAC_ARG_REQ(with, wal-blocksize, [BLOCKSIZE], [set WAL block size in kB [8]],
316              [wal_blocksize=$withval],
317              [wal_blocksize=8])
318 case ${wal_blocksize} in
319   1) XLOG_BLCKSZ=1024;;
320   2) XLOG_BLCKSZ=2048;;
321   4) XLOG_BLCKSZ=4096;;
322   8) XLOG_BLCKSZ=8192;;
323  16) XLOG_BLCKSZ=16384;;
324  32) XLOG_BLCKSZ=32768;;
325  64) XLOG_BLCKSZ=65536;;
326   *) AC_MSG_ERROR([Invalid WAL block size. Allowed values are 1,2,4,8,16,32,64.])
327 esac
328 AC_MSG_RESULT([${wal_blocksize}kB])
330 AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
331  Size of a WAL file block.  This need have no particular relation to BLCKSZ.
332  XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
333  XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
334  buffers, else direct I/O may fail.
336  Changing XLOG_BLCKSZ requires an initdb.
340 # C compiler
343 # For historical reasons you can also use --with-CC to specify the C compiler
344 # to use, although the standard way to do this is to set the CC environment
345 # variable.
346 PGAC_ARG_REQ(with, CC, [CMD], [set compiler (deprecated)], [CC=$with_CC])
348 case $template in
349   aix) pgac_cc_list="gcc xlc"; pgac_cxx_list="g++ xlC";;
350     *) pgac_cc_list="gcc cc"; pgac_cxx_list="g++ c++";;
351 esac
353 AC_PROG_CC([$pgac_cc_list])
354 AC_PROG_CC_C99()
356 # Error out if the compiler does not support C99, as the codebase
357 # relies on that.
358 if test "$ac_cv_prog_cc_c99" = no; then
359     AC_MSG_ERROR([C compiler "$CC" does not support C99])
362 AC_PROG_CXX([$pgac_cxx_list])
364 # Check if it's Intel's compiler, which (usually) pretends to be gcc,
365 # but has idiosyncrasies of its own.  We assume icc will define
366 # __INTEL_COMPILER regardless of CFLAGS.
367 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __INTEL_COMPILER
368 choke me
369 @%:@endif])], [ICC=yes], [ICC=no])
371 # Check if it's Sun Studio compiler. We assume that
372 # __SUNPRO_C will be defined for Sun Studio compilers
373 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __SUNPRO_C
374 choke me
375 @%:@endif])], [SUN_STUDIO_CC=yes], [SUN_STUDIO_CC=no])
377 AC_SUBST(SUN_STUDIO_CC)
381 # LLVM
383 # Checked early because subsequent tests depend on it.
384 PGAC_ARG_BOOL(with, llvm, no, [build with LLVM based JIT support],
385               [AC_DEFINE([USE_LLVM], 1, [Define to 1 to build with LLVM based JIT support. (--with-llvm)])])
386 AC_SUBST(with_llvm)
387 dnl must use AS_IF here, else AC_REQUIRES inside PGAC_LLVM_SUPPORT malfunctions
388 AS_IF([test "$with_llvm" = yes], [
389   PGAC_LLVM_SUPPORT()
390 ]) # fi
393 unset CFLAGS
394 unset CXXFLAGS
397 # Read the template
399 . "$srcdir/src/template/$template" || exit
401 # C[XX]FLAGS are selected so:
402 # If the user specifies something in the environment, that is used.
403 # else:  If the template file set something, that is used.
404 # else:  If coverage was enabled, don't set anything.
405 # else:  If the compiler is GCC, then we use -O2.
406 # else:  If the compiler is something else, then we use -O, unless debugging.
408 if test "$ac_env_CFLAGS_set" = set; then
409   CFLAGS=$ac_env_CFLAGS_value
410 elif test "${CFLAGS+set}" = set; then
411   : # (keep what template set)
412 elif test "$enable_coverage" = yes; then
413   : # no optimization by default
414 elif test "$GCC" = yes; then
415   CFLAGS="-O2"
416 else
417   # if the user selected debug mode, don't use -O
418   if test "$enable_debug" != yes; then
419     CFLAGS="-O"
420   fi
423 if test "$ac_env_CXXFLAGS_set" = set; then
424   CXXFLAGS=$ac_env_CXXFLAGS_value
425 elif test "${CXXFLAGS+set}" = set; then
426   : # (keep what template set)
427 elif test "$enable_coverage" = yes; then
428   : # no optimization by default
429 elif test "$GCC" = yes; then
430   CXXFLAGS="-O2"
431 else
432   # if the user selected debug mode, don't use -O
433   if test "$enable_debug" != yes; then
434     CXXFLAGS="-O"
435   fi
438 # When generating bitcode (for inlining) we always want to use -O2
439 # even when --enable-debug is specified. The bitcode is not going to
440 # be used for line-by-line debugging, and JIT inlining doesn't work
441 # without at least -O1 (otherwise clang will emit 'noinline'
442 # attributes everywhere), which is bad for testing.  Still allow the
443 # environment to override if done explicitly.
444 if test "$ac_env_BITCODE_CFLAGS_set" = set; then
445   BITCODE_CFLAGS=$ac_env_BITCODE_CFLAGS_value
446 else
447   BITCODE_CFLAGS="-O2 $BITCODE_CFLAGS"
449 if test "$ac_env_BITCODE_CXXFLAGS_set" = set; then
450   BITCODE_CXXFLAGS=$ac_env_BITCODE_CXXFLAGS_value
451 else
452   BITCODE_CXXFLAGS="-O2 $BITCODE_CXXFLAGS"
455 # C[XX]FLAGS we determined above will be added back at the end
456 user_CFLAGS=$CFLAGS
457 CFLAGS=""
458 user_CXXFLAGS=$CXXFLAGS
459 CXXFLAGS=""
460 user_BITCODE_CFLAGS=$BITCODE_CFLAGS
461 BITCODE_CFLAGS=""
462 user_BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS
463 BITCODE_CXXFLAGS=""
465 # set CFLAGS_VECTOR from the environment, if available
466 if test "$ac_env_CFLAGS_VECTOR_set" = set; then
467   CFLAGS_VECTOR=$ac_env_CFLAGS_VECTOR_value
470 # Some versions of GCC support some additional useful warning flags.
471 # Check whether they are supported, and add them to CFLAGS if so.
472 # ICC pretends to be GCC but it's lying; it doesn't support these flags,
473 # but has its own.  Also check other compiler-specific flags here.
475 if test "$GCC" = yes -a "$ICC" = no; then
476   CFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith"
477   CXXFLAGS="-Wall -Wpointer-arith"
478   # These work in some but not all gcc versions
479   save_CFLAGS=$CFLAGS
480   PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
481   # -Wdeclaration-after-statement isn't applicable for C++.  Specific C files
482   # disable it, so AC_SUBST the negative form.
483   PERMIT_DECLARATION_AFTER_STATEMENT=
484   if test x"$save_CFLAGS" != x"$CFLAGS"; then
485     PERMIT_DECLARATION_AFTER_STATEMENT=-Wno-declaration-after-statement
486   fi
487   AC_SUBST(PERMIT_DECLARATION_AFTER_STATEMENT)
488   # Really don't want VLAs to be used in our dialect of C
489   PGAC_PROG_CC_CFLAGS_OPT([-Werror=vla])
490   # -Wvla is not applicable for C++
491   PGAC_PROG_CC_CFLAGS_OPT([-Wendif-labels])
492   PGAC_PROG_CXX_CFLAGS_OPT([-Wendif-labels])
493   PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-format-attribute])
494   PGAC_PROG_CXX_CFLAGS_OPT([-Wmissing-format-attribute])
495   # This was included in -Wall/-Wformat in older GCC versions
496   PGAC_PROG_CC_CFLAGS_OPT([-Wformat-security])
497   PGAC_PROG_CXX_CFLAGS_OPT([-Wformat-security])
498   # Disable strict-aliasing rules; needed for gcc 3.3+
499   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
500   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
501   # Disable optimizations that assume no overflow; needed for gcc 4.3+
502   PGAC_PROG_CC_CFLAGS_OPT([-fwrapv])
503   PGAC_PROG_CXX_CFLAGS_OPT([-fwrapv])
504   # Disable FP optimizations that cause various errors on gcc 4.5+ or maybe 4.6+
505   PGAC_PROG_CC_CFLAGS_OPT([-fexcess-precision=standard])
506   PGAC_PROG_CXX_CFLAGS_OPT([-fexcess-precision=standard])
507   # Optimization flags for specific files that benefit from vectorization
508   PGAC_PROG_CC_VAR_OPT(CFLAGS_VECTOR, [-funroll-loops])
509   PGAC_PROG_CC_VAR_OPT(CFLAGS_VECTOR, [-ftree-vectorize])
510   #
511   # The following tests want to suppress various unhelpful warnings by adding
512   # -Wno-foo switches.  But gcc won't complain about unrecognized -Wno-foo
513   # switches, so we have to test for the positive form and if that works,
514   # add the negative form.  Note that tests of this form typically need to
515   # be duplicated in the BITCODE_CFLAGS setup stanza below.
516   #
517   # Suppress clang's unhelpful unused-command-line-argument warnings.
518   NOT_THE_CFLAGS=""
519   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wunused-command-line-argument])
520   if test -n "$NOT_THE_CFLAGS"; then
521     CFLAGS="$CFLAGS -Wno-unused-command-line-argument"
522   fi
523   # Remove clang 12+'s compound-token-split-by-macro, as this causes a lot
524   # of warnings when building plperl because of usages in the Perl headers.
525   NOT_THE_CFLAGS=""
526   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
527   if test -n "$NOT_THE_CFLAGS"; then
528     CFLAGS="$CFLAGS -Wno-compound-token-split-by-macro"
529   fi
530   # Similarly remove clang 15+'s deprecated-non-prototype, as it warns about
531   # tree-walking APIs that we can't reasonably change in the back branches.
532   NOT_THE_CFLAGS=""
533   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wdeprecated-non-prototype])
534   if test -n "$NOT_THE_CFLAGS"; then
535     CFLAGS="$CFLAGS -Wno-deprecated-non-prototype"
536   fi
537   # Similarly disable useless truncation warnings from gcc 8+
538   NOT_THE_CFLAGS=""
539   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wformat-truncation])
540   if test -n "$NOT_THE_CFLAGS"; then
541     CFLAGS="$CFLAGS -Wno-format-truncation"
542   fi
543   NOT_THE_CFLAGS=""
544   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wstringop-truncation])
545   if test -n "$NOT_THE_CFLAGS"; then
546     CFLAGS="$CFLAGS -Wno-stringop-truncation"
547   fi
548 elif test "$ICC" = yes; then
549   # Intel's compiler has a bug/misoptimization in checking for
550   # division by NAN (NaN == 0), -mp1 fixes it, so add it to the CFLAGS.
551   PGAC_PROG_CC_CFLAGS_OPT([-mp1])
552   PGAC_PROG_CXX_CFLAGS_OPT([-mp1])
553   # Make sure strict aliasing is off (though this is said to be the default)
554   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
555   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
556 elif test "$PORTNAME" = "aix"; then
557   # AIX's xlc has to have strict aliasing turned off too
558   PGAC_PROG_CC_CFLAGS_OPT([-qnoansialias])
559   PGAC_PROG_CXX_CFLAGS_OPT([-qnoansialias])
560   PGAC_PROG_CC_CFLAGS_OPT([-qlonglong])
561   PGAC_PROG_CXX_CFLAGS_OPT([-qlonglong])
562 elif test "$PORTNAME" = "hpux"; then
563   # On some versions of HP-UX, libm functions do not set errno by default.
564   # Fix that by using +Olibmerrno if the compiler recognizes it.
565   PGAC_PROG_CC_CFLAGS_OPT([+Olibmerrno])
566   PGAC_PROG_CXX_CFLAGS_OPT([+Olibmerrno])
569 AC_SUBST(CFLAGS_VECTOR)
571 # Determine flags used to emit bitcode for JIT inlining.
572 # 1. We must duplicate any behaviour-changing compiler flags used above,
573 # to keep compatibility with the compiler used for normal Postgres code.
574 # 2. We don't bother to duplicate extra-warnings switches --- seeing a
575 # warning in the main build is enough.
576 # 3. But we must duplicate -Wno-warning flags, else we'll see those anyway.
577 if test "$with_llvm" = yes ; then
578   CLANGXX="$CLANG -xc++"
580   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fno-strict-aliasing])
581   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fno-strict-aliasing])
582   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fwrapv])
583   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fwrapv])
584   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fexcess-precision=standard])
585   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fexcess-precision=standard])
587   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-Xclang -no-opaque-pointers])
588   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-Xclang -no-opaque-pointers])
590   NOT_THE_CFLAGS=""
591   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wunused-command-line-argument])
592   if test -n "$NOT_THE_CFLAGS"; then
593     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-unused-command-line-argument"
594   fi
595   NOT_THE_CFLAGS=""
596   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wcompound-token-split-by-macro])
597   if test -n "$NOT_THE_CFLAGS"; then
598     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-compound-token-split-by-macro"
599   fi
600   NOT_THE_CFLAGS=""
601   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wdeprecated-non-prototype])
602   if test -n "$NOT_THE_CFLAGS"; then
603     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-deprecated-non-prototype"
604   fi
605   NOT_THE_CFLAGS=""
606   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wformat-truncation])
607   if test -n "$NOT_THE_CFLAGS"; then
608     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-format-truncation"
609   fi
610   NOT_THE_CFLAGS=""
611   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, NOT_THE_CFLAGS, [-Wstringop-truncation])
612   if test -n "$NOT_THE_CFLAGS"; then
613     BITCODE_CFLAGS="$BITCODE_CFLAGS -Wno-stringop-truncation"
614   fi
617 # supply -g if --enable-debug
618 if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
619   CFLAGS="$CFLAGS -g"
622 if test "$enable_debug" = yes && test "$ac_cv_prog_cxx_g" = yes; then
623   CXXFLAGS="$CXXFLAGS -g"
626 # enable code coverage if --enable-coverage
627 if test "$enable_coverage" = yes; then
628   if test "$GCC" = yes; then
629     CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
630     CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
631   else
632     AC_MSG_ERROR([--enable-coverage is supported only when using GCC])
633   fi
636 # enable profiling if --enable-profiling
637 if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
638   if test "$GCC" = yes; then
639     AC_DEFINE([PROFILE_PID_DIR], 1,
640            [Define to 1 to allow profiling output to be saved separately for each process.])
641     CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
642     CXXFLAGS="$CXXFLAGS -pg $PLATFORM_PROFILE_FLAGS"
643   else
644     AC_MSG_ERROR([--enable-profiling is supported only when using GCC])
645   fi
648 # We already have this in Makefile.win32, but configure needs it too
649 if test "$PORTNAME" = "win32"; then
650   CPPFLAGS="$CPPFLAGS -I$srcdir/src/include/port/win32 -DEXEC_BACKEND"
653 # Now that we're done automatically adding stuff to C[XX]FLAGS, put back the
654 # user-specified flags (if any) at the end.  This lets users override
655 # the automatic additions.
656 CFLAGS="$CFLAGS $user_CFLAGS"
657 CXXFLAGS="$CXXFLAGS $user_CXXFLAGS"
658 BITCODE_CFLAGS="$BITCODE_CFLAGS $user_BITCODE_CFLAGS"
659 BITCODE_CXXFLAGS="$BITCODE_CXXFLAGS $user_BITCODE_CXXFLAGS"
661 AC_SUBST(BITCODE_CFLAGS)
662 AC_SUBST(BITCODE_CXXFLAGS)
664 # The template file must set up CFLAGS_SL; we don't support user override
665 AC_SUBST(CFLAGS_SL)
667 # Check if the compiler still works with the final flag settings
668 # (note, we're not checking that for CXX, which is optional)
669 AC_MSG_CHECKING([whether the C compiler still works])
670 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
671   [AC_MSG_RESULT(yes)],
672   [AC_MSG_RESULT(no)
673    AC_MSG_ERROR([cannot proceed])])
675 # Defend against gcc -ffast-math
676 if test "$GCC" = yes; then
677 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifdef __FAST_MATH__
678 choke me
679 @%:@endif])], [], [AC_MSG_ERROR([do not put -ffast-math in CFLAGS])])
682 # Defend against clang being used on x86-32 without SSE2 enabled.  As current
683 # versions of clang do not understand -fexcess-precision=standard, the use of
684 # x87 floating point operations leads to problems like isinf possibly returning
685 # false for a value that is infinite when converted from the 80bit register to
686 # the 8byte memory representation.
688 # Only perform the test if the compiler doesn't understand
689 # -fexcess-precision=standard, that way a potentially fixed compiler will work
690 # automatically.
691 if test "$pgac_cv_prog_CC_cflags__fexcess_precision_standard" = no; then
692 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
693 @%:@if defined(__clang__) && defined(__i386__) && !defined(__SSE2_MATH__)
694 choke me
695 @%:@endif
696 ])], [],
697 [AC_MSG_ERROR([Compiling PostgreSQL with clang, on 32bit x86, requires SSE2 support. Use -msse2 or use gcc.])])
700 AC_PROG_CPP
701 AC_SUBST(GCC)
705 # Set up TAS assembly code if needed; the template file has now had its
706 # chance to request this.
708 AC_CONFIG_LINKS([src/backend/port/tas.s:src/backend/port/tas/${tas_file}])
710 if test "$need_tas" = yes ; then
711   TAS=tas.o
712 else
713   TAS=""
715 AC_SUBST(TAS)
718 # Set up pkg_config in case we need it below
720 PKG_PROG_PKG_CONFIG
723 # Automatic dependency tracking
725 PGAC_ARG_BOOL(enable, depend, no, [turn on automatic dependency tracking],
726               [autodepend=yes])
727 AC_SUBST(autodepend)
731 # Enable assert checks
733 PGAC_ARG_BOOL(enable, cassert, no, [enable assertion checks (for debugging)],
734               [AC_DEFINE([USE_ASSERT_CHECKING], 1,
735                          [Define to 1 to build with assertion checks. (--enable-cassert)])])
739 # Include directories
741 ac_save_IFS=$IFS
742 IFS="${IFS}${PATH_SEPARATOR}"
743 # SRCH_INC comes from the template file
744 for dir in $with_includes $SRCH_INC; do
745   if test -d "$dir"; then
746     INCLUDES="$INCLUDES -I$dir"
747   else
748     AC_MSG_WARN([*** Include directory $dir does not exist.])
749   fi
750 done
751 IFS=$ac_save_IFS
752 AC_SUBST(INCLUDES)
756 # Library directories
758 ac_save_IFS=$IFS
759 IFS="${IFS}${PATH_SEPARATOR}"
760 # LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
761 for dir in $LIBRARY_DIRS $SRCH_LIB; do
762   if test -d "$dir"; then
763     LIBDIRS="$LIBDIRS -L$dir"
764   else
765     AC_MSG_WARN([*** Library directory $dir does not exist.])
766   fi
767 done
768 IFS=$ac_save_IFS
771 # Enable thread-safe client libraries
773 AC_MSG_CHECKING([allow thread-safe client libraries])
774 PGAC_ARG_BOOL(enable, thread-safety, yes, [disable thread-safety in client libraries])
775 if test "$enable_thread_safety" = yes; then
776   AC_DEFINE([ENABLE_THREAD_SAFETY], 1,
777           [Define to 1 to build client libraries as thread-safe code. (--enable-thread-safety)])
779 AC_MSG_RESULT([$enable_thread_safety])
780 AC_SUBST(enable_thread_safety)
783 # ICU
785 AC_MSG_CHECKING([whether to build with ICU support])
786 PGAC_ARG_BOOL(with, icu, no, [build with ICU support],
787               [AC_DEFINE([USE_ICU], 1, [Define to build with ICU support. (--with-icu)])])
788 AC_MSG_RESULT([$with_icu])
789 AC_SUBST(with_icu)
791 if test "$with_icu" = yes; then
792   PKG_CHECK_MODULES(ICU, icu-uc icu-i18n)
796 # Optionally build Tcl modules (PL/Tcl)
798 AC_MSG_CHECKING([whether to build with Tcl])
799 PGAC_ARG_BOOL(with, tcl, no, [build Tcl modules (PL/Tcl)])
800 AC_MSG_RESULT([$with_tcl])
801 AC_SUBST([with_tcl])
803 # We see if the path to the Tcl/Tk configuration scripts is specified.
804 # This will override the use of tclsh to find the paths to search.
806 PGAC_ARG_REQ(with, tclconfig, [DIR], [tclConfig.sh is in DIR])
809 # Optionally build Perl modules (PL/Perl)
811 AC_MSG_CHECKING([whether to build Perl modules])
812 PGAC_ARG_BOOL(with, perl, no, [build Perl modules (PL/Perl)])
813 AC_MSG_RESULT([$with_perl])
814 AC_SUBST(with_perl)
817 # Optionally build Python modules (PL/Python)
819 AC_MSG_CHECKING([whether to build Python modules])
820 PGAC_ARG_BOOL(with, python, no, [build Python modules (PL/Python)])
821 AC_MSG_RESULT([$with_python])
822 AC_SUBST(with_python)
825 # GSSAPI
827 AC_MSG_CHECKING([whether to build with GSSAPI support])
828 PGAC_ARG_BOOL(with, gssapi, no, [build with GSSAPI support],
830   AC_DEFINE(ENABLE_GSS, 1, [Define to build with GSSAPI support. (--with-gssapi)])
831   krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
833 AC_MSG_RESULT([$with_gssapi])
834 AC_SUBST(with_gssapi)
837 AC_SUBST(krb_srvtab)
841 # Kerberos configuration parameters
843 PGAC_ARG_REQ(with, krb-srvnam,
844              [NAME], [default service principal name in Kerberos (GSSAPI) [postgres]],
845              [],
846              [with_krb_srvnam="postgres"])
847 AC_SUBST(with_krb_srvnam)
848 AC_DEFINE_UNQUOTED([PG_KRB_SRVNAM], ["$with_krb_srvnam"],
849                    [Define to the name of the default PostgreSQL service principal in Kerberos (GSSAPI). (--with-krb-srvnam=NAME)])
853 # PAM
855 AC_MSG_CHECKING([whether to build with PAM support])
856 PGAC_ARG_BOOL(with, pam, no,
857               [build with PAM support],
858               [AC_DEFINE([USE_PAM], 1, [Define to 1 to build with PAM support. (--with-pam)])])
859 AC_MSG_RESULT([$with_pam])
863 # BSD AUTH
865 AC_MSG_CHECKING([whether to build with BSD Authentication support])
866 PGAC_ARG_BOOL(with, bsd-auth, no,
867               [build with BSD Authentication support],
868               [AC_DEFINE([USE_BSD_AUTH], 1, [Define to 1 to build with BSD Authentication support. (--with-bsd-auth)])])
869 AC_MSG_RESULT([$with_bsd_auth])
873 # LDAP
875 AC_MSG_CHECKING([whether to build with LDAP support])
876 PGAC_ARG_BOOL(with, ldap, no,
877               [build with LDAP support],
878               [AC_DEFINE([USE_LDAP], 1, [Define to 1 to build with LDAP support. (--with-ldap)])])
879 AC_MSG_RESULT([$with_ldap])
880 AC_SUBST(with_ldap)
884 # Bonjour
886 AC_MSG_CHECKING([whether to build with Bonjour support])
887 PGAC_ARG_BOOL(with, bonjour, no,
888               [build with Bonjour support],
889               [AC_DEFINE([USE_BONJOUR], 1, [Define to 1 to build with Bonjour support. (--with-bonjour)])])
890 AC_MSG_RESULT([$with_bonjour])
894 # OpenSSL
896 AC_MSG_CHECKING([whether to build with OpenSSL support])
897 PGAC_ARG_BOOL(with, openssl, no, [build with OpenSSL support],
898               [AC_DEFINE([USE_OPENSSL], 1, [Define to build with OpenSSL support. (--with-openssl)])])
899 AC_MSG_RESULT([$with_openssl])
900 AC_SUBST(with_openssl)
903 # SELinux
905 AC_MSG_CHECKING([whether to build with SELinux support])
906 PGAC_ARG_BOOL(with, selinux, no, [build with SELinux support])
907 AC_SUBST(with_selinux)
908 AC_MSG_RESULT([$with_selinux])
911 # Systemd
913 AC_MSG_CHECKING([whether to build with systemd support])
914 PGAC_ARG_BOOL(with, systemd, no, [build with systemd support],
915               [AC_DEFINE([USE_SYSTEMD], 1, [Define to build with systemd support. (--with-systemd)])])
916 AC_SUBST(with_systemd)
917 AC_MSG_RESULT([$with_systemd])
920 # Readline
922 PGAC_ARG_BOOL(with, readline, yes,
923               [do not use GNU Readline nor BSD Libedit for editing])
924 # readline on MinGW has problems with backslashes in psql and other bugs.
925 # This is particularly a problem with non-US code pages.
926 # Therefore disable its use until we understand the cause. 2004-07-20
927 if test "$PORTNAME" = "win32"; then
928   if test "$with_readline" = yes; then
929     AC_MSG_WARN([*** Readline does not work on MinGW --- disabling])
930     with_readline=no
931   fi
936 # Prefer libedit
938 PGAC_ARG_BOOL(with, libedit-preferred, no,
939               [prefer BSD Libedit over GNU Readline])
943 # UUID library
945 # There are at least three UUID libraries in common use: the FreeBSD/NetBSD
946 # library, the e2fsprogs libuuid (now part of util-linux-ng), and the OSSP
947 # UUID library.  More than one of these might be present on a given platform,
948 # so we make the user say which one she wants.
950 PGAC_ARG_REQ(with, uuid, [LIB], [build contrib/uuid-ossp using LIB (bsd,e2fs,ossp)])
951 if test x"$with_uuid" = x"" ; then
952   with_uuid=no
954 PGAC_ARG_BOOL(with, ossp-uuid, no, [obsolete spelling of --with-uuid=ossp])
955 if test "$with_ossp_uuid" = yes ; then
956   with_uuid=ossp
959 if test "$with_uuid" = bsd ; then
960   AC_DEFINE([HAVE_UUID_BSD], 1, [Define to 1 if you have BSD UUID support.])
961   UUID_EXTRA_OBJS="md5.o sha1.o"
962 elif test "$with_uuid" = e2fs ; then
963   AC_DEFINE([HAVE_UUID_E2FS], 1, [Define to 1 if you have E2FS UUID support.])
964   UUID_EXTRA_OBJS="md5.o sha1.o"
965 elif test "$with_uuid" = ossp ; then
966   AC_DEFINE([HAVE_UUID_OSSP], 1, [Define to 1 if you have OSSP UUID support.])
967   UUID_EXTRA_OBJS=""
968 elif test "$with_uuid" = no ; then
969   UUID_EXTRA_OBJS=""
970 else
971   AC_MSG_ERROR([--with-uuid must specify one of bsd, e2fs, or ossp])
973 AC_SUBST(with_uuid)
974 AC_SUBST(UUID_EXTRA_OBJS)
978 # XML
980 AC_MSG_CHECKING([whether to build with XML support])
981 PGAC_ARG_BOOL(with, libxml, no, [build with XML support],
982               [AC_DEFINE([USE_LIBXML], 1, [Define to 1 to build with XML support. (--with-libxml)])])
983 AC_MSG_RESULT([$with_libxml])
984 AC_SUBST(with_libxml)
986 if test "$with_libxml" = yes ; then
987   # Check pkg-config, then xml2-config.  But for backwards compatibility,
988   # setting XML2_CONFIG overrides pkg-config.
989   AC_ARG_VAR(XML2_CONFIG, [path to xml2-config utility])dnl
990   have_libxml2_pkg_config=no
991   if test -z "$XML2_CONFIG" -a -n "$PKG_CONFIG"; then
992     PKG_CHECK_MODULES(XML2, [libxml-2.0 >= 2.6.23],
993                       [have_libxml2_pkg_config=yes], [# do nothing])
994   fi
995   if test "$have_libxml2_pkg_config" = no ; then
996     PGAC_PATH_PROGS(XML2_CONFIG, xml2-config)
997     if test -n "$XML2_CONFIG"; then
998       XML2_CFLAGS=`$XML2_CONFIG --cflags`
999       XML2_LIBS=`$XML2_CONFIG --libs`
1000     fi
1001   fi
1002   # Note the user could also set XML2_CFLAGS/XML2_LIBS directly
1003   for pgac_option in $XML2_CFLAGS; do
1004     case $pgac_option in
1005       -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1006     esac
1007   done
1008   for pgac_option in $XML2_LIBS; do
1009     case $pgac_option in
1010       -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1011     esac
1012   done
1017 # XSLT
1019 PGAC_ARG_BOOL(with, libxslt, no, [use XSLT support when building contrib/xml2],
1020               [AC_DEFINE([USE_LIBXSLT], 1, [Define to 1 to use XSLT support when building contrib/xml2. (--with-libxslt)])])
1023 AC_SUBST(with_libxslt)
1026 # tzdata
1028 PGAC_ARG_REQ(with, system-tzdata,
1029              [DIR], [use system time zone data in DIR])
1030 AC_SUBST(with_system_tzdata)
1033 # Zlib
1035 PGAC_ARG_BOOL(with, zlib, yes,
1036               [do not use Zlib])
1037 AC_SUBST(with_zlib)
1040 # Elf
1043 # Assume system is ELF if it predefines __ELF__ as 1,
1044 # otherwise believe host_os based default.
1045 case $host_os in
1046     freebsd1*|freebsd2*) elf=no;;
1047     freebsd3*|freebsd4*) elf=yes;;
1048 esac
1050 AC_EGREP_CPP(yes,
1051 [#if __ELF__
1052   yes
1053 #endif
1055 [ELF_SYS=true],
1056 [if test "X$elf" = "Xyes" ; then
1057   ELF_SYS=true
1058 else
1059   ELF_SYS=
1060 fi])
1061 AC_SUBST(ELF_SYS)
1064 # Assignments
1067 CPPFLAGS="$CPPFLAGS $INCLUDES"
1068 LDFLAGS="$LDFLAGS $LIBDIRS"
1070 AC_ARG_VAR(LDFLAGS_EX, [extra linker flags for linking executables only])
1071 AC_ARG_VAR(LDFLAGS_SL, [extra linker flags for linking shared libraries only])
1073 PGAC_PROG_LD
1074 AC_SUBST(LD)
1075 AC_SUBST(with_gnu_ld)
1076 AC_PROG_RANLIB
1077 PGAC_CHECK_STRIP
1078 AC_CHECK_TOOL(AR, ar, ar)
1079 if test "$PORTNAME" = "win32"; then
1080   AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool)
1081   AC_CHECK_TOOL(DLLWRAP, dllwrap, dllwrap)
1082   AC_CHECK_TOOL(WINDRES, windres, windres)
1085 AC_PROG_INSTALL
1086 # When Autoconf chooses install-sh as install program it tries to generate
1087 # a relative path to it in each makefile where it substitutes it. This clashes
1088 # with our Makefile.global concept. This workaround helps.
1089 case $INSTALL in
1090   *install-sh*) install_bin='';;
1091   *) install_bin=$INSTALL;;
1092 esac
1093 AC_SUBST(install_bin)
1095 PGAC_PATH_PROGS(TAR, tar)
1096 AC_PROG_LN_S
1097 AC_PROG_MKDIR_P
1098 # When Autoconf chooses install-sh as mkdir -p program it tries to generate
1099 # a relative path to it in each makefile where it substitutes it. This clashes
1100 # with our Makefile.global concept. This workaround helps.
1101 case $MKDIR_P in
1102   *install-sh*) MKDIR_P='\${SHELL} \${top_srcdir}/config/install-sh -c -d';;
1103 esac
1105 PGAC_PATH_BISON
1106 PGAC_PATH_FLEX
1108 PGAC_PATH_PERL
1109 if test "$with_perl" = yes; then
1110   if test -z "$PERL"; then
1111     AC_MSG_ERROR([Perl not found])
1112   fi
1113   PGAC_CHECK_PERL_CONFIGS([archlibexp,privlibexp,useshrplib])
1114   if test "$perl_useshrplib" != yes && test "$perl_useshrplib" != true; then
1115     AC_MSG_ERROR([cannot build PL/Perl because libperl is not a shared library
1116 You might have to rebuild your Perl installation.  Refer to the
1117 documentation for details.  Use --without-perl to disable building
1118 PL/Perl.])
1119   fi
1120   # On most platforms, archlibexp is also where the Perl include files live ...
1121   perl_includespec="-I$perl_archlibexp/CORE"
1122   # ... but on newer macOS versions, we must use -iwithsysroot to look
1123   # under $PG_SYSROOT
1124   if test \! -f "$perl_archlibexp/CORE/perl.h" ; then
1125     if test -f "$PG_SYSROOT$perl_archlibexp/CORE/perl.h" ; then
1126       perl_includespec="-iwithsysroot $perl_archlibexp/CORE"
1127     fi
1128   fi
1129   AC_SUBST(perl_includespec)dnl
1130   PGAC_CHECK_PERL_EMBED_CCFLAGS
1131   PGAC_CHECK_PERL_EMBED_LDFLAGS
1134 if test "$with_python" = yes; then
1135   PGAC_PATH_PYTHON
1136   PGAC_CHECK_PYTHON_EMBED_SETUP
1139 if test "$cross_compiling" = yes && test -z "$with_system_tzdata"; then
1140   PGAC_PATH_PROGS(ZIC, zic)
1141   if test -z "$ZIC"; then
1142     AC_MSG_ERROR([
1143 When cross-compiling, either use the option --with-system-tzdata to use
1144 existing time-zone data, or set the environment variable ZIC to a zic
1145 program to use during the build.])
1146   fi
1150 # Pthreads
1152 # For each platform, we need to know about any special compile and link
1153 # libraries, and whether the normal C function names are thread-safe.
1154 # See the comment at the top of src/port/thread.c for more information.
1155 # WIN32 doesn't need the pthread tests;  it always uses threads
1157 # These tests are run before the library-tests, because linking with the
1158 # other libraries can pull in the pthread functions as a side-effect.  We
1159 # want to use the -pthread or similar flags directly, and not rely on
1160 # the side-effects of linking with some other library.
1162 dnl note: We have to use AS_IF here rather than plain if. The AC_CHECK_HEADER
1163 dnl invocation below is the first one in the script, and autoconf generates
1164 dnl additional code for that, which must not be inside the if-block. AS_IF
1165 dnl knows how to do that.
1166 AS_IF([test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"],
1167 [ # then
1168 AX_PTHREAD      # set thread flags
1170 # Some platforms use these, so just define them.  They can't hurt if they
1171 # are not supported.  For example, on Solaris -D_POSIX_PTHREAD_SEMANTICS
1172 # enables 5-arg getpwuid_r, among other things.
1173 PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS"
1175 # Check for *_r functions
1176 _CFLAGS="$CFLAGS"
1177 _LIBS="$LIBS"
1178 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
1179 LIBS="$LIBS $PTHREAD_LIBS"
1181 AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([
1182 pthread.h not found;  use --disable-thread-safety to disable thread safety])])
1184 AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r])
1186 # Do test here with the proper thread flags
1187 PGAC_FUNC_STRERROR_R_INT
1189 CFLAGS="$_CFLAGS"
1190 LIBS="$_LIBS"
1192 ], [ # else
1193 # do not use values from template file
1194 PTHREAD_CFLAGS=
1195 PTHREAD_LIBS=
1196 ]) # fi
1198 AC_SUBST(PTHREAD_CFLAGS)
1199 AC_SUBST(PTHREAD_LIBS)
1203 ## Libraries
1205 ## Most libraries are included only if they demonstrably provide a function
1206 ## we need, but libm is an exception: always include it, because there are
1207 ## too many compilers that play cute optimization games that will break
1208 ## probes for standard functions such as pow().
1211 AC_CHECK_LIB(m, main)
1212 AC_SEARCH_LIBS(setproctitle, util)
1213 # gcc/clang's sanitizer helper library provides dlopen but not dlsym, thus
1214 # when enabling asan the dlopen check doesn't notice that -ldl is actually
1215 # required. Just checking for dlsym() ought to suffice.
1216 AC_SEARCH_LIBS(dlsym, dl)
1217 AC_SEARCH_LIBS(socket, [socket ws2_32])
1218 AC_SEARCH_LIBS(shl_load, dld)
1219 AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
1220 AC_SEARCH_LIBS(crypt, crypt)
1221 AC_SEARCH_LIBS(shm_open, rt)
1222 AC_SEARCH_LIBS(shm_unlink, rt)
1223 AC_SEARCH_LIBS(clock_gettime, [rt posix4])
1224 # Solaris:
1225 AC_SEARCH_LIBS(fdatasync, [rt posix4])
1226 # Required for thread_test.c on Solaris
1227 AC_SEARCH_LIBS(sched_yield, rt)
1228 # Required for thread_test.c on Solaris 2.5:
1229 # Other ports use it too (HP-UX) so test unconditionally
1230 AC_SEARCH_LIBS(gethostbyname_r, nsl)
1231 # Cygwin:
1232 AC_SEARCH_LIBS(shmget, cygipc)
1234 if test "$with_readline" = yes; then
1235   PGAC_CHECK_READLINE
1236   if test x"$pgac_cv_check_readline" = x"no"; then
1237     AC_MSG_ERROR([readline library not found
1238 If you have readline already installed, see config.log for details on the
1239 failure.  It is possible the compiler isn't looking in the proper directory.
1240 Use --without-readline to disable readline support.])
1241   fi
1244 if test "$with_zlib" = yes; then
1245   AC_CHECK_LIB(z, inflate, [],
1246                [AC_MSG_ERROR([zlib library not found
1247 If you have zlib already installed, see config.log for details on the
1248 failure.  It is possible the compiler isn't looking in the proper directory.
1249 Use --without-zlib to disable zlib support.])])
1252 if test "$enable_spinlocks" = yes; then
1253   AC_DEFINE(HAVE_SPINLOCKS, 1, [Define to 1 if you have spinlocks.])
1254 else
1255   AC_MSG_WARN([
1256 *** Not using spinlocks will cause poor performance.])
1259 if test "$enable_atomics" = yes; then
1260   AC_DEFINE(HAVE_ATOMICS, 1, [Define to 1 if you want to use atomics if available.])
1261 else
1262   AC_MSG_WARN([
1263 *** Not using atomic operations will cause poor performance.])
1266 if test "$with_gssapi" = yes ; then
1267   if test "$PORTNAME" != "win32"; then
1268     AC_SEARCH_LIBS(gss_init_sec_context, [gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'], [],
1269                    [AC_MSG_ERROR([could not find function 'gss_init_sec_context' required for GSSAPI])])
1270   else
1271     LIBS="$LIBS -lgssapi32"
1272   fi
1275 if test "$with_openssl" = yes ; then
1276   dnl Order matters!
1277   # Minimum required OpenSSL version is 0.9.8
1278   AC_DEFINE(OPENSSL_API_COMPAT, [0x00908000L],
1279             [Define to the OpenSSL API version in use. This avoids deprecation warnings from newer OpenSSL versions.])
1280   if test "$PORTNAME" != "win32"; then
1281      AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [AC_MSG_ERROR([library 'crypto' is required for OpenSSL])])
1282      AC_CHECK_LIB(ssl,    SSL_new, [], [AC_MSG_ERROR([library 'ssl' is required for OpenSSL])])
1283   else
1284      AC_SEARCH_LIBS(CRYPTO_new_ex_data, [eay32 crypto], [], [AC_MSG_ERROR([library 'eay32' or 'crypto' is required for OpenSSL])])
1285      AC_SEARCH_LIBS(SSL_new, [ssleay32 ssl], [], [AC_MSG_ERROR([library 'ssleay32' or 'ssl' is required for OpenSSL])])
1286   fi
1287   AC_CHECK_FUNCS([SSL_get_current_compression X509_get_signature_nid])
1288   # Functions introduced in OpenSSL 1.1.0. We used to check for
1289   # OPENSSL_VERSION_NUMBER, but that didn't work with 1.1.0, because LibreSSL
1290   # defines OPENSSL_VERSION_NUMBER to claim version 2.0.0, even though it
1291   # doesn't have these OpenSSL 1.1.0 functions. So check for individual
1292   # functions.
1293   AC_CHECK_FUNCS([OPENSSL_init_ssl BIO_meth_new ASN1_STRING_get0_data])
1294   # OpenSSL versions before 1.1.0 required setting callback functions, for
1295   # thread-safety. In 1.1.0, it's no longer required, and CRYPTO_lock()
1296   # function was removed.
1297   AC_CHECK_FUNCS([CRYPTO_lock])
1298   # Function introduced in OpenSSL 1.1.1.
1299   AC_CHECK_FUNCS([X509_get_signature_info])
1300   # SSL_clear_options is a macro in OpenSSL from 0.9.8 to 1.0.2, and
1301   # a function from 1.1.0 onwards so we cannot use AC_CHECK_FUNCS.
1302   AC_CACHE_CHECK([for SSL_clear_options], ac_cv_func_ssl_clear_options,
1303   [AC_LINK_IFELSE([AC_LANG_PROGRAM([
1304   #include <openssl/ssl.h>
1305   #include <openssl/bio.h>
1306   SSL *ssl;
1307   ],
1308   [return SSL_clear_options(ssl, 0);])],
1309   [ac_cv_func_ssl_clear_options=yes],
1310   [ac_cv_func_ssl_clear_options=no])])
1311   if test $ac_cv_func_ssl_clear_options = yes ; then
1312     AC_DEFINE(HAVE_SSL_CLEAR_OPTIONS, 1, [Define to 1 if you have SSL_clear_options()])
1313   fi
1316 if test "$with_pam" = yes ; then
1317   AC_CHECK_LIB(pam,    pam_start, [], [AC_MSG_ERROR([library 'pam' is required for PAM])])
1320 if test "$with_libxml" = yes ; then
1321   AC_CHECK_LIB(xml2, xmlSaveToBuffer, [], [AC_MSG_ERROR([library 'xml2' (version >= 2.6.23) is required for XML support])])
1324 if test "$with_libxslt" = yes ; then
1325   AC_CHECK_LIB(xslt, xsltCleanupGlobals, [], [AC_MSG_ERROR([library 'xslt' is required for XSLT 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     # The separate ldap_r library only exists in OpenLDAP < 2.5, and if we
1340     # have 2.5 or later, we shouldn't even probe for ldap_r (we might find a
1341     # library from a separate OpenLDAP installation).  The most reliable
1342     # way to check that is to check for a function introduced in 2.5.
1343     AC_CHECK_FUNC([ldap_verify_credentials],
1344                   [thread_safe_libldap=yes],
1345                   [thread_safe_libldap=no])
1346     if test "$enable_thread_safety" = yes -a "$thread_safe_libldap" = no; then
1347       # Use ldap_r for FE if available, else assume ldap is thread-safe.
1348       # On some platforms ldap_r fails to link without PTHREAD_LIBS.
1349       LIBS="$_LIBS"
1350       AC_CHECK_LIB(ldap_r, ldap_bind,
1351                    [LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"],
1352                    [LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"],
1353                    [$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
1354     else
1355       LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
1356     fi
1357   else
1358     AC_CHECK_LIB(wldap32, ldap_bind, [], [AC_MSG_ERROR([library 'wldap32' is required for LDAP])])
1359     LDAP_LIBS_FE="-lwldap32"
1360     LDAP_LIBS_BE="-lwldap32"
1361   fi
1362   LIBS="$_LIBS"
1364 AC_SUBST(LDAP_LIBS_FE)
1365 AC_SUBST(LDAP_LIBS_BE)
1367 # for contrib/sepgsql
1368 if test "$with_selinux" = yes; then
1369   AC_CHECK_LIB(selinux, security_compute_create_name, [],
1370                [AC_MSG_ERROR([library 'libselinux', version 2.1.10 or newer, is required for SELinux support])])
1373 # for contrib/uuid-ossp
1374 if test "$with_uuid" = bsd ; then
1375   # On BSD, the UUID functions are in libc
1376   AC_CHECK_FUNC(uuid_to_string,
1377     [UUID_LIBS=""],
1378     [AC_MSG_ERROR([BSD UUID functions are not present])])
1379 elif test "$with_uuid" = e2fs ; then
1380   # On macOS, the UUID functions are in libc
1381   AC_CHECK_FUNC(uuid_generate,
1382     [UUID_LIBS=""],
1383     [AC_CHECK_LIB(uuid, uuid_generate,
1384       [UUID_LIBS="-luuid"],
1385       [AC_MSG_ERROR([library 'uuid' is required for E2FS UUID])])])
1386 elif test "$with_uuid" = ossp ; then
1387   AC_CHECK_LIB(ossp-uuid, uuid_export,
1388     [UUID_LIBS="-lossp-uuid"],
1389     [AC_CHECK_LIB(uuid, uuid_export,
1390       [UUID_LIBS="-luuid"],
1391       [AC_MSG_ERROR([library 'ossp-uuid' or 'uuid' is required for OSSP UUID])])])
1393 AC_SUBST(UUID_LIBS)
1397 ## Header files
1400 AC_HEADER_STDBOOL
1402 AC_CHECK_HEADERS(m4_normalize([
1403         atomic.h
1404         copyfile.h
1405         crypt.h
1406         fp_class.h
1407         getopt.h
1408         ieeefp.h
1409         ifaddrs.h
1410         langinfo.h
1411         mbarrier.h
1412         poll.h
1413         sys/epoll.h
1414         sys/ipc.h
1415         sys/personality.h
1416         sys/prctl.h
1417         sys/procctl.h
1418         sys/pstat.h
1419         sys/resource.h
1420         sys/select.h
1421         sys/sem.h
1422         sys/shm.h
1423         sys/sockio.h
1424         sys/tas.h
1425         sys/un.h
1426         termios.h
1427         ucred.h
1428         utime.h
1429         wchar.h
1430         wctype.h
1433 # On BSD, test for net/if.h will fail unless sys/socket.h
1434 # is included first.
1435 AC_CHECK_HEADERS(net/if.h, [], [],
1436 [AC_INCLUDES_DEFAULT
1437 #include <sys/socket.h>
1440 # On OpenBSD, test for sys/ucred.h will fail unless sys/param.h
1441 # is included first.
1442 AC_CHECK_HEADERS(sys/ucred.h, [], [],
1443 [AC_INCLUDES_DEFAULT
1444 #include <sys/param.h>
1447 # At least on IRIX, test for netinet/tcp.h will fail unless
1448 # netinet/in.h is included first.
1449 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
1450 [AC_INCLUDES_DEFAULT
1451 #include <netinet/in.h>
1454 if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
1455   AC_CHECK_HEADERS(readline/readline.h, [],
1456         [AC_CHECK_HEADERS(readline.h, [],
1457                 [AC_MSG_ERROR([readline header not found
1458 If you have readline already installed, see config.log for details on the
1459 failure.  It is possible the compiler isn't looking in the proper directory.
1460 Use --without-readline to disable readline support.])])])
1461   AC_CHECK_HEADERS(readline/history.h, [],
1462         [AC_CHECK_HEADERS(history.h, [],
1463                 [AC_MSG_ERROR([history header not found
1464 If you have readline already installed, see config.log for details on the
1465 failure.  It is possible the compiler isn't looking in the proper directory.
1466 Use --without-readline to disable readline support.])])])
1469 if expr x"$pgac_cv_check_readline" : 'x-ledit' >/dev/null ; then
1470 # Some installations of libedit usurp /usr/include/readline/, which seems
1471 # bad practice, since in combined installations readline will have its headers
1472 # there.  We might have to resort to AC_EGREP checks to make sure we found
1473 # the proper header...
1474   AC_CHECK_HEADERS(editline/readline.h, [],
1475         [AC_CHECK_HEADERS(readline.h, [],
1476                 [AC_CHECK_HEADERS(readline/readline.h, [],
1477                         [AC_MSG_ERROR([readline header not found
1478 If you have libedit already installed, see config.log for details on the
1479 failure.  It is possible the compiler isn't looking in the proper directory.
1480 Use --without-readline to disable libedit support.])])])])
1481 # Note: in a libedit installation, history.h is sometimes a dummy, and may
1482 # not be there at all.  Hence, don't complain if not found.  We must check
1483 # though, since in yet other versions it is an independent header.
1484   AC_CHECK_HEADERS(editline/history.h, [],
1485         [AC_CHECK_HEADERS(history.h, [],
1486                 [AC_CHECK_HEADERS(readline/history.h)])])
1489 if test "$with_zlib" = yes; then
1490   AC_CHECK_HEADER(zlib.h, [], [AC_MSG_ERROR([zlib header not found
1491 If you have zlib already installed, see config.log for details on the
1492 failure.  It is possible the compiler isn't looking in the proper directory.
1493 Use --without-zlib to disable zlib support.])])
1496 if test "$with_gssapi" = yes ; then
1497   AC_CHECK_HEADERS(gssapi/gssapi.h, [],
1498         [AC_CHECK_HEADERS(gssapi.h, [], [AC_MSG_ERROR([gssapi.h header file is required for GSSAPI])])])
1501 if test "$with_openssl" = yes ; then
1502   AC_CHECK_HEADER(openssl/ssl.h, [], [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL])])
1503   AC_CHECK_HEADER(openssl/err.h, [], [AC_MSG_ERROR([header file <openssl/err.h> is required for OpenSSL])])
1506 if test "$with_pam" = yes ; then
1507   AC_CHECK_HEADERS(security/pam_appl.h, [],
1508                    [AC_CHECK_HEADERS(pam/pam_appl.h, [],
1509                                      [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM.])])])
1512 if test "$with_bsd_auth" = yes ; then
1513   AC_CHECK_HEADER(bsd_auth.h, [], [AC_MSG_ERROR([header file <bsd_auth.h> is required for BSD Authentication support])])
1516 if test "$with_systemd" = yes ; then
1517   AC_CHECK_HEADER(systemd/sd-daemon.h, [], [AC_MSG_ERROR([header file <systemd/sd-daemon.h> is required for systemd support])])
1520 if test "$with_libxml" = yes ; then
1521   AC_CHECK_HEADER(libxml/parser.h, [], [AC_MSG_ERROR([header file <libxml/parser.h> is required for XML support])])
1524 if test "$with_libxslt" = yes ; then
1525   AC_CHECK_HEADER(libxslt/xslt.h, [], [AC_MSG_ERROR([header file <libxslt/xslt.h> is required for XSLT support])])
1528 if test "$with_ldap" = yes ; then
1529   if test "$PORTNAME" != "win32"; then
1530      AC_CHECK_HEADERS(ldap.h, [],
1531                       [AC_MSG_ERROR([header file <ldap.h> is required for LDAP])])
1532      PGAC_LDAP_SAFE
1533   else
1534      AC_CHECK_HEADERS(winldap.h, [],
1535                       [AC_MSG_ERROR([header file <winldap.h> is required for LDAP])],
1536                       [AC_INCLUDES_DEFAULT
1537 #include <windows.h>
1538                       ])
1539   fi
1542 if test "$with_bonjour" = yes ; then
1543   AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])
1544 dnl At some point we might add something like
1545 dnl AC_SEARCH_LIBS(DNSServiceRegister, dns_sd)
1546 dnl but right now, what that would mainly accomplish is to encourage
1547 dnl people to try to use the avahi implementation, which does not work.
1548 dnl If you want to use Apple's own Bonjour code on another platform,
1549 dnl just add -ldns_sd to LIBS manually.
1552 # for contrib/uuid-ossp
1553 if test "$with_uuid" = bsd ; then
1554   AC_CHECK_HEADERS(uuid.h,
1555     [AC_EGREP_HEADER([uuid_to_string], uuid.h, [],
1556       [AC_MSG_ERROR([header file <uuid.h> does not match BSD UUID library])])],
1557     [AC_MSG_ERROR([header file <uuid.h> is required for BSD UUID])])
1558 elif test "$with_uuid" = e2fs ; then
1559   AC_CHECK_HEADERS(uuid/uuid.h,
1560     [AC_EGREP_HEADER([uuid_generate], uuid/uuid.h, [],
1561       [AC_MSG_ERROR([header file <uuid/uuid.h> does not match E2FS UUID library])])],
1562     [AC_CHECK_HEADERS(uuid.h,
1563       [AC_EGREP_HEADER([uuid_generate], uuid.h, [],
1564         [AC_MSG_ERROR([header file <uuid.h> does not match E2FS UUID library])])],
1565       [AC_MSG_ERROR([header file <uuid/uuid.h> or <uuid.h> is required for E2FS UUID])])])
1566 elif test "$with_uuid" = ossp ; then
1567   AC_CHECK_HEADERS(ossp/uuid.h,
1568     [AC_EGREP_HEADER([uuid_export], ossp/uuid.h, [],
1569       [AC_MSG_ERROR([header file <ossp/uuid.h> does not match OSSP UUID library])])],
1570     [AC_CHECK_HEADERS(uuid.h,
1571       [AC_EGREP_HEADER([uuid_export], uuid.h, [],
1572         [AC_MSG_ERROR([header file <uuid.h> does not match OSSP UUID library])])],
1573       [AC_MSG_ERROR([header file <ossp/uuid.h> or <uuid.h> is required for OSSP UUID])])])
1576 if test "$PORTNAME" = "win32" ; then
1577    AC_CHECK_HEADERS(crtdefs.h)
1581 ## Types, structures, compiler characteristics
1584 m4_defun([AC_PROG_CC_STDC], []) dnl We don't want that.
1585 AC_C_BIGENDIAN
1586 AC_C_INLINE
1587 PGAC_PRINTF_ARCHETYPE
1588 AC_C_FLEXIBLE_ARRAY_MEMBER
1589 PGAC_C_SIGNED
1590 PGAC_C_FUNCNAME_SUPPORT
1591 PGAC_C_STATIC_ASSERT
1592 PGAC_C_TYPEOF
1593 PGAC_C_TYPES_COMPATIBLE
1594 PGAC_C_BUILTIN_CONSTANT_P
1595 PGAC_C_BUILTIN_UNREACHABLE
1596 PGAC_C_COMPUTED_GOTO
1597 PGAC_STRUCT_TIMEZONE
1598 PGAC_UNION_SEMUN
1599 PGAC_STRUCT_SOCKADDR_UN
1600 PGAC_STRUCT_SOCKADDR_STORAGE
1601 PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS
1602 PGAC_STRUCT_ADDRINFO
1603 AC_TYPE_INTPTR_T
1604 AC_TYPE_UINTPTR_T
1605 AC_TYPE_LONG_LONG_INT
1607 PGAC_TYPE_LOCALE_T
1609 # MSVC doesn't cope well with defining restrict to __restrict, the
1610 # spelling it understands, because it conflicts with
1611 # __declspec(restrict). Therefore we define pg_restrict to the
1612 # appropriate definition, which presumably won't conflict.
1614 # Allow platforms with buggy compilers to force restrict to not be
1615 # used by setting $FORCE_DISABLE_RESTRICT=yes in the relevant
1616 # template.
1617 AC_C_RESTRICT
1618 if test "$ac_cv_c_restrict" = "no" -o "x$FORCE_DISABLE_RESTRICT" = "xyes"; then
1619   pg_restrict=""
1620 else
1621   pg_restrict="$ac_cv_c_restrict"
1623 AC_DEFINE_UNQUOTED([pg_restrict], [$pg_restrict],
1624 [Define to keyword to use for C99 restrict support, or to nothing if not
1625 supported])
1627 AC_CHECK_TYPES([struct cmsgcred], [], [],
1628 [#include <sys/socket.h>
1629 #include <sys/param.h>
1630 #ifdef HAVE_SYS_UCRED_H
1631 #include <sys/ucred.h>
1632 #endif])
1634 AC_CHECK_TYPES([struct option], [], [],
1635 [#ifdef HAVE_GETOPT_H
1636 #include <getopt.h>
1637 #endif])
1639 if test "$with_zlib" = yes; then
1640   # Check that <zlib.h> defines z_streamp (versions before about 1.0.4
1641   # did not).  While we could work around the lack of z_streamp, it
1642   # seems unwise to encourage people to use such old zlib versions...
1643   AC_CHECK_TYPE(z_streamp, [], [AC_MSG_ERROR([zlib version is too old
1644 Use --without-zlib to disable zlib support.])],
1645                 [#include <zlib.h>])
1648 case $host_cpu in
1649   x86_64)
1650     # On x86_64, check if we can compile a popcntq instruction
1651     AC_CACHE_CHECK([whether assembler supports x86_64 popcntq],
1652                    [pgac_cv_have_x86_64_popcntq],
1653     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1654         [long long x = 1; long long r;
1655          __asm__ __volatile__ (" popcntq %1,%0\n" : "=q"(r) : "rm"(x));])],
1656         [pgac_cv_have_x86_64_popcntq=yes],
1657         [pgac_cv_have_x86_64_popcntq=no])])
1658     if test x"$pgac_cv_have_x86_64_popcntq" = xyes ; then
1659         AC_DEFINE(HAVE_X86_64_POPCNTQ, 1, [Define to 1 if the assembler supports X86_64's POPCNTQ instruction.])
1660     fi
1661   ;;
1662   ppc*|powerpc*)
1663     # On PPC, check if assembler supports LWARX instruction's mutex hint bit
1664     AC_CACHE_CHECK([whether assembler supports lwarx hint bit],
1665                    [pgac_cv_have_ppc_mutex_hint],
1666     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1667         [int a = 0; int *p = &a; int r;
1668          __asm__ __volatile__ (" lwarx %0,0,%1,1\n" : "=&r"(r) : "r"(p));])],
1669         [pgac_cv_have_ppc_mutex_hint=yes],
1670         [pgac_cv_have_ppc_mutex_hint=no])])
1671     if test x"$pgac_cv_have_ppc_mutex_hint" = xyes ; then
1672         AC_DEFINE(HAVE_PPC_LWARX_MUTEX_HINT, 1, [Define to 1 if the assembler supports PPC's LWARX mutex hint bit.])
1673     fi
1674   ;;
1675 esac
1677 # Check largefile support.  You might think this is a system service not a
1678 # compiler characteristic, but you'd be wrong.  We must check this before
1679 # probing existence of related functions such as fseeko, since the largefile
1680 # defines can affect what is generated for that.
1681 if test "$PORTNAME" != "win32"; then
1682    AC_SYS_LARGEFILE
1683    dnl Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define
1684    dnl _DARWIN_USE_64_BIT_INODE, but it isn't: on macOS 10.5 that activates a
1685    dnl bug that causes readdir() to sometimes return EINVAL.  On later macOS
1686    dnl versions where the feature actually works, it's on by default anyway.
1687    AH_VERBATIM([_DARWIN_USE_64_BIT_INODE],[])
1690 dnl Check for largefile support (must be after AC_SYS_LARGEFILE)
1691 AC_CHECK_SIZEOF([off_t])
1693 # If we don't have largefile support, can't handle segsize >= 2GB.
1694 if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
1695    AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1698 AC_CHECK_SIZEOF([bool], [],
1699 [#ifdef HAVE_STDBOOL_H
1700 #include <stdbool.h>
1701 #endif])
1705 ## Functions, global variables
1708 PGAC_VAR_INT_TIMEZONE
1709 AC_FUNC_ACCEPT_ARGTYPES
1710 PGAC_FUNC_GETTIMEOFDAY_1ARG
1711 PGAC_FUNC_WCSTOMBS_L
1713 # Some versions of libedit contain strlcpy(), setproctitle(), and other
1714 # symbols that that library has no business exposing to the world.  Pending
1715 # acquisition of a clue by those developers, ignore libedit (including its
1716 # possible alias of libreadline) while checking for everything else.
1717 LIBS_including_readline="$LIBS"
1718 LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`
1720 AC_CHECK_FUNCS(m4_normalize([
1721         cbrt
1722         clock_gettime
1723         copyfile
1724         fdatasync
1725         getifaddrs
1726         getpeerucred
1727         getrlimit
1728         mbstowcs_l
1729         memmove
1730         poll
1731         posix_fallocate
1732         ppoll
1733         pstat
1734         pthread_is_threaded_np
1735         readlink
1736         setproctitle
1737         setproctitle_fast
1738         setsid
1739         shm_open
1740         strchrnul
1741         strsignal
1742         symlink
1743         sync_file_range
1744         uselocale
1745         utime
1746         utimes
1747         wcstombs_l
1750 # These typically are compiler builtins, for which AC_CHECK_FUNCS fails.
1751 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap16], [int x])
1752 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap32], [int x])
1753 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap64], [long int x])
1754 # We assume that we needn't test all widths of these explicitly:
1755 PGAC_CHECK_BUILTIN_FUNC([__builtin_clz], [unsigned int x])
1756 PGAC_CHECK_BUILTIN_FUNC([__builtin_ctz], [unsigned int x])
1757 PGAC_CHECK_BUILTIN_FUNC([__builtin_popcount], [unsigned int x])
1758 # __builtin_frame_address may draw a diagnostic for non-constant argument,
1759 # so it needs a different test function.
1760 PGAC_CHECK_BUILTIN_FUNC_PTR([__builtin_frame_address], [0])
1762 AC_REPLACE_FUNCS(fseeko)
1763 case $host_os in
1764         # NetBSD uses a custom fseeko/ftello built on fsetpos/fgetpos
1765         # Mingw uses macros to access Win32 API calls
1766         netbsd*|mingw*)
1767                 AC_DEFINE(HAVE_FSEEKO, 1, [Define to 1 because replacement version used.])
1768                 ac_cv_func_fseeko=yes;;
1769         *)
1770                 AC_FUNC_FSEEKO;;
1771 esac
1773 # posix_fadvise() is a no-op on Solaris, so don't incur function overhead
1774 # by calling it, 2009-04-02
1775 # http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/gen/posix_fadvise.c
1776 dnl must use AS_IF here, else AC_REQUIRES inside AC_CHECK_DECLS malfunctions
1777 AS_IF([test "$PORTNAME" != "solaris"], [
1778 AC_CHECK_FUNCS(posix_fadvise)
1779 AC_CHECK_DECLS(posix_fadvise, [], [], [#include <fcntl.h>])
1780 ]) # fi
1782 AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
1783 AC_CHECK_DECLS([strlcat, strlcpy, strnlen])
1784 # This is probably only present on macOS, but may as well check always
1785 AC_CHECK_DECLS(F_FULLFSYNC, [], [], [#include <fcntl.h>])
1787 AC_CHECK_DECLS([RTLD_GLOBAL, RTLD_NOW], [], [], [#include <dlfcn.h>])
1789 AC_CHECK_TYPE([struct sockaddr_in6],
1790         [AC_DEFINE(HAVE_IPV6, 1, [Define to 1 if you have support for IPv6.])],
1791         [],
1792 [$ac_includes_default
1793 #include <netinet/in.h>])
1795 AC_CACHE_CHECK([for PS_STRINGS], [pgac_cv_var_PS_STRINGS],
1796 [AC_LINK_IFELSE([AC_LANG_PROGRAM(
1797 [#include <machine/vmparam.h>
1798 #include <sys/exec.h>
1800 [PS_STRINGS->ps_nargvstr = 1;
1801 PS_STRINGS->ps_argvstr = "foo";])],
1802 [pgac_cv_var_PS_STRINGS=yes],
1803 [pgac_cv_var_PS_STRINGS=no])])
1804 if test "$pgac_cv_var_PS_STRINGS" = yes ; then
1805   AC_DEFINE([HAVE_PS_STRINGS], 1, [Define to 1 if the PS_STRINGS thing exists.])
1809 dnl Cannot use AC_CHECK_FUNC because isinf may be a macro
1810 AC_CACHE_CHECK([for isinf], ac_cv_func_isinf,
1811 [AC_LINK_IFELSE([AC_LANG_PROGRAM([
1812 #include <math.h>
1813 double glob_double;
1815 [return isinf(glob_double) ? 0 : 1;])],
1816 [ac_cv_func_isinf=yes],
1817 [ac_cv_func_isinf=no])])
1819 if test $ac_cv_func_isinf = yes ; then
1820   AC_DEFINE(HAVE_ISINF, 1, [Define to 1 if you have isinf().])
1821 else
1822   AC_LIBOBJ(isinf)
1823   # Look for a way to implement a substitute for isinf()
1824   AC_CHECK_FUNCS([fpclass fp_class fp_class_d class], [break])
1827 AC_REPLACE_FUNCS(m4_normalize([
1828         crypt
1829         dlopen
1830         fls
1831         getopt
1832         getrusage
1833         inet_aton
1834         mkdtemp
1835         pread
1836         pwrite
1837         random
1838         rint
1839         srandom
1840         strlcat
1841         strlcpy
1842         strnlen
1843         strtof
1846 case $host_os in
1847         # Cygwin and (apparently, based on test results) Mingw both
1848         # have a broken strtof(), so substitute the same replacement
1849         # code we use with VS2013. That's not a perfect fix, since
1850         # (unlike with VS2013) it doesn't avoid double-rounding, but
1851         # we have no better options. To get that, though, we have to
1852         # force the file to be compiled despite HAVE_STRTOF.
1853         mingw*|cygwin*)
1854                 AC_LIBOBJ([strtof])
1855                 AC_MSG_NOTICE([On $host_os we will use our strtof wrapper.])
1856         ;;
1857 esac
1859 case $host_os in
1861         # Windows uses a specialised env handler
1862         # and doesn't need a replacement getpeereid because it doesn't use
1863         # Unix sockets.
1864         mingw*)
1865                 AC_DEFINE(HAVE_SETENV, 1, [Define to 1 because replacement version used.])
1866                 AC_DEFINE(HAVE_UNSETENV, 1, [Define to 1 because replacement version used.])
1867                 AC_DEFINE(HAVE_GETPEEREID, 1, [Define to 1 because function not required.])
1868                 ac_cv_func_setenv=yes
1869                 ac_cv_func_unsetenv=yes
1870                 ac_cv_func_getpeereid=yes;;
1871         *)
1872                 AC_REPLACE_FUNCS([setenv unsetenv getpeereid])
1873                 ;;
1874 esac
1876 # System's version of getaddrinfo(), if any, may be used only if we found
1877 # a definition for struct addrinfo; see notes in src/include/getaddrinfo.h.
1878 # We use only our own getaddrinfo.c on Windows, but it's time to revisit that.
1879 if test x"$ac_cv_type_struct_addrinfo" = xyes && \
1880    test "$PORTNAME" != "win32"; then
1881   AC_REPLACE_FUNCS([getaddrinfo])
1882 else
1883   AC_LIBOBJ(getaddrinfo)
1886 # Similarly, use system's getopt_long() only if system provides struct option.
1887 if test x"$ac_cv_type_struct_option" = xyes ; then
1888   AC_REPLACE_FUNCS([getopt_long])
1889 else
1890   AC_LIBOBJ(getopt_long)
1893 # On OpenBSD and Solaris, getopt() doesn't do what we want for long options
1894 # (i.e., allow '-' as a flag character), so use our version on those platforms.
1895 if test "$PORTNAME" = "openbsd" -o "$PORTNAME" = "solaris"; then
1896   AC_LIBOBJ(getopt)
1899 # mingw has adopted a GNU-centric interpretation of optind/optreset,
1900 # so always use our version on Windows.
1901 if test "$PORTNAME" = "win32"; then
1902   AC_LIBOBJ(getopt)
1903   AC_LIBOBJ(getopt_long)
1906 # Win32 (really MinGW) support
1907 if test "$PORTNAME" = "win32"; then
1908   AC_CHECK_FUNCS(_configthreadlocale)
1909   AC_REPLACE_FUNCS(gettimeofday)
1910   AC_LIBOBJ(dirmod)
1911   AC_LIBOBJ(kill)
1912   AC_LIBOBJ(open)
1913   AC_LIBOBJ(system)
1914   AC_LIBOBJ(win32env)
1915   AC_LIBOBJ(win32error)
1916   AC_LIBOBJ(win32security)
1917   AC_LIBOBJ(win32setlocale)
1918   AC_DEFINE([HAVE_SYMLINK], 1,
1919             [Define to 1 if you have the `symlink' function.])
1920   AC_CHECK_TYPES(MINIDUMP_TYPE, [pgac_minidump_type=yes], [pgac_minidump_type=no], [
1921 #define WIN32_LEAN_AND_MEAN
1922 #include <windows.h>
1923 #include <string.h>
1924 #include <dbghelp.h>])
1926 if test x"$pgac_minidump_type" = x"yes" ; then
1927   AC_SUBST(have_win32_dbghelp,yes)
1928 else
1929   AC_SUBST(have_win32_dbghelp,no)
1932 # Cygwin needs only a bit of that
1933 if test "$PORTNAME" = "cygwin"; then
1934   AC_LIBOBJ(dirmod)
1937 AC_CHECK_FUNC(syslog,
1938               [AC_CHECK_HEADER(syslog.h,
1939                                [AC_DEFINE(HAVE_SYSLOG, 1, [Define to 1 if you have the syslog interface.])])])
1941 AC_CACHE_CHECK([for opterr], pgac_cv_var_int_opterr,
1942 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1943   [extern int opterr; opterr = 1;])],
1944   [pgac_cv_var_int_opterr=yes],
1945   [pgac_cv_var_int_opterr=no])])
1946 if test x"$pgac_cv_var_int_opterr" = x"yes"; then
1947   AC_DEFINE(HAVE_INT_OPTERR, 1, [Define to 1 if you have the global variable 'int opterr'.])
1950 AC_CACHE_CHECK([for optreset], pgac_cv_var_int_optreset,
1951 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1952   [extern int optreset; optreset = 1;])],
1953   [pgac_cv_var_int_optreset=yes],
1954   [pgac_cv_var_int_optreset=no])])
1955 if test x"$pgac_cv_var_int_optreset" = x"yes"; then
1956   AC_DEFINE(HAVE_INT_OPTRESET, 1, [Define to 1 if you have the global variable 'int optreset'.])
1959 AC_CHECK_FUNCS([strtoll __strtoll strtoq], [break])
1960 AC_CHECK_FUNCS([strtoull __strtoull strtouq], [break])
1961 # strto[u]ll may exist but not be declared
1962 AC_CHECK_DECLS([strtoll, strtoull])
1964 if test "$with_icu" = yes; then
1965   ac_save_CPPFLAGS=$CPPFLAGS
1966   CPPFLAGS="$ICU_CFLAGS $CPPFLAGS"
1968   # Verify we have ICU's header files
1969   AC_CHECK_HEADER(unicode/ucol.h, [],
1970         [AC_MSG_ERROR([header file <unicode/ucol.h> is required for ICU])])
1972   CPPFLAGS=$ac_save_CPPFLAGS
1975 if test "$with_llvm" = yes; then
1976   PGAC_CHECK_LLVM_FUNCTIONS()
1979 # Lastly, restore full LIBS list and check for readline/libedit symbols
1980 LIBS="$LIBS_including_readline"
1982 if test "$with_readline" = yes; then
1983   PGAC_VAR_RL_COMPLETION_APPEND_CHARACTER
1984   AC_CHECK_FUNCS([rl_completion_matches rl_filename_completion_function rl_reset_screen_size])
1985   AC_CHECK_FUNCS([append_history history_truncate_file])
1989 # This test makes sure that run tests work at all.  Sometimes a shared
1990 # library is found by the linker, but the runtime linker can't find it.
1991 # This check should come after all modifications of compiler or linker
1992 # variables, and before any other run tests.
1993 AC_MSG_CHECKING([test program])
1994 AC_RUN_IFELSE([AC_LANG_SOURCE([int main() { return 0; }])],
1995 [AC_MSG_RESULT(ok)],
1996 [AC_MSG_RESULT(failed)
1997 AC_MSG_ERROR([[
1998 Could not execute a simple test program.  This may be a problem
1999 related to locating shared libraries.  Check the file 'config.log'
2000 for the exact reason.]])],
2001 [AC_MSG_RESULT([cross-compiling])])
2003 # --------------------
2004 # Run tests below here
2005 # --------------------
2007 dnl Check to see if we have a working 64-bit integer type.
2008 dnl Since Postgres 8.4, we no longer support compilers without a working
2009 dnl 64-bit type; but we have to determine whether that type is called
2010 dnl "long int" or "long long int".
2012 PGAC_TYPE_64BIT_INT([long int])
2014 if test x"$HAVE_LONG_INT_64" = x"yes" ; then
2015   pg_int64_type="long int"
2016 else
2017   PGAC_TYPE_64BIT_INT([long long int])
2018   if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
2019     pg_int64_type="long long int"
2020   else
2021     AC_MSG_ERROR([Cannot find a working 64-bit integer type.])
2022   fi
2025 AC_DEFINE_UNQUOTED(PG_INT64_TYPE, $pg_int64_type,
2026   [Define to the name of a signed 64-bit integer type.])
2028 # Select the printf length modifier that goes with that, too.
2029 if test x"$pg_int64_type" = x"long long int" ; then
2030   INT64_MODIFIER='"ll"'
2031 else
2032   INT64_MODIFIER='"l"'
2035 AC_DEFINE_UNQUOTED(INT64_MODIFIER, $INT64_MODIFIER,
2036                    [Define to the appropriate printf length modifier for 64-bit ints.])
2038 # has to be down here, rather than with the other builtins, because
2039 # the test uses PG_INT64_TYPE.
2040 PGAC_C_BUILTIN_OP_OVERFLOW
2042 # Check size of void *, size_t (enables tweaks for > 32bit address space)
2043 AC_CHECK_SIZEOF([void *])
2044 AC_CHECK_SIZEOF([size_t])
2045 AC_CHECK_SIZEOF([long])
2047 # Decide whether float4 is passed by value: user-selectable, enabled by default
2048 AC_MSG_CHECKING([whether to build with float4 passed by value])
2049 PGAC_ARG_BOOL(enable, float4-byval, yes, [disable float4 passed by value],
2050               [AC_DEFINE([USE_FLOAT4_BYVAL], 1,
2051                          [Define to 1 if you want float4 values to be passed by value. (--enable-float4-byval)])
2052                float4passbyval=true],
2053               [float4passbyval=false])
2054 AC_MSG_RESULT([$enable_float4_byval])
2055 AC_DEFINE_UNQUOTED([FLOAT4PASSBYVAL], [$float4passbyval], [float4 values are passed by value if 'true', by reference if 'false'])
2057 # Decide whether float8 is passed by value.
2058 # Note: this setting also controls int8 and related types such as timestamp.
2059 # If sizeof(Datum) >= 8, this is user-selectable, enabled by default.
2060 # If not, trying to select it is an error.
2061 AC_MSG_CHECKING([whether to build with float8 passed by value])
2062 if test $ac_cv_sizeof_void_p -ge 8 ; then
2063   PGAC_ARG_BOOL(enable, float8-byval, yes, [disable float8 passed by value])
2064 else
2065   PGAC_ARG_BOOL(enable, float8-byval, no, [disable float8 passed by value])
2066   if test "$enable_float8_byval" = yes ; then
2067     AC_MSG_ERROR([--enable-float8-byval is not supported on 32-bit platforms.])
2068   fi
2070 if test "$enable_float8_byval" = yes ; then
2071   AC_DEFINE([USE_FLOAT8_BYVAL], 1,
2072             [Define to 1 if you want float8, int8, etc values to be passed by value. (--enable-float8-byval)])
2073   float8passbyval=true
2074 else
2075   float8passbyval=false
2077 AC_MSG_RESULT([$enable_float8_byval])
2078 AC_DEFINE_UNQUOTED([FLOAT8PASSBYVAL], [$float8passbyval], [float8, int8, and related values are passed by value if 'true', by reference if 'false'])
2080 # Determine memory alignment requirements for the basic C data types.
2082 AC_CHECK_ALIGNOF(short)
2083 AC_CHECK_ALIGNOF(int)
2084 AC_CHECK_ALIGNOF(long)
2085 if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
2086   AC_CHECK_ALIGNOF(long long int)
2088 AC_CHECK_ALIGNOF(double)
2090 # Compute maximum alignment of any basic type.
2091 # We assume long's alignment is at least as strong as char, short, or int;
2092 # but we must check long long (if it is being used for int64) and double.
2093 # Note that we intentionally do not consider any types wider than 64 bits,
2094 # as allowing MAXIMUM_ALIGNOF to exceed 8 would be too much of a penalty
2095 # for disk and memory space.
2097 MAX_ALIGNOF=$ac_cv_alignof_long
2098 if test $MAX_ALIGNOF -lt $ac_cv_alignof_double ; then
2099   MAX_ALIGNOF=$ac_cv_alignof_double
2101 if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $MAX_ALIGNOF -lt $ac_cv_alignof_long_long_int ; then
2102   MAX_ALIGNOF="$ac_cv_alignof_long_long_int"
2104 AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any C data type.])
2107 # Some platforms predefine the types int8, int16, etc.  Only check
2108 # a (hopefully) representative subset.
2109 AC_CHECK_TYPES([int8, uint8, int64, uint64], [], [],
2110 [#include <stdio.h>])
2112 # Some compilers offer a 128-bit integer scalar type.
2113 PGAC_TYPE_128BIT_INT
2115 # Check for various atomic operations now that we have checked how to declare
2116 # 64bit integers.
2117 PGAC_HAVE_GCC__SYNC_CHAR_TAS
2118 PGAC_HAVE_GCC__SYNC_INT32_TAS
2119 PGAC_HAVE_GCC__SYNC_INT32_CAS
2120 PGAC_HAVE_GCC__SYNC_INT64_CAS
2121 PGAC_HAVE_GCC__ATOMIC_INT32_CAS
2122 PGAC_HAVE_GCC__ATOMIC_INT64_CAS
2125 # Check for x86 cpuid instruction
2126 AC_CACHE_CHECK([for __get_cpuid], [pgac_cv__get_cpuid],
2127 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <cpuid.h>],
2128   [[unsigned int exx[4] = {0, 0, 0, 0};
2129   __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);
2130   ]])],
2131   [pgac_cv__get_cpuid="yes"],
2132   [pgac_cv__get_cpuid="no"])])
2133 if test x"$pgac_cv__get_cpuid" = x"yes"; then
2134   AC_DEFINE(HAVE__GET_CPUID, 1, [Define to 1 if you have __get_cpuid.])
2137 AC_CACHE_CHECK([for __cpuid], [pgac_cv__cpuid],
2138 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <intrin.h>],
2139   [[unsigned int exx[4] = {0, 0, 0, 0};
2140   __get_cpuid(exx[0], 1);
2141   ]])],
2142   [pgac_cv__cpuid="yes"],
2143   [pgac_cv__cpuid="no"])])
2144 if test x"$pgac_cv__cpuid" = x"yes"; then
2145   AC_DEFINE(HAVE__CPUID, 1, [Define to 1 if you have __cpuid.])
2148 # Check for Intel SSE 4.2 intrinsics to do CRC calculations.
2150 # First check if the _mm_crc32_u8 and _mm_crc32_u64 intrinsics can be used
2151 # with the default compiler flags. If not, check if adding the -msse4.2
2152 # flag helps. CFLAGS_SSE42 is set to -msse4.2 if that's required.
2153 PGAC_SSE42_CRC32_INTRINSICS([])
2154 if test x"$pgac_sse42_crc32_intrinsics" != x"yes"; then
2155   PGAC_SSE42_CRC32_INTRINSICS([-msse4.2])
2157 AC_SUBST(CFLAGS_SSE42)
2159 # Are we targeting a processor that supports SSE 4.2? gcc, clang and icc all
2160 # define __SSE4_2__ in that case.
2161 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
2162 #ifndef __SSE4_2__
2163 #error __SSE4_2__ not defined
2164 #endif
2165 ])], [SSE4_2_TARGETED=1])
2167 # Check for ARMv8 CRC Extension intrinsics to do CRC calculations.
2169 # First check if __crc32c* intrinsics can be used with the default compiler
2170 # flags. If not, check if adding -march=armv8-a+crc flag helps.
2171 # CFLAGS_ARMV8_CRC32C is set if the extra flag is required.
2172 PGAC_ARMV8_CRC32C_INTRINSICS([])
2173 if test x"$pgac_armv8_crc32c_intrinsics" != x"yes"; then
2174   PGAC_ARMV8_CRC32C_INTRINSICS([-march=armv8-a+crc])
2176 AC_SUBST(CFLAGS_ARMV8_CRC32C)
2178 # Select CRC-32C implementation.
2180 # If we are targeting a processor that has Intel SSE 4.2 instructions, we can
2181 # use the special CRC instructions for calculating CRC-32C. If we're not
2182 # targeting such a processor, but we can nevertheless produce code that uses
2183 # the SSE intrinsics, perhaps with some extra CFLAGS, compile both
2184 # implementations and select which one to use at runtime, depending on whether
2185 # SSE 4.2 is supported by the processor we're running on.
2187 # Similarly, if we are targeting an ARM processor that has the CRC
2188 # instructions that are part of the ARMv8 CRC Extension, use them. And if
2189 # we're not targeting such a processor, but can nevertheless produce code that
2190 # uses the CRC instructions, compile both, and select at runtime.
2192 # You can override this logic by setting the appropriate USE_*_CRC32 flag to 1
2193 # in the template or configure command line.
2194 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
2195   # Use Intel SSE 4.2 if available.
2196   if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && test x"$SSE4_2_TARGETED" = x"1" ; then
2197     USE_SSE42_CRC32C=1
2198   else
2199     # Intel SSE 4.2, with runtime check? The CPUID instruction is needed for
2200     # the runtime check.
2201     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
2202       USE_SSE42_CRC32C_WITH_RUNTIME_CHECK=1
2203     else
2204       # Use ARM CRC Extension if available.
2205       if test x"$pgac_armv8_crc32c_intrinsics" = x"yes" && test x"$CFLAGS_ARMV8_CRC32C" = x""; then
2206         USE_ARMV8_CRC32C=1
2207       else
2208         # ARM CRC Extension, with runtime check?
2209         if test x"$pgac_armv8_crc32c_intrinsics" = x"yes"; then
2210           USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK=1
2211         else
2212           # fall back to slicing-by-8 algorithm, which doesn't require any
2213           # special CPU support.
2214           USE_SLICING_BY_8_CRC32C=1
2215         fi
2216       fi
2217     fi
2218   fi
2221 # Set PG_CRC32C_OBJS appropriately depending on the selected implementation.
2222 AC_MSG_CHECKING([which CRC-32C implementation to use])
2223 if test x"$USE_SSE42_CRC32C" = x"1"; then
2224   AC_DEFINE(USE_SSE42_CRC32C, 1, [Define to 1 use Intel SSE 4.2 CRC instructions.])
2225   PG_CRC32C_OBJS="pg_crc32c_sse42.o"
2226   AC_MSG_RESULT(SSE 4.2)
2227 else
2228   if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2229     AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
2230     PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_sse42_choose.o"
2231     AC_MSG_RESULT(SSE 4.2 with runtime check)
2232   else
2233     if test x"$USE_ARMV8_CRC32C" = x"1"; then
2234       AC_DEFINE(USE_ARMV8_CRC32C, 1, [Define to 1 to use ARMv8 CRC Extension.])
2235       PG_CRC32C_OBJS="pg_crc32c_armv8.o"
2236       AC_MSG_RESULT(ARMv8 CRC instructions)
2237     else
2238       if test x"$USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2239         AC_DEFINE(USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use ARMv8 CRC Extension with a runtime check.])
2240         PG_CRC32C_OBJS="pg_crc32c_armv8.o pg_crc32c_sb8.o pg_crc32c_armv8_choose.o"
2241         AC_MSG_RESULT(ARMv8 CRC instructions with runtime check)
2242       else
2243         AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use software CRC-32C implementation (slicing-by-8).])
2244         PG_CRC32C_OBJS="pg_crc32c_sb8.o"
2245         AC_MSG_RESULT(slicing-by-8)
2246       fi
2247     fi
2248   fi
2250 AC_SUBST(PG_CRC32C_OBJS)
2253 # Select semaphore implementation type.
2254 if test "$PORTNAME" != "win32"; then
2255   if test x"$PREFERRED_SEMAPHORES" = x"NAMED_POSIX" ; then
2256     # Need sem_open for this
2257     AC_SEARCH_LIBS(sem_open, [rt pthread], [USE_NAMED_POSIX_SEMAPHORES=1])
2258   fi
2259   if test x"$PREFERRED_SEMAPHORES" = x"UNNAMED_POSIX" ; then
2260     # Need sem_init for this
2261     AC_SEARCH_LIBS(sem_init, [rt pthread], [USE_UNNAMED_POSIX_SEMAPHORES=1])
2262   fi
2263   AC_MSG_CHECKING([which semaphore API to use])
2264   if test x"$USE_NAMED_POSIX_SEMAPHORES" = x"1" ; then
2265     AC_DEFINE(USE_NAMED_POSIX_SEMAPHORES, 1, [Define to select named POSIX semaphores.])
2266     SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2267     sematype="named POSIX"
2268   else
2269     if test x"$USE_UNNAMED_POSIX_SEMAPHORES" = x"1" ; then
2270       AC_DEFINE(USE_UNNAMED_POSIX_SEMAPHORES, 1, [Define to select unnamed POSIX semaphores.])
2271       SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2272       sematype="unnamed POSIX"
2273     else
2274       AC_DEFINE(USE_SYSV_SEMAPHORES, 1, [Define to select SysV-style semaphores.])
2275       SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
2276       sematype="System V"
2277     fi
2278   fi
2279   AC_MSG_RESULT([$sematype])
2280 else
2281   AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.])
2282   SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
2286 # Select shared-memory implementation type.
2287 if test "$PORTNAME" != "win32"; then
2288   AC_DEFINE(USE_SYSV_SHARED_MEMORY, 1, [Define to select SysV-style shared memory.])
2289   SHMEM_IMPLEMENTATION="src/backend/port/sysv_shmem.c"
2290 else
2291   AC_DEFINE(USE_WIN32_SHARED_MEMORY, 1, [Define to select Win32-style shared memory.])
2292   SHMEM_IMPLEMENTATION="src/backend/port/win32_shmem.c"
2295 # Select random number source
2297 # You can override this logic by setting the appropriate USE_*RANDOM flag to 1
2298 # in the template or configure command line.
2300 # If not selected manually, try to select a source automatically.
2301 if test x"$USE_OPENSSL_RANDOM" = x"" && test x"$USE_WIN32_RANDOM" = x"" && test x"$USE_DEV_URANDOM" = x"" ; then
2302   if test x"$with_openssl" = x"yes" ; then
2303     USE_OPENSSL_RANDOM=1
2304   elif test "$PORTNAME" = "win32" ; then
2305     USE_WIN32_RANDOM=1
2306   else
2307     AC_CHECK_FILE([/dev/urandom], [], [])
2309     if test x"$ac_cv_file__dev_urandom" = x"yes" ; then
2310       USE_DEV_URANDOM=1
2311     fi
2312   fi
2315 AC_MSG_CHECKING([which random number source to use])
2316 if test x"$USE_OPENSSL_RANDOM" = x"1" ; then
2317   AC_DEFINE(USE_OPENSSL_RANDOM, 1, [Define to use OpenSSL for random number generation])
2318   AC_MSG_RESULT([OpenSSL])
2319 elif test x"$USE_WIN32_RANDOM" = x"1" ; then
2320   AC_DEFINE(USE_WIN32_RANDOM, 1, [Define to use native Windows API for random number generation])
2321   AC_MSG_RESULT([Windows native])
2322 elif test x"$USE_DEV_URANDOM" = x"1" ; then
2323   AC_DEFINE(USE_DEV_URANDOM, 1, [Define to use /dev/urandom for random number generation])
2324   AC_MSG_RESULT([/dev/urandom])
2325 else
2326   AC_MSG_ERROR([
2327 no source of strong random numbers was found
2328 PostgreSQL can use OpenSSL or /dev/urandom as a source of random numbers.])
2331 # If not set in template file, set bytes to use libc memset()
2332 if test x"$MEMSET_LOOP_LIMIT" = x"" ; then
2333   MEMSET_LOOP_LIMIT=1024
2335 AC_DEFINE_UNQUOTED(MEMSET_LOOP_LIMIT, ${MEMSET_LOOP_LIMIT}, [Define bytes to use libc memset().])
2338 if test "$enable_nls" = yes ; then
2339   PGAC_CHECK_GETTEXT
2342 # Check for Tcl configuration script tclConfig.sh
2343 if test "$with_tcl" = yes; then
2344     PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
2345     PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
2346                           [TCL_INCLUDE_SPEC,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
2347     AC_SUBST(TCL_SHLIB_LD_LIBS)dnl don't want to double-evaluate that one
2348     if test "$TCL_SHARED_BUILD" != 1; then
2349       AC_MSG_ERROR([cannot build PL/Tcl because Tcl is not a shared library
2350 Use --without-tcl to disable building PL/Tcl.])
2351     fi
2352     # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h>
2353     ac_save_CPPFLAGS=$CPPFLAGS
2354     CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS"
2355     AC_CHECK_HEADER(tcl.h, [], [AC_MSG_ERROR([header file <tcl.h> is required for Tcl])])
2356     CPPFLAGS=$ac_save_CPPFLAGS
2359 # check for <perl.h>
2360 if test "$with_perl" = yes; then
2361   ac_save_CPPFLAGS=$CPPFLAGS
2362   CPPFLAGS="$CPPFLAGS $perl_includespec"
2363   AC_CHECK_HEADER(perl.h, [], [AC_MSG_ERROR([header file <perl.h> is required for Perl])],
2364                   [#include <EXTERN.h>])
2365   # While we're at it, check that we can link to libperl.
2366   # On most platforms, if perl.h is there then libperl.so will be too, but at
2367   # this writing Debian packages them separately.  There is no known reason to
2368   # waste cycles on separate probes for the Tcl or Python libraries, though.
2369   # On some Red Hat platforms, the link attempt can fail if we don't use
2370   # CFLAGS_SL while building the test program.
2371   ac_save_CFLAGS=$CFLAGS
2372   CFLAGS="$CFLAGS $CFLAGS_SL"
2373   pgac_save_LIBS=$LIBS
2374   LIBS="$perl_embed_ldflags"
2375   AC_MSG_CHECKING([for libperl])
2376   AC_LINK_IFELSE([AC_LANG_PROGRAM([
2377 #include <EXTERN.h>
2378 #include <perl.h>
2379 ],  [perl_alloc();])],
2380     [AC_MSG_RESULT(yes)],
2381     [AC_MSG_RESULT(no)
2382      AC_MSG_ERROR([libperl library is required for Perl])])
2383   LIBS=$pgac_save_LIBS
2384   CFLAGS=$ac_save_CFLAGS
2385   CPPFLAGS=$ac_save_CPPFLAGS
2388 # check for <Python.h>
2389 if test "$with_python" = yes; then
2390   ac_save_CPPFLAGS=$CPPFLAGS
2391   CPPFLAGS="$python_includespec $CPPFLAGS"
2392   AC_CHECK_HEADER(Python.h, [], [AC_MSG_ERROR([header file <Python.h> is required for Python])])
2393   CPPFLAGS=$ac_save_CPPFLAGS
2397 # Check for documentation-building tools
2399 PGAC_PATH_PROGS(XMLLINT, xmllint)
2400 PGAC_PATH_PROGS(XSLTPROC, xsltproc)
2401 PGAC_PATH_PROGS(FOP, fop)
2402 PGAC_PATH_PROGS(DBTOEPUB, dbtoepub)
2405 # Check for test tools
2407 if test "$enable_tap_tests" = yes; then
2408   # Make sure we know where prove is.
2409   PGAC_PATH_PROGS(PROVE, prove)
2410   if test -z "$PROVE"; then
2411     AC_MSG_ERROR([prove not found])
2412   fi
2413   # Check for necessary Perl modules.  You might think we should use
2414   # AX_PROG_PERL_MODULES here, but prove might be part of a different Perl
2415   # installation than perl, eg on MSys, so we have to check using prove.
2416   AC_MSG_CHECKING(for Perl modules required for TAP tests)
2417   [modulestderr=`"$PROVE" "$srcdir/config/check_modules.pl" 2>&1 >/dev/null`]
2418   if test $? -eq 0; then
2419     # log the module version details, but don't show them interactively
2420     echo "$modulestderr" >&AS_MESSAGE_LOG_FD
2421     AC_MSG_RESULT(yes)
2422   else
2423     # on failure, though, show the results to the user
2424     AC_MSG_RESULT([$modulestderr])
2425     AC_MSG_ERROR([Additional Perl modules are required to run TAP tests])
2426   fi
2429 # Thread testing
2431 # We have to run the thread test near the end so we have all our symbols
2432 # defined.  Cross compiling throws a warning.
2434 if test "$enable_thread_safety" = yes; then
2435 if test "$PORTNAME" != "win32"
2436 then
2437 AC_MSG_CHECKING([thread safety of required library functions])
2439 _CFLAGS="$CFLAGS"
2440 _LIBS="$LIBS"
2441 CFLAGS="$CFLAGS $PTHREAD_CFLAGS -DIN_CONFIGURE"
2442 LIBS="$LIBS $PTHREAD_LIBS"
2443 AC_RUN_IFELSE(
2444   [AC_LANG_SOURCE([[#include "$srcdir/src/test/thread/thread_test.c"]])],
2445   [AC_MSG_RESULT(yes)],
2446   [AC_MSG_RESULT(no)
2447   AC_MSG_ERROR([thread test program failed
2448 This platform is not thread-safe.  Check the file 'config.log' or compile
2449 and run src/test/thread/thread_test for the exact reason.
2450 Use --disable-thread-safety to disable thread safety.])],
2451   [AC_MSG_RESULT(maybe)
2452   AC_MSG_WARN([
2453 *** Skipping thread test program because of cross-compile build.
2454 *** Run the program in src/test/thread on the target machine.
2455 ])])
2456 CFLAGS="$_CFLAGS"
2457 LIBS="$_LIBS"
2458 else
2459 AC_MSG_WARN([*** skipping thread test on Win32])
2463 # If compiler will take -Wl,--as-needed (or various platform-specific
2464 # spellings thereof) then add that to LDFLAGS.  This is much easier than
2465 # trying to filter LIBS to the minimum for each executable.
2466 # On (at least) some Red-Hat-derived systems, this switch breaks linking to
2467 # libreadline; therefore we postpone testing it until we know what library
2468 # dependencies readline has.  The test code will try to link with $LIBS.
2469 if test "$with_readline" = yes; then
2470   link_test_func=readline
2471 else
2472   link_test_func=exit
2475 if test "$PORTNAME" = "darwin"; then
2476   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-dead_strip_dylibs], $link_test_func)
2477 elif test "$PORTNAME" = "openbsd"; then
2478   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-Bdynamic], $link_test_func)
2479 else
2480   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,--as-needed], $link_test_func)
2483 # Create compiler version string
2484 if test x"$GCC" = x"yes" ; then
2485   cc_string=`${CC} --version | sed q`
2486   case $cc_string in [[A-Za-z]]*) ;; *) cc_string="GCC $cc_string";; esac
2487 elif test x"$SUN_STUDIO_CC" = x"yes" ; then
2488   cc_string=`${CC} -V 2>&1 | sed q`
2489 else
2490   cc_string=$CC
2493 AC_DEFINE_UNQUOTED(PG_VERSION_STR,
2494                    ["PostgreSQL $PG_VERSION on $host, compiled by $cc_string, `expr $ac_cv_sizeof_void_p \* 8`-bit"],
2495                    [A string containing the version number, platform, and C compiler])
2497 # Supply a numeric version string for use by 3rd party add-ons
2498 # awk -F is a regex on some platforms, and not on others, so make "." a tab
2499 [PG_VERSION_NUM="`echo "$PACKAGE_VERSION" | sed 's/[A-Za-z].*$//' |
2500 tr '.' '        ' |
2501 $AWK '{printf "%d%04d", $1, $2}'`"]
2502 AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number])
2503 AC_SUBST(PG_VERSION_NUM)
2505 # If we are inserting PG_SYSROOT into CPPFLAGS, do so symbolically not
2506 # literally, so that it's possible to override it at build time using
2507 # a command like "make ... PG_SYSROOT=path".  This has to be done after
2508 # we've finished all configure checks that depend on CPPFLAGS.
2509 # The same for LDFLAGS, too.
2510 if test x"$PG_SYSROOT" != x; then
2511   CPPFLAGS=`echo "$CPPFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2512   LDFLAGS=`echo "$LDFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2514 AC_SUBST(PG_SYSROOT)
2517 # Begin output steps
2519 AC_MSG_NOTICE([using compiler=$cc_string])
2520 AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
2521 AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS])
2522 AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS])
2523 # Currently only used when LLVM is used
2524 if test "$with_llvm" = yes ; then
2525    AC_MSG_NOTICE([using CXX=$CXX])
2526    AC_MSG_NOTICE([using CXXFLAGS=$CXXFLAGS])
2527    AC_MSG_NOTICE([using CLANG=$CLANG])
2528    AC_MSG_NOTICE([using BITCODE_CFLAGS=$BITCODE_CFLAGS])
2529    AC_MSG_NOTICE([using BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS])
2532 # prepare build tree if outside source tree
2533 # Note 1: test -ef might not exist, but it's more reliable than `pwd`.
2534 # Note 2: /bin/pwd might be better than shell's built-in at getting
2535 #         a symlink-free name.
2536 if ( test "$srcdir" -ef . ) >/dev/null 2>&1 || test "`cd $srcdir && /bin/pwd`" = "`/bin/pwd`"; then
2537   vpath_build=no
2538 else
2539   vpath_build=yes
2540   if test "$no_create" != yes; then
2541     _AS_ECHO_N([preparing build tree... ])
2542     pgac_abs_top_srcdir=`cd "$srcdir" && pwd`
2543     $SHELL "$ac_aux_dir/prep_buildtree" "$pgac_abs_top_srcdir" "." \
2544       || AC_MSG_ERROR(failed)
2545     AC_MSG_RESULT(done)
2546   fi
2548 AC_SUBST(vpath_build)
2551 AC_CONFIG_FILES([GNUmakefile src/Makefile.global])
2553 AC_CONFIG_LINKS([
2554   src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION}
2555   src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION}
2556   src/include/pg_config_os.h:src/include/port/${template}.h
2557   src/Makefile.port:src/makefiles/Makefile.${template}
2560 if test "$PORTNAME" = "win32"; then
2561 AC_CONFIG_COMMANDS([check_win32_symlinks],[
2562 # Links sometimes fail undetected on Mingw -
2563 # so here we detect it and warn the user
2564 for FILE in $CONFIG_LINKS
2565  do
2566         # test -e works for symlinks in the MinGW console
2567         test -e `expr "$FILE" : '\([[^:]]*\)'` || AC_MSG_WARN([*** link for $FILE -- please fix by hand])
2568  done
2572 AC_CONFIG_HEADERS([src/include/pg_config.h],
2574 # Update timestamp for pg_config.h (see Makefile.global)
2575 echo >src/include/stamp-h
2578 AC_CONFIG_HEADERS([src/include/pg_config_ext.h],
2580 # Update timestamp for pg_config_ext.h (see Makefile.global)
2581 echo >src/include/stamp-ext-h
2584 AC_CONFIG_HEADERS([src/interfaces/ecpg/include/ecpg_config.h],
2585                   [echo >src/interfaces/ecpg/include/stamp-h])
2587 AC_OUTPUT