1 dnl Process this file with autoconf to produce a configure script.
4 dnl Developers, please strive to achieve this order:
6 dnl 0. Initialization and options processing
12 dnl 6. Compiler characteristics
13 dnl 7. Functions, global variables
14 dnl 8. System services
16 dnl Read the Autoconf manual for details.
18 m4_pattern_forbid(^PGAC_)dnl to catch undefined macros
20 AC_INIT([PostgreSQL], [14devel], [pgsql-bugs@lists.postgresql.org], [], [https://www.postgresql.org/])
22 m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.69], [], [m4_fatal([Autoconf version 2.69 is required.
23 Untested combinations of 'autoconf' and PostgreSQL versions are not
24 recommended. You can remove the check from 'configure.ac' but it is then
25 your responsibility whether the result works or not.])])
26 AC_COPYRIGHT([Copyright (c) 1996-2021, PostgreSQL Global Development Group])
27 AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c])
28 AC_CONFIG_AUX_DIR(config)
29 AC_PREFIX_DEFAULT(/usr/local/pgsql)
30 AC_DEFINE_UNQUOTED(CONFIGURE_ARGS, ["$ac_configure_args"], [Saved arguments from configure])
32 [PG_MAJORVERSION=`expr "$PACKAGE_VERSION" : '\([0-9][0-9]*\)'`]
33 [PG_MINORVERSION=`expr "$PACKAGE_VERSION" : '.*\.\([0-9][0-9]*\)'`]
34 test -n "$PG_MINORVERSION" || PG_MINORVERSION=0
35 AC_SUBST(PG_MAJORVERSION)
36 AC_DEFINE_UNQUOTED(PG_MAJORVERSION, "$PG_MAJORVERSION", [PostgreSQL major version as a string])
37 AC_DEFINE_UNQUOTED(PG_MAJORVERSION_NUM, $PG_MAJORVERSION, [PostgreSQL major version number])
38 AC_DEFINE_UNQUOTED(PG_MINORVERSION_NUM, $PG_MINORVERSION, [PostgreSQL minor version number])
40 PGAC_ARG_REQ(with, extra-version, [STRING], [append STRING to version],
41 [PG_VERSION="$PACKAGE_VERSION$withval"],
42 [PG_VERSION="$PACKAGE_VERSION"])
43 AC_DEFINE_UNQUOTED(PG_VERSION, "$PG_VERSION", [PostgreSQL version as a string])
48 AC_MSG_CHECKING([which template to use])
50 PGAC_ARG_REQ(with, template, [NAME], [override operating system template],
53 list) echo; ls "$srcdir/src/template"; exit;;
54 *) if test -f "$srcdir/src/template/$with_template" ; then
57 AC_MSG_ERROR(['$withval' is not a valid template name. Use 'list' for a list.])
62 # --with-template not given
66 cygwin*|msys*) template=cygwin ;;
67 darwin*) template=darwin ;;
68 dragonfly*) template=netbsd ;;
69 freebsd*) template=freebsd ;;
70 hpux*) template=hpux ;;
71 linux*|gnu*|k*bsd*-gnu)
73 mingw*) template=win32 ;;
74 netbsd*) template=netbsd ;;
75 openbsd*) template=openbsd ;;
76 solaris*) template=solaris ;;
79 if test x"$template" = x"" ; then
81 *******************************************************************
82 PostgreSQL has apparently not been ported to your platform yet.
83 To try a manual configuration, look into the src/template directory
84 for a similar platform and use the '--with-template=' option.
86 Please also contact <]AC_PACKAGE_BUGREPORT[> to see about
87 rectifying this. Include the above 'checking host system type...'
89 *******************************************************************
95 AC_MSG_RESULT([$template])
100 # Initialize default assumption that we do not need separate assembly code
101 # for TAS (test-and-set). This can be overridden by the template file
102 # when it's executed.
109 ## Command line options
113 # Add non-standard directories to the include path
115 PGAC_ARG_REQ(with, includes, [DIRS], [look for additional header files in DIRS])
119 # Add non-standard directories to the library search path
121 PGAC_ARG_REQ(with, libraries, [DIRS], [look for additional libraries in DIRS],
122 [LIBRARY_DIRS=$withval])
124 PGAC_ARG_REQ(with, libs, [DIRS], [alternative spelling of --with-libraries],
125 [LIBRARY_DIRS=$withval])
129 # 64-bit integer date/time storage is now the only option, but to avoid
130 # unnecessary breakage of build scripts, continue to accept an explicit
131 # "--enable-integer-datetimes" switch.
133 PGAC_ARG_BOOL(enable, integer-datetimes, yes, [obsolete option, no longer supported],
135 [AC_MSG_ERROR([--disable-integer-datetimes is no longer supported])])
141 AC_MSG_CHECKING([whether NLS is wanted])
142 PGAC_ARG_OPTARG(enable, nls,
143 [LANGUAGES], [enable Native Language Support],
145 [WANTED_LANGUAGES=$enableval],
146 [AC_DEFINE(ENABLE_NLS, 1,
147 [Define to 1 if you want National Language Support. (--enable-nls)])])
148 AC_MSG_RESULT([$enable_nls])
150 AC_SUBST(WANTED_LANGUAGES)
153 # Default port number (--with-pgport), default 5432
155 AC_MSG_CHECKING([for default port number])
156 PGAC_ARG_REQ(with, pgport, [PORTNUM], [set default port number [5432]],
157 [default_port=$withval],
159 AC_MSG_RESULT([$default_port])
160 # Need both of these because some places want an integer and some a string
161 AC_DEFINE_UNQUOTED(DEF_PGPORT, ${default_port},
162 [Define to the default TCP port number on which the server listens and
163 to which clients will try to connect. This can be overridden at run-time,
164 but it's convenient if your clients have the right default compiled in.
165 (--with-pgport=PORTNUM)])
166 AC_DEFINE_UNQUOTED(DEF_PGPORT_STR, "${default_port}",
167 [Define to the default TCP port number as a string constant.])
168 AC_SUBST(default_port)
170 # It's worth validating port; you can get very confusing errors otherwise
171 if test x"$default_port" = x""; then
172 AC_MSG_ERROR([invalid --with-pgport specification: empty string])
173 elif test ! x`echo "$default_port" | sed -e 's/[[0-9]]*//'` = x""; then
174 AC_MSG_ERROR([invalid --with-pgport specification: must be a number])
175 elif test ! x`echo "$default_port" | sed -e 's/^0.//'` = x"$default_port"; then
176 AC_MSG_ERROR([invalid --with-pgport specification: must not have leading 0])
177 elif test "$default_port" -lt "1" -o "$default_port" -gt "65535"; then
178 AC_MSG_ERROR([invalid --with-pgport specification: must be between 1 and 65535])
182 # '-rpath'-like feature can be disabled
184 PGAC_ARG_BOOL(enable, rpath, yes,
185 [do not embed shared library search path in executables])
186 AC_SUBST(enable_rpath)
191 PGAC_ARG_BOOL(enable, spinlocks, yes,
192 [do not use spinlocks])
197 PGAC_ARG_BOOL(enable, atomics, yes,
198 [do not use atomic operations])
201 # --enable-debug adds -g to compiler flags
203 PGAC_ARG_BOOL(enable, debug, no,
204 [build with debugging symbols (-g)])
205 AC_SUBST(enable_debug)
208 # --enable-profiling enables gcc profiling
210 PGAC_ARG_BOOL(enable, profiling, no,
211 [build with profiling enabled ])
214 # --enable-coverage enables generation of code coverage metrics with gcov
216 PGAC_ARG_BOOL(enable, coverage, no,
217 [build with coverage testing instrumentation],
218 [PGAC_PATH_PROGS(GCOV, gcov)
219 if test -z "$GCOV"; then
220 AC_MSG_ERROR([gcov not found])
222 PGAC_PATH_PROGS(LCOV, lcov)
223 if test -z "$LCOV"; then
224 AC_MSG_ERROR([lcov not found])
226 PGAC_PATH_PROGS(GENHTML, genhtml)
227 if test -z "$GENHTML"; then
228 AC_MSG_ERROR([genhtml not found])
230 AC_SUBST(enable_coverage)
235 PGAC_ARG_BOOL(enable, dtrace, no,
236 [build with DTrace support],
237 [PGAC_PATH_PROGS(DTRACE, dtrace)
238 if test -z "$DTRACE"; then
239 AC_MSG_ERROR([dtrace not found])
241 AC_SUBST(DTRACEFLAGS)])
242 AC_SUBST(enable_dtrace)
247 PGAC_ARG_BOOL(enable, tap-tests, no,
248 [enable TAP tests (requires Perl and IPC::Run)])
249 AC_SUBST(enable_tap_tests)
254 AC_MSG_CHECKING([for block size])
255 PGAC_ARG_REQ(with, blocksize, [BLOCKSIZE], [set table block size in kB [8]],
256 [blocksize=$withval],
265 *) AC_MSG_ERROR([Invalid block size. Allowed values are 1,2,4,8,16,32.])
267 AC_MSG_RESULT([${blocksize}kB])
269 AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
270 Size of a disk block --- this also limits the size of a tuple. You
271 can set it bigger if you need bigger tuples (although TOAST should
272 reduce the need to have large tuples, since fields can be spread
273 across multiple tuples).
275 BLCKSZ must be a power of 2. The maximum possible value of BLCKSZ
276 is currently 2^15 (32768). This is determined by the 15-bit widths
277 of the lp_off and lp_len fields in ItemIdData (see
278 include/storage/itemid.h).
280 Changing BLCKSZ requires an initdb.
284 # Relation segment size
286 AC_MSG_CHECKING([for segment size])
287 PGAC_ARG_REQ(with, segsize, [SEGSIZE], [set table segment size in GB [1]],
290 # this expression is set up to avoid unnecessary integer overflow
291 # blocksize is already guaranteed to be a factor of 1024
292 RELSEG_SIZE=`expr '(' 1024 / ${blocksize} ')' '*' ${segsize} '*' 1024`
293 test $? -eq 0 || exit 1
294 AC_MSG_RESULT([${segsize}GB])
296 AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
297 RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
298 Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
299 relations bigger than that are divided into multiple files.
301 RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
302 This is often 2 GB or 4GB in a 32-bit operating system, unless you
303 have large file support enabled. By default, we make the limit 1 GB
304 to avoid any possible integer-overflow problems within the OS.
305 A limit smaller than necessary only means we divide a large
306 relation into more chunks than necessary, so it seems best to err
307 in the direction of a small limit.
309 A power-of-2 value is recommended to save a few cycles in md.c,
310 but is not absolutely required.
312 Changing RELSEG_SIZE requires an initdb.
318 AC_MSG_CHECKING([for WAL block size])
319 PGAC_ARG_REQ(with, wal-blocksize, [BLOCKSIZE], [set WAL block size in kB [8]],
320 [wal_blocksize=$withval],
322 case ${wal_blocksize} in
323 1) XLOG_BLCKSZ=1024;;
324 2) XLOG_BLCKSZ=2048;;
325 4) XLOG_BLCKSZ=4096;;
326 8) XLOG_BLCKSZ=8192;;
327 16) XLOG_BLCKSZ=16384;;
328 32) XLOG_BLCKSZ=32768;;
329 64) XLOG_BLCKSZ=65536;;
330 *) AC_MSG_ERROR([Invalid WAL block size. Allowed values are 1,2,4,8,16,32,64.])
332 AC_MSG_RESULT([${wal_blocksize}kB])
334 AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
335 Size of a WAL file block. This need have no particular relation to BLCKSZ.
336 XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
337 XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
338 buffers, else direct I/O may fail.
340 Changing XLOG_BLCKSZ requires an initdb.
347 # For historical reasons you can also use --with-CC to specify the C compiler
348 # to use, although the standard way to do this is to set the CC environment
350 PGAC_ARG_REQ(with, CC, [CMD], [set compiler (deprecated)], [CC=$with_CC])
353 aix) pgac_cc_list="gcc xlc"; pgac_cxx_list="g++ xlC";;
354 *) pgac_cc_list="gcc cc"; pgac_cxx_list="g++ c++";;
357 AC_PROG_CC([$pgac_cc_list])
360 # Error out if the compiler does not support C99, as the codebase
362 if test "$ac_cv_prog_cc_c99" = no; then
363 AC_MSG_ERROR([C compiler "$CC" does not support C99])
366 AC_PROG_CXX([$pgac_cxx_list])
368 # Check if it's Intel's compiler, which (usually) pretends to be gcc,
369 # but has idiosyncrasies of its own. We assume icc will define
370 # __INTEL_COMPILER regardless of CFLAGS.
371 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __INTEL_COMPILER
373 @%:@endif])], [ICC=yes], [ICC=no])
375 # Check if it's Sun Studio compiler. We assume that
376 # __SUNPRO_C will be defined for Sun Studio compilers
377 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __SUNPRO_C
379 @%:@endif])], [SUN_STUDIO_CC=yes], [SUN_STUDIO_CC=no])
381 AC_SUBST(SUN_STUDIO_CC)
387 # Checked early because subsequent tests depend on it.
388 PGAC_ARG_BOOL(with, llvm, no, [build with LLVM based JIT support],
389 [AC_DEFINE([USE_LLVM], 1, [Define to 1 to build with LLVM based JIT support. (--with-llvm)])])
391 dnl must use AS_IF here, else AC_REQUIRES inside PGAC_LLVM_SUPPORT malfunctions
392 AS_IF([test "$with_llvm" = yes], [
403 . "$srcdir/src/template/$template" || exit
405 # C[XX]FLAGS are selected so:
406 # If the user specifies something in the environment, that is used.
407 # else: If the template file set something, that is used.
408 # else: If coverage was enabled, don't set anything.
409 # else: If the compiler is GCC, then we use -O2.
410 # else: If the compiler is something else, then we use -O, unless debugging.
412 if test "$ac_env_CFLAGS_set" = set; then
413 CFLAGS=$ac_env_CFLAGS_value
414 elif test "${CFLAGS+set}" = set; then
415 : # (keep what template set)
416 elif test "$enable_coverage" = yes; then
417 : # no optimization by default
418 elif test "$GCC" = yes; then
421 # if the user selected debug mode, don't use -O
422 if test "$enable_debug" != yes; then
427 if test "$ac_env_CXXFLAGS_set" = set; then
428 CXXFLAGS=$ac_env_CXXFLAGS_value
429 elif test "${CXXFLAGS+set}" = set; then
430 : # (keep what template set)
431 elif test "$enable_coverage" = yes; then
432 : # no optimization by default
433 elif test "$GCC" = yes; then
436 # if the user selected debug mode, don't use -O
437 if test "$enable_debug" != yes; then
442 # When generating bitcode (for inlining) we always want to use -O2
443 # even when --enable-debug is specified. The bitcode it's not going to
444 # be used for line-by-line debugging, and JIT inlining doesn't work
445 # without at least -O1 (otherwise clang will emit 'noinline'
446 # attributes everywhere), which is bad for testing. Still allow the
447 # environment to override if done explicitly.
448 if test "$ac_env_BITCODE_CFLAGS_set" = set; then
449 BITCODE_CFLAGS=$ac_env_BITCODE_CFLAGS_value
451 BITCODE_CFLAGS="-O2 $BITCODE_CFLAGS"
453 if test "$ac_env_BITCODE_CXXFLAGS_set" = set; then
454 BITCODE_CXXFLAGS=$ac_env_BITCODE_CXXFLAGS_value
456 BITCODE_CXXFLAGS="-O2 $BITCODE_CXXFLAGS"
459 # C[XX]FLAGS we determined above will be added back at the end
462 user_CXXFLAGS=$CXXFLAGS
464 user_BITCODE_CFLAGS=$BITCODE_CFLAGS
466 user_BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS
469 # set CFLAGS_UNROLL_LOOPS and CFLAGS_VECTORIZE from the environment, if present
470 if test "$ac_env_CFLAGS_UNROLL_LOOPS_set" = set; then
471 CFLAGS_UNROLL_LOOPS=$ac_env_CFLAGS_UNROLL_LOOPS_value
473 if test "$ac_env_CFLAGS_VECTORIZE_set" = set; then
474 CFLAGS_VECTORIZE=$ac_env_CFLAGS_VECTORIZE_value
477 # Some versions of GCC support some additional useful warning flags.
478 # Check whether they are supported, and add them to CFLAGS if so.
479 # ICC pretends to be GCC but it's lying; it doesn't support these flags,
480 # but has its own. Also check other compiler-specific flags here.
482 if test "$GCC" = yes -a "$ICC" = no; then
483 CFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith"
484 CXXFLAGS="-Wall -Wpointer-arith"
485 # These work in some but not all gcc versions
487 PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
488 # -Wdeclaration-after-statement isn't applicable for C++. Specific C files
489 # disable it, so AC_SUBST the negative form.
490 PERMIT_DECLARATION_AFTER_STATEMENT=
491 if test x"$save_CFLAGS" != x"$CFLAGS"; then
492 PERMIT_DECLARATION_AFTER_STATEMENT=-Wno-declaration-after-statement
494 AC_SUBST(PERMIT_DECLARATION_AFTER_STATEMENT)
495 # Really don't want VLAs to be used in our dialect of C
496 PGAC_PROG_CC_CFLAGS_OPT([-Werror=vla])
497 # -Wvla is not applicable for C++
498 PGAC_PROG_CC_CFLAGS_OPT([-Wendif-labels])
499 PGAC_PROG_CXX_CFLAGS_OPT([-Wendif-labels])
500 PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-format-attribute])
501 PGAC_PROG_CXX_CFLAGS_OPT([-Wmissing-format-attribute])
502 PGAC_PROG_CC_CFLAGS_OPT([-Wimplicit-fallthrough=3])
503 PGAC_PROG_CXX_CFLAGS_OPT([-Wimplicit-fallthrough=3])
504 PGAC_PROG_CC_CFLAGS_OPT([-Wcast-function-type])
505 PGAC_PROG_CXX_CFLAGS_OPT([-Wcast-function-type])
506 # This was included in -Wall/-Wformat in older GCC versions
507 PGAC_PROG_CC_CFLAGS_OPT([-Wformat-security])
508 PGAC_PROG_CXX_CFLAGS_OPT([-Wformat-security])
509 # Disable strict-aliasing rules; needed for gcc 3.3+
510 PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
511 PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
512 # Disable optimizations that assume no overflow; needed for gcc 4.3+
513 PGAC_PROG_CC_CFLAGS_OPT([-fwrapv])
514 PGAC_PROG_CXX_CFLAGS_OPT([-fwrapv])
515 # Disable FP optimizations that cause various errors on gcc 4.5+ or maybe 4.6+
516 PGAC_PROG_CC_CFLAGS_OPT([-fexcess-precision=standard])
517 PGAC_PROG_CXX_CFLAGS_OPT([-fexcess-precision=standard])
518 # Optimization flags for specific files that benefit from loop unrolling
519 PGAC_PROG_CC_VAR_OPT(CFLAGS_UNROLL_LOOPS, [-funroll-loops])
520 # Optimization flags for specific files that benefit from vectorization
521 PGAC_PROG_CC_VAR_OPT(CFLAGS_VECTORIZE, [-ftree-vectorize])
522 # We want to suppress clang's unhelpful unused-command-line-argument warnings
523 # but gcc won't complain about unrecognized -Wno-foo switches, so we have to
524 # test for the positive form and if that works, add the negative form
526 PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wunused-command-line-argument])
527 if test -n "$NOT_THE_CFLAGS"; then
528 CFLAGS="$CFLAGS -Wno-unused-command-line-argument"
530 # Similarly disable useless truncation warnings from gcc 8+
532 PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wformat-truncation])
533 if test -n "$NOT_THE_CFLAGS"; then
534 CFLAGS="$CFLAGS -Wno-format-truncation"
537 PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wstringop-truncation])
538 if test -n "$NOT_THE_CFLAGS"; then
539 CFLAGS="$CFLAGS -Wno-stringop-truncation"
541 elif test "$ICC" = yes; then
542 # Intel's compiler has a bug/misoptimization in checking for
543 # division by NAN (NaN == 0), -mp1 fixes it, so add it to the CFLAGS.
544 PGAC_PROG_CC_CFLAGS_OPT([-mp1])
545 PGAC_PROG_CXX_CFLAGS_OPT([-mp1])
546 # Make sure strict aliasing is off (though this is said to be the default)
547 PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
548 PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
549 elif test "$PORTNAME" = "aix"; then
550 # AIX's xlc has to have strict aliasing turned off too
551 PGAC_PROG_CC_CFLAGS_OPT([-qnoansialias])
552 PGAC_PROG_CXX_CFLAGS_OPT([-qnoansialias])
553 PGAC_PROG_CC_CFLAGS_OPT([-qlonglong])
554 PGAC_PROG_CXX_CFLAGS_OPT([-qlonglong])
555 elif test "$PORTNAME" = "hpux"; then
556 # On some versions of HP-UX, libm functions do not set errno by default.
557 # Fix that by using +Olibmerrno if the compiler recognizes it.
558 PGAC_PROG_CC_CFLAGS_OPT([+Olibmerrno])
559 PGAC_PROG_CXX_CFLAGS_OPT([+Olibmerrno])
562 AC_SUBST(CFLAGS_UNROLL_LOOPS)
563 AC_SUBST(CFLAGS_VECTORIZE)
565 # Determine flags used to emit bitcode for JIT inlining. Need to test
566 # for behaviour changing compiler flags, to keep compatibility with
567 # compiler used for normal postgres code.
568 if test "$with_llvm" = yes ; then
569 CLANGXX="$CLANG -xc++"
571 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fno-strict-aliasing])
572 PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fno-strict-aliasing])
573 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fwrapv])
574 PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fwrapv])
575 PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fexcess-precision=standard])
576 PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fexcess-precision=standard])
579 # supply -g if --enable-debug
580 if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
584 if test "$enable_debug" = yes && test "$ac_cv_prog_cxx_g" = yes; then
585 CXXFLAGS="$CXXFLAGS -g"
588 # enable code coverage if --enable-coverage
589 if test "$enable_coverage" = yes; then
590 if test "$GCC" = yes; then
591 CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
592 CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
594 AC_MSG_ERROR([--enable-coverage is supported only when using GCC])
598 # enable profiling if --enable-profiling
599 if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
600 if test "$GCC" = yes; then
601 AC_DEFINE([PROFILE_PID_DIR], 1,
602 [Define to 1 to allow profiling output to be saved separately for each process.])
603 CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
604 CXXFLAGS="$CXXFLAGS -pg $PLATFORM_PROFILE_FLAGS"
606 AC_MSG_ERROR([--enable-profiling is supported only when using GCC])
610 # We already have this in Makefile.win32, but configure needs it too
611 if test "$PORTNAME" = "win32"; then
612 CPPFLAGS="$CPPFLAGS -I$srcdir/src/include/port/win32"
615 # Now that we're done automatically adding stuff to C[XX]FLAGS, put back the
616 # user-specified flags (if any) at the end. This lets users override
617 # the automatic additions.
618 CFLAGS="$CFLAGS $user_CFLAGS"
619 CXXFLAGS="$CXXFLAGS $user_CXXFLAGS"
620 BITCODE_CFLAGS="$BITCODE_CFLAGS $user_BITCODE_CFLAGS"
621 BITCODE_CXXFLAGS="$BITCODE_CXXFLAGS $user_BITCODE_CXXFLAGS"
623 AC_SUBST(BITCODE_CFLAGS)
624 AC_SUBST(BITCODE_CXXFLAGS)
626 # The template file must set up CFLAGS_SL; we don't support user override
629 # Check if the compiler still works with the final flag settings
630 # (note, we're not checking that for CXX, which is optional)
631 AC_MSG_CHECKING([whether the C compiler still works])
632 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
633 [AC_MSG_RESULT(yes)],
635 AC_MSG_ERROR([cannot proceed])])
637 # Defend against gcc -ffast-math
638 if test "$GCC" = yes; then
639 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifdef __FAST_MATH__
641 @%:@endif])], [], [AC_MSG_ERROR([do not put -ffast-math in CFLAGS])])
644 # Defend against clang being used on x86-32 without SSE2 enabled. As current
645 # versions of clang do not understand -fexcess-precision=standard, the use of
646 # x87 floating point operations leads to problems like isinf possibly returning
647 # false for a value that is infinite when converted from the 80bit register to
648 # the 8byte memory representation.
650 # Only perform the test if the compiler doesn't understand
651 # -fexcess-precision=standard, that way a potentially fixed compiler will work
653 if test "$pgac_cv_prog_CC_cflags__fexcess_precision_standard" = no; then
654 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
655 @%:@if defined(__clang__) && defined(__i386__) && !defined(__SSE2_MATH__)
659 [AC_MSG_ERROR([Compiling PostgreSQL with clang, on 32bit x86, requires SSE2 support. Use -msse2 or use gcc.])])
667 # Set up TAS assembly code if needed; the template file has now had its
668 # chance to request this.
670 AC_CONFIG_LINKS([src/backend/port/tas.s:src/backend/port/tas/${tas_file}])
672 if test "$need_tas" = yes ; then
680 # Set up pkg_config in case we need it below
685 # Automatic dependency tracking
687 PGAC_ARG_BOOL(enable, depend, no, [turn on automatic dependency tracking],
693 # Enable assert checks
695 PGAC_ARG_BOOL(enable, cassert, no, [enable assertion checks (for debugging)],
696 [AC_DEFINE([USE_ASSERT_CHECKING], 1,
697 [Define to 1 to build with assertion checks. (--enable-cassert)])])
701 # Include directories
704 IFS="${IFS}${PATH_SEPARATOR}"
705 # SRCH_INC comes from the template file
706 for dir in $with_includes $SRCH_INC; do
707 if test -d "$dir"; then
708 INCLUDES="$INCLUDES -I$dir"
710 AC_MSG_WARN([*** Include directory $dir does not exist.])
718 # Library directories
721 IFS="${IFS}${PATH_SEPARATOR}"
722 # LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
723 for dir in $LIBRARY_DIRS $SRCH_LIB; do
724 if test -d "$dir"; then
725 LIBDIRS="$LIBDIRS -L$dir"
727 AC_MSG_WARN([*** Library directory $dir does not exist.])
733 # Enable thread-safe client libraries
735 AC_MSG_CHECKING([allow thread-safe client libraries])
736 PGAC_ARG_BOOL(enable, thread-safety, yes, [disable thread-safety in client libraries])
737 if test "$enable_thread_safety" = yes; then
738 AC_DEFINE([ENABLE_THREAD_SAFETY], 1,
739 [Define to 1 to build client libraries as thread-safe code. (--enable-thread-safety)])
741 AC_MSG_RESULT([$enable_thread_safety])
742 AC_SUBST(enable_thread_safety)
747 AC_MSG_CHECKING([whether to build with ICU support])
748 PGAC_ARG_BOOL(with, icu, no, [build with ICU support],
749 [AC_DEFINE([USE_ICU], 1, [Define to build with ICU support. (--with-icu)])])
750 AC_MSG_RESULT([$with_icu])
753 if test "$with_icu" = yes; then
754 PKG_CHECK_MODULES(ICU, icu-uc icu-i18n)
758 # Optionally build Tcl modules (PL/Tcl)
760 AC_MSG_CHECKING([whether to build with Tcl])
761 PGAC_ARG_BOOL(with, tcl, no, [build Tcl modules (PL/Tcl)])
762 AC_MSG_RESULT([$with_tcl])
765 # We see if the path to the Tcl/Tk configuration scripts is specified.
766 # This will override the use of tclsh to find the paths to search.
768 PGAC_ARG_REQ(with, tclconfig, [DIR], [tclConfig.sh is in DIR])
771 # Optionally build Perl modules (PL/Perl)
773 AC_MSG_CHECKING([whether to build Perl modules])
774 PGAC_ARG_BOOL(with, perl, no, [build Perl modules (PL/Perl)])
775 AC_MSG_RESULT([$with_perl])
779 # Optionally build Python modules (PL/Python)
781 AC_MSG_CHECKING([whether to build Python modules])
782 PGAC_ARG_BOOL(with, python, no, [build Python modules (PL/Python)])
783 AC_MSG_RESULT([$with_python])
784 AC_SUBST(with_python)
789 AC_MSG_CHECKING([whether to build with GSSAPI support])
790 PGAC_ARG_BOOL(with, gssapi, no, [build with GSSAPI support],
792 AC_DEFINE(ENABLE_GSS, 1, [Define to build with GSSAPI support. (--with-gssapi)])
793 krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
795 AC_MSG_RESULT([$with_gssapi])
796 AC_SUBST(with_gssapi)
803 # Kerberos configuration parameters
805 PGAC_ARG_REQ(with, krb-srvnam,
806 [NAME], [default service principal name in Kerberos (GSSAPI) [postgres]],
808 [with_krb_srvnam="postgres"])
809 AC_SUBST(with_krb_srvnam)
810 AC_DEFINE_UNQUOTED([PG_KRB_SRVNAM], ["$with_krb_srvnam"],
811 [Define to the name of the default PostgreSQL service principal in Kerberos (GSSAPI). (--with-krb-srvnam=NAME)])
817 AC_MSG_CHECKING([whether to build with PAM support])
818 PGAC_ARG_BOOL(with, pam, no,
819 [build with PAM support],
820 [AC_DEFINE([USE_PAM], 1, [Define to 1 to build with PAM support. (--with-pam)])])
821 AC_MSG_RESULT([$with_pam])
827 AC_MSG_CHECKING([whether to build with BSD Authentication support])
828 PGAC_ARG_BOOL(with, bsd-auth, no,
829 [build with BSD Authentication support],
830 [AC_DEFINE([USE_BSD_AUTH], 1, [Define to 1 to build with BSD Authentication support. (--with-bsd-auth)])])
831 AC_MSG_RESULT([$with_bsd_auth])
837 AC_MSG_CHECKING([whether to build with LDAP support])
838 PGAC_ARG_BOOL(with, ldap, no,
839 [build with LDAP support],
840 [AC_DEFINE([USE_LDAP], 1, [Define to 1 to build with LDAP support. (--with-ldap)])])
841 AC_MSG_RESULT([$with_ldap])
848 AC_MSG_CHECKING([whether to build with Bonjour support])
849 PGAC_ARG_BOOL(with, bonjour, no,
850 [build with Bonjour support],
851 [AC_DEFINE([USE_BONJOUR], 1, [Define to 1 to build with Bonjour support. (--with-bonjour)])])
852 AC_MSG_RESULT([$with_bonjour])
858 AC_MSG_CHECKING([whether to build with SELinux support])
859 PGAC_ARG_BOOL(with, selinux, no, [build with SELinux support])
860 AC_SUBST(with_selinux)
861 AC_MSG_RESULT([$with_selinux])
866 AC_MSG_CHECKING([whether to build with systemd support])
867 PGAC_ARG_BOOL(with, systemd, no, [build with systemd support],
868 [AC_DEFINE([USE_SYSTEMD], 1, [Define to build with systemd support. (--with-systemd)])])
869 AC_SUBST(with_systemd)
870 AC_MSG_RESULT([$with_systemd])
875 PGAC_ARG_BOOL(with, readline, yes,
876 [do not use GNU Readline nor BSD Libedit for editing])
877 # readline on MinGW has problems with backslashes in psql and other bugs.
878 # This is particularly a problem with non-US code pages.
879 # Therefore disable its use until we understand the cause. 2004-07-20
880 if test "$PORTNAME" = "win32"; then
881 if test "$with_readline" = yes; then
882 AC_MSG_WARN([*** Readline does not work on MinGW --- disabling])
886 AC_SUBST(with_readline)
892 PGAC_ARG_BOOL(with, libedit-preferred, no,
893 [prefer BSD Libedit over GNU Readline])
899 # There are at least three UUID libraries in common use: the FreeBSD/NetBSD
900 # library, the e2fsprogs libuuid (now part of util-linux-ng), and the OSSP
901 # UUID library. More than one of these might be present on a given platform,
902 # so we make the user say which one she wants.
904 PGAC_ARG_REQ(with, uuid, [LIB], [build contrib/uuid-ossp using LIB (bsd,e2fs,ossp)])
905 if test x"$with_uuid" = x"" ; then
908 PGAC_ARG_BOOL(with, ossp-uuid, no, [obsolete spelling of --with-uuid=ossp])
909 if test "$with_ossp_uuid" = yes ; then
913 if test "$with_uuid" != no ; then
914 if test "$with_uuid" = bsd ; then
915 AC_DEFINE([HAVE_UUID_BSD], 1, [Define to 1 if you have BSD UUID support.])
916 elif test "$with_uuid" = e2fs ; then
917 AC_DEFINE([HAVE_UUID_E2FS], 1, [Define to 1 if you have E2FS UUID support.])
918 elif test "$with_uuid" = ossp ; then
919 AC_DEFINE([HAVE_UUID_OSSP], 1, [Define to 1 if you have OSSP UUID support.])
921 AC_MSG_ERROR([--with-uuid must specify one of bsd, e2fs, or ossp])
930 AC_MSG_CHECKING([whether to build with XML support])
931 PGAC_ARG_BOOL(with, libxml, no, [build with XML support],
932 [AC_DEFINE([USE_LIBXML], 1, [Define to 1 to build with XML support. (--with-libxml)])])
933 AC_MSG_RESULT([$with_libxml])
934 AC_SUBST(with_libxml)
936 if test "$with_libxml" = yes ; then
937 # Check pkg-config, then xml2-config. But for backwards compatibility,
938 # setting XML2_CONFIG overrides pkg-config.
939 AC_ARG_VAR(XML2_CONFIG, [path to xml2-config utility])dnl
940 have_libxml2_pkg_config=no
941 if test -z "$XML2_CONFIG" -a -n "$PKG_CONFIG"; then
942 PKG_CHECK_MODULES(XML2, [libxml-2.0 >= 2.6.23],
943 [have_libxml2_pkg_config=yes], [# do nothing])
945 if test "$have_libxml2_pkg_config" = no ; then
946 PGAC_PATH_PROGS(XML2_CONFIG, xml2-config)
947 if test -n "$XML2_CONFIG"; then
948 XML2_CFLAGS=`$XML2_CONFIG --cflags`
949 XML2_LIBS=`$XML2_CONFIG --libs`
952 # Note the user could also set XML2_CFLAGS/XML2_LIBS directly
953 for pgac_option in $XML2_CFLAGS; do
955 -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
958 for pgac_option in $XML2_LIBS; do
960 -L*) LDFLAGS="$LDFLAGS $pgac_option";;
969 PGAC_ARG_BOOL(with, libxslt, no, [use XSLT support when building contrib/xml2],
970 [AC_DEFINE([USE_LIBXSLT], 1, [Define to 1 to use XSLT support when building contrib/xml2. (--with-libxslt)])])
973 AC_SUBST(with_libxslt)
978 PGAC_ARG_REQ(with, system-tzdata,
979 [DIR], [use system time zone data in DIR])
980 AC_SUBST(with_system_tzdata)
985 PGAC_ARG_BOOL(with, zlib, yes,
992 AC_MSG_CHECKING([whether to build with LZ4 support])
993 PGAC_ARG_BOOL(with, lz4, no, [build with LZ4 support],
994 [AC_DEFINE([USE_LZ4], 1, [Define to 1 to build with LZ4 support. (--with-lz4)])])
995 AC_MSG_RESULT([$with_lz4])
998 if test "$with_lz4" = yes; then
999 PKG_CHECK_MODULES(LZ4, liblz4)
1000 # We only care about -I, -D, and -L switches;
1001 # note that -llz4 will be added by AC_CHECK_LIB below.
1002 for pgac_option in $LZ4_CFLAGS; do
1003 case $pgac_option in
1004 -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
1007 for pgac_option in $LZ4_LIBS; do
1008 case $pgac_option in
1009 -L*) LDFLAGS="$LDFLAGS $pgac_option";;
1018 CPPFLAGS="$CPPFLAGS $INCLUDES"
1019 LDFLAGS="$LDFLAGS $LIBDIRS"
1021 AC_ARG_VAR(LDFLAGS_EX, [extra linker flags for linking executables only])
1022 AC_ARG_VAR(LDFLAGS_SL, [extra linker flags for linking shared libraries only])
1026 AC_SUBST(with_gnu_ld)
1029 AC_CHECK_TOOL(AR, ar, ar)
1030 if test "$PORTNAME" = "win32"; then
1031 AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool)
1032 AC_CHECK_TOOL(DLLWRAP, dllwrap, dllwrap)
1033 AC_CHECK_TOOL(WINDRES, windres, windres)
1037 # When Autoconf chooses install-sh as install program it tries to generate
1038 # a relative path to it in each makefile where it substitutes it. This clashes
1039 # with our Makefile.global concept. This workaround helps.
1041 *install-sh*) install_bin='';;
1042 *) install_bin=$INSTALL;;
1044 AC_SUBST(install_bin)
1046 PGAC_PATH_PROGS(TAR, tar)
1049 # When Autoconf chooses install-sh as mkdir -p program it tries to generate
1050 # a relative path to it in each makefile where it substitutes it. This clashes
1051 # with our Makefile.global concept. This workaround helps.
1053 *install-sh*) MKDIR_P='\${SHELL} \${top_srcdir}/config/install-sh -c -d';;
1060 if test "$with_perl" = yes; then
1061 if test -z "$PERL"; then
1062 AC_MSG_ERROR([Perl not found])
1064 PGAC_CHECK_PERL_CONFIGS([archlibexp,privlibexp,useshrplib])
1065 if test "$perl_useshrplib" != yes && test "$perl_useshrplib" != true; then
1066 AC_MSG_ERROR([cannot build PL/Perl because libperl is not a shared library
1067 You might have to rebuild your Perl installation. Refer to the
1068 documentation for details. Use --without-perl to disable building
1071 # On most platforms, archlibexp is also where the Perl include files live ...
1072 perl_includespec="-I$perl_archlibexp/CORE"
1073 # ... but on newer macOS versions, we must use -iwithsysroot to look
1075 if test \! -f "$perl_archlibexp/CORE/perl.h" ; then
1076 if test -f "$PG_SYSROOT$perl_archlibexp/CORE/perl.h" ; then
1077 perl_includespec="-iwithsysroot $perl_archlibexp/CORE"
1080 AC_SUBST(perl_includespec)dnl
1081 PGAC_CHECK_PERL_EMBED_CCFLAGS
1082 PGAC_CHECK_PERL_EMBED_LDFLAGS
1085 if test "$with_python" = yes; then
1087 PGAC_CHECK_PYTHON_EMBED_SETUP
1090 if test "$cross_compiling" = yes && test -z "$with_system_tzdata"; then
1091 PGAC_PATH_PROGS(ZIC, zic)
1092 if test -z "$ZIC"; then
1094 When cross-compiling, either use the option --with-system-tzdata to use
1095 existing time-zone data, or set the environment variable ZIC to a zic
1096 program to use during the build.])
1103 # For each platform, we need to know about any special compile and link
1104 # libraries, and whether the normal C function names are thread-safe.
1105 # See the comment at the top of src/port/thread.c for more information.
1106 # WIN32 doesn't need the pthread tests; it always uses threads
1108 # These tests are run before the library-tests, because linking with the
1109 # other libraries can pull in the pthread functions as a side-effect. We
1110 # want to use the -pthread or similar flags directly, and not rely on
1111 # the side-effects of linking with some other library.
1113 dnl note: We have to use AS_IF here rather than plain if. The AC_CHECK_HEADER
1114 dnl invocation below is the first one in the script, and autoconf generates
1115 dnl additional code for that, which must not be inside the if-block. AS_IF
1116 dnl knows how to do that.
1117 AS_IF([test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"],
1119 AX_PTHREAD # set thread flags
1121 # Some platforms use these, so just define them. They can't hurt if they
1122 # are not supported. For example, on Solaris -D_POSIX_PTHREAD_SEMANTICS
1123 # enables 5-arg getpwuid_r, among other things.
1124 PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS"
1126 # Check for *_r functions
1129 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
1130 LIBS="$LIBS $PTHREAD_LIBS"
1132 AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([
1133 pthread.h not found; use --disable-thread-safety to disable thread safety])])
1135 AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r])
1137 # Do test here with the proper thread flags
1138 PGAC_FUNC_STRERROR_R_INT
1144 # do not use values from template file
1149 AC_SUBST(PTHREAD_CFLAGS)
1150 AC_SUBST(PTHREAD_LIBS)
1156 ## Most libraries are included only if they demonstrably provide a function
1157 ## we need, but libm is an exception: always include it, because there are
1158 ## too many compilers that play cute optimization games that will break
1159 ## probes for standard functions such as pow().
1162 AC_CHECK_LIB(m, main)
1163 AC_SEARCH_LIBS(setproctitle, util)
1164 AC_SEARCH_LIBS(dlopen, dl)
1165 AC_SEARCH_LIBS(socket, [socket ws2_32])
1166 AC_SEARCH_LIBS(shl_load, dld)
1167 AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
1168 AC_SEARCH_LIBS(shm_open, rt)
1169 AC_SEARCH_LIBS(shm_unlink, rt)
1170 AC_SEARCH_LIBS(clock_gettime, [rt posix4])
1172 AC_SEARCH_LIBS(fdatasync, [rt posix4])
1173 # Required for thread_test.c on Solaris
1174 AC_SEARCH_LIBS(sched_yield, rt)
1175 # Required for thread_test.c on Solaris 2.5:
1176 # Other ports use it too (HP-UX) so test unconditionally
1177 AC_SEARCH_LIBS(gethostbyname_r, nsl)
1179 AC_SEARCH_LIBS(shmget, cygipc)
1181 AC_SEARCH_LIBS(backtrace_symbols, execinfo)
1183 if test "$enable_thread_safety" = yes; then
1184 AC_SEARCH_LIBS(pthread_barrier_wait, pthread)
1187 if test "$with_readline" = yes; then
1189 if test x"$pgac_cv_check_readline" = x"no"; then
1190 AC_MSG_ERROR([readline library not found
1191 If you have readline already installed, see config.log for details on the
1192 failure. It is possible the compiler isn't looking in the proper directory.
1193 Use --without-readline to disable readline support.])
1197 if test "$with_zlib" = yes; then
1198 AC_CHECK_LIB(z, inflate, [],
1199 [AC_MSG_ERROR([zlib library not found
1200 If you have zlib already installed, see config.log for details on the
1201 failure. It is possible the compiler isn't looking in the proper directory.
1202 Use --without-zlib to disable zlib support.])])
1205 if test "$enable_spinlocks" = yes; then
1206 AC_DEFINE(HAVE_SPINLOCKS, 1, [Define to 1 if you have spinlocks.])
1209 *** Not using spinlocks will cause poor performance.])
1212 if test "$enable_atomics" = yes; then
1213 AC_DEFINE(HAVE_ATOMICS, 1, [Define to 1 if you want to use atomics if available.])
1216 *** Not using atomic operations will cause poor performance.])
1219 if test "$with_gssapi" = yes ; then
1220 if test "$PORTNAME" != "win32"; then
1221 AC_SEARCH_LIBS(gss_init_sec_context, [gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'], [],
1222 [AC_MSG_ERROR([could not find function 'gss_init_sec_context' required for GSSAPI])])
1224 LIBS="$LIBS -lgssapi32"
1231 # There is currently only one supported SSL/TLS library: OpenSSL.
1233 PGAC_ARG_REQ(with, ssl, [LIB], [use LIB for SSL/TLS support (openssl)])
1234 if test x"$with_ssl" = x"" ; then
1237 PGAC_ARG_BOOL(with, openssl, no, [obsolete spelling of --with-ssl=openssl])
1238 if test "$with_openssl" = yes ; then
1242 if test "$with_ssl" = openssl ; then
1244 # Minimum required OpenSSL version is 1.0.1
1245 AC_DEFINE(OPENSSL_API_COMPAT, [0x10001000L],
1246 [Define to the OpenSSL API version in use. This avoids deprecation warnings from newer OpenSSL versions.])
1247 if test "$PORTNAME" != "win32"; then
1248 AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [AC_MSG_ERROR([library 'crypto' is required for OpenSSL])])
1249 AC_CHECK_LIB(ssl, SSL_new, [], [AC_MSG_ERROR([library 'ssl' is required for OpenSSL])])
1251 AC_SEARCH_LIBS(CRYPTO_new_ex_data, [eay32 crypto], [], [AC_MSG_ERROR([library 'eay32' or 'crypto' is required for OpenSSL])])
1252 AC_SEARCH_LIBS(SSL_new, [ssleay32 ssl], [], [AC_MSG_ERROR([library 'ssleay32' or 'ssl' is required for OpenSSL])])
1254 # Function introduced in OpenSSL 1.0.2.
1255 AC_CHECK_FUNCS([X509_get_signature_nid])
1256 # Functions introduced in OpenSSL 1.1.0. We used to check for
1257 # OPENSSL_VERSION_NUMBER, but that didn't work with 1.1.0, because LibreSSL
1258 # defines OPENSSL_VERSION_NUMBER to claim version 2.0.0, even though it
1259 # doesn't have these OpenSSL 1.1.0 functions. So check for individual
1261 AC_CHECK_FUNCS([OPENSSL_init_ssl BIO_get_data BIO_meth_new ASN1_STRING_get0_data HMAC_CTX_new HMAC_CTX_free])
1262 # OpenSSL versions before 1.1.0 required setting callback functions, for
1263 # thread-safety. In 1.1.0, it's no longer required, and CRYPTO_lock()
1264 # function was removed.
1265 AC_CHECK_FUNCS([CRYPTO_lock])
1266 AC_DEFINE([USE_OPENSSL], 1, [Define to 1 to build with OpenSSL support. (--with-ssl=openssl)])
1267 elif test "$with_ssl" != no ; then
1268 AC_MSG_ERROR([--with-ssl must specify openssl])
1272 if test "$with_pam" = yes ; then
1273 AC_CHECK_LIB(pam, pam_start, [], [AC_MSG_ERROR([library 'pam' is required for PAM])])
1276 if test "$with_libxml" = yes ; then
1277 AC_CHECK_LIB(xml2, xmlSaveToBuffer, [], [AC_MSG_ERROR([library 'xml2' (version >= 2.6.23) is required for XML support])])
1280 if test "$with_libxslt" = yes ; then
1281 AC_CHECK_LIB(xslt, xsltCleanupGlobals, [], [AC_MSG_ERROR([library 'xslt' is required for XSLT support])])
1284 if test "$with_lz4" = yes ; then
1285 AC_CHECK_LIB(lz4, LZ4_compress_default, [], [AC_MSG_ERROR([library 'lz4' is required for LZ4 support])])
1288 # Note: We can test for libldap_r only after we know PTHREAD_LIBS
1289 if test "$with_ldap" = yes ; then
1291 if test "$PORTNAME" != "win32"; then
1292 AC_CHECK_LIB(ldap, ldap_bind, [],
1293 [AC_MSG_ERROR([library 'ldap' is required for LDAP])],
1295 LDAP_LIBS_BE="-lldap $EXTRA_LDAP_LIBS"
1296 if test "$enable_thread_safety" = yes; then
1297 # on some platforms ldap_r fails to link without PTHREAD_LIBS
1298 AC_CHECK_LIB(ldap_r, ldap_simple_bind, [],
1299 [AC_MSG_ERROR([library 'ldap_r' is required for LDAP])],
1300 [$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
1301 LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"
1303 LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
1305 AC_CHECK_FUNCS([ldap_initialize])
1307 AC_CHECK_LIB(wldap32, ldap_bind, [], [AC_MSG_ERROR([library 'wldap32' is required for LDAP])])
1308 LDAP_LIBS_FE="-lwldap32"
1309 LDAP_LIBS_BE="-lwldap32"
1313 AC_SUBST(LDAP_LIBS_FE)
1314 AC_SUBST(LDAP_LIBS_BE)
1316 # for contrib/sepgsql
1317 if test "$with_selinux" = yes; then
1318 AC_CHECK_LIB(selinux, security_compute_create_name, [],
1319 [AC_MSG_ERROR([library 'libselinux', version 2.1.10 or newer, is required for SELinux support])])
1322 # for contrib/uuid-ossp
1323 if test "$with_uuid" = bsd ; then
1324 # On BSD, the UUID functions are in libc
1325 AC_CHECK_FUNC(uuid_to_string,
1327 [AC_MSG_ERROR([BSD UUID functions are not present])])
1328 elif test "$with_uuid" = e2fs ; then
1329 # On macOS, the UUID functions are in libc
1330 AC_CHECK_FUNC(uuid_generate,
1332 [AC_CHECK_LIB(uuid, uuid_generate,
1333 [UUID_LIBS="-luuid"],
1334 [AC_MSG_ERROR([library 'uuid' is required for E2FS UUID])])])
1335 elif test "$with_uuid" = ossp ; then
1336 AC_CHECK_LIB(ossp-uuid, uuid_export,
1337 [UUID_LIBS="-lossp-uuid"],
1338 [AC_CHECK_LIB(uuid, uuid_export,
1339 [UUID_LIBS="-luuid"],
1340 [AC_MSG_ERROR([library 'ossp-uuid' or 'uuid' is required for OSSP UUID])])])
1351 AC_CHECK_HEADERS(m4_normalize([
1379 # On BSD, test for net/if.h will fail unless sys/socket.h
1380 # is included first.
1381 AC_CHECK_HEADERS(net/if.h, [], [],
1382 [AC_INCLUDES_DEFAULT
1383 #include <sys/socket.h>
1386 # On OpenBSD, test for sys/ucred.h will fail unless sys/param.h
1387 # is included first.
1388 AC_CHECK_HEADERS(sys/ucred.h, [], [],
1389 [AC_INCLUDES_DEFAULT
1390 #include <sys/param.h>
1393 # At least on IRIX, test for netinet/tcp.h will fail unless
1394 # netinet/in.h is included first.
1395 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
1396 [AC_INCLUDES_DEFAULT
1397 #include <netinet/in.h>
1400 if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
1401 AC_CHECK_HEADERS(readline/readline.h, [],
1402 [AC_CHECK_HEADERS(readline.h, [],
1403 [AC_MSG_ERROR([readline header not found
1404 If you have readline already installed, see config.log for details on the
1405 failure. It is possible the compiler isn't looking in the proper directory.
1406 Use --without-readline to disable readline support.])])])
1407 AC_CHECK_HEADERS(readline/history.h, [],
1408 [AC_CHECK_HEADERS(history.h, [],
1409 [AC_MSG_ERROR([history header not found
1410 If you have readline already installed, see config.log for details on the
1411 failure. It is possible the compiler isn't looking in the proper directory.
1412 Use --without-readline to disable readline support.])])])
1415 if expr x"$pgac_cv_check_readline" : 'x-ledit' >/dev/null ; then
1416 # Some installations of libedit usurp /usr/include/readline/, which seems
1417 # bad practice, since in combined installations readline will have its headers
1418 # there. We might have to resort to AC_EGREP checks to make sure we found
1419 # the proper header...
1420 AC_CHECK_HEADERS(editline/readline.h, [],
1421 [AC_CHECK_HEADERS(readline.h, [],
1422 [AC_CHECK_HEADERS(readline/readline.h, [],
1423 [AC_MSG_ERROR([readline header not found
1424 If you have libedit already installed, see config.log for details on the
1425 failure. It is possible the compiler isn't looking in the proper directory.
1426 Use --without-readline to disable libedit support.])])])])
1427 # Note: in a libedit installation, history.h is sometimes a dummy, and may
1428 # not be there at all. Hence, don't complain if not found. We must check
1429 # though, since in yet other versions it is an independent header.
1430 AC_CHECK_HEADERS(editline/history.h, [],
1431 [AC_CHECK_HEADERS(history.h, [],
1432 [AC_CHECK_HEADERS(readline/history.h)])])
1435 if test "$with_zlib" = yes; then
1436 AC_CHECK_HEADER(zlib.h, [], [AC_MSG_ERROR([zlib header not found
1437 If you have zlib already installed, see config.log for details on the
1438 failure. It is possible the compiler isn't looking in the proper directory.
1439 Use --without-zlib to disable zlib support.])])
1442 if test "$with_lz4" = yes; then
1443 AC_CHECK_HEADERS(lz4.h, [], [AC_MSG_ERROR([lz4.h header file is required for LZ4])])
1446 if test "$with_gssapi" = yes ; then
1447 AC_CHECK_HEADERS(gssapi/gssapi.h, [],
1448 [AC_CHECK_HEADERS(gssapi.h, [], [AC_MSG_ERROR([gssapi.h header file is required for GSSAPI])])])
1451 if test "$with_ssl" = openssl ; then
1452 AC_CHECK_HEADER(openssl/ssl.h, [], [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL])])
1453 AC_CHECK_HEADER(openssl/err.h, [], [AC_MSG_ERROR([header file <openssl/err.h> is required for OpenSSL])])
1456 if test "$with_pam" = yes ; then
1457 AC_CHECK_HEADERS(security/pam_appl.h, [],
1458 [AC_CHECK_HEADERS(pam/pam_appl.h, [],
1459 [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM.])])])
1462 if test "$with_bsd_auth" = yes ; then
1463 AC_CHECK_HEADER(bsd_auth.h, [], [AC_MSG_ERROR([header file <bsd_auth.h> is required for BSD Authentication support])])
1466 if test "$with_systemd" = yes ; then
1467 AC_CHECK_HEADER(systemd/sd-daemon.h, [], [AC_MSG_ERROR([header file <systemd/sd-daemon.h> is required for systemd support])])
1470 if test "$with_libxml" = yes ; then
1471 AC_CHECK_HEADER(libxml/parser.h, [], [AC_MSG_ERROR([header file <libxml/parser.h> is required for XML support])])
1474 if test "$with_libxslt" = yes ; then
1475 AC_CHECK_HEADER(libxslt/xslt.h, [], [AC_MSG_ERROR([header file <libxslt/xslt.h> is required for XSLT support])])
1478 if test "$with_ldap" = yes ; then
1479 if test "$PORTNAME" != "win32"; then
1480 AC_CHECK_HEADERS(ldap.h, [],
1481 [AC_MSG_ERROR([header file <ldap.h> is required for LDAP])])
1484 AC_CHECK_HEADERS(winldap.h, [],
1485 [AC_MSG_ERROR([header file <winldap.h> is required for LDAP])],
1486 [AC_INCLUDES_DEFAULT
1487 #include <windows.h>
1492 if test "$with_bonjour" = yes ; then
1493 AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])
1494 dnl At some point we might add something like
1495 dnl AC_SEARCH_LIBS(DNSServiceRegister, dns_sd)
1496 dnl but right now, what that would mainly accomplish is to encourage
1497 dnl people to try to use the avahi implementation, which does not work.
1498 dnl If you want to use Apple's own Bonjour code on another platform,
1499 dnl just add -ldns_sd to LIBS manually.
1502 # for contrib/uuid-ossp
1503 if test "$with_uuid" = bsd ; then
1504 AC_CHECK_HEADERS(uuid.h,
1505 [AC_EGREP_HEADER([uuid_to_string], uuid.h, [],
1506 [AC_MSG_ERROR([header file <uuid.h> does not match BSD UUID library])])],
1507 [AC_MSG_ERROR([header file <uuid.h> is required for BSD UUID])])
1508 elif test "$with_uuid" = e2fs ; then
1509 AC_CHECK_HEADERS(uuid/uuid.h,
1510 [AC_EGREP_HEADER([uuid_generate], uuid/uuid.h, [],
1511 [AC_MSG_ERROR([header file <uuid/uuid.h> does not match E2FS UUID library])])],
1512 [AC_CHECK_HEADERS(uuid.h,
1513 [AC_EGREP_HEADER([uuid_generate], uuid.h, [],
1514 [AC_MSG_ERROR([header file <uuid.h> does not match E2FS UUID library])])],
1515 [AC_MSG_ERROR([header file <uuid/uuid.h> or <uuid.h> is required for E2FS UUID])])])
1516 elif test "$with_uuid" = ossp ; then
1517 AC_CHECK_HEADERS(ossp/uuid.h,
1518 [AC_EGREP_HEADER([uuid_export], ossp/uuid.h, [],
1519 [AC_MSG_ERROR([header file <ossp/uuid.h> does not match OSSP UUID library])])],
1520 [AC_CHECK_HEADERS(uuid.h,
1521 [AC_EGREP_HEADER([uuid_export], uuid.h, [],
1522 [AC_MSG_ERROR([header file <uuid.h> does not match OSSP UUID library])])],
1523 [AC_MSG_ERROR([header file <ossp/uuid.h> or <uuid.h> is required for OSSP UUID])])])
1526 if test "$PORTNAME" = "win32" ; then
1527 AC_CHECK_HEADERS(crtdefs.h)
1531 ## Types, structures, compiler characteristics
1534 m4_defun([AC_PROG_CC_STDC], []) dnl We don't want that.
1537 PGAC_PRINTF_ARCHETYPE
1538 PGAC_C_FUNCNAME_SUPPORT
1539 PGAC_C_STATIC_ASSERT
1541 PGAC_C_TYPES_COMPATIBLE
1542 PGAC_C_BUILTIN_CONSTANT_P
1543 PGAC_C_BUILTIN_UNREACHABLE
1544 PGAC_C_COMPUTED_GOTO
1545 PGAC_STRUCT_TIMEZONE
1547 PGAC_STRUCT_SOCKADDR_UN
1548 PGAC_STRUCT_SOCKADDR_STORAGE
1549 PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS
1550 PGAC_STRUCT_ADDRINFO
1554 # MSVC doesn't cope well with defining restrict to __restrict, the
1555 # spelling it understands, because it conflicts with
1556 # __declspec(restrict). Therefore we define pg_restrict to the
1557 # appropriate definition, which presumably won't conflict.
1559 # Allow platforms with buggy compilers to force restrict to not be
1560 # used by setting $FORCE_DISABLE_RESTRICT=yes in the relevant
1563 if test "$ac_cv_c_restrict" = "no" -o "x$FORCE_DISABLE_RESTRICT" = "xyes"; then
1566 pg_restrict="$ac_cv_c_restrict"
1568 AC_DEFINE_UNQUOTED([pg_restrict], [$pg_restrict],
1569 [Define to keyword to use for C99 restrict support, or to nothing if not
1572 AC_CHECK_TYPES([struct cmsgcred], [], [],
1573 [#include <sys/socket.h>
1574 #include <sys/param.h>
1575 #ifdef HAVE_SYS_UCRED_H
1576 #include <sys/ucred.h>
1579 AC_CHECK_TYPES([struct option], [], [],
1580 [#ifdef HAVE_GETOPT_H
1584 if test "$with_zlib" = yes; then
1585 # Check that <zlib.h> defines z_streamp (versions before about 1.0.4
1586 # did not). While we could work around the lack of z_streamp, it
1587 # seems unwise to encourage people to use such old zlib versions...
1588 AC_CHECK_TYPE(z_streamp, [], [AC_MSG_ERROR([zlib version is too old
1589 Use --without-zlib to disable zlib support.])],
1590 [#include <zlib.h>])
1595 # On x86_64, check if we can compile a popcntq instruction
1596 AC_CACHE_CHECK([whether assembler supports x86_64 popcntq],
1597 [pgac_cv_have_x86_64_popcntq],
1598 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1599 [long long x = 1; long long r;
1600 __asm__ __volatile__ (" popcntq %1,%0\n" : "=q"(r) : "rm"(x));])],
1601 [pgac_cv_have_x86_64_popcntq=yes],
1602 [pgac_cv_have_x86_64_popcntq=no])])
1603 if test x"$pgac_cv_have_x86_64_popcntq" = xyes ; then
1604 AC_DEFINE(HAVE_X86_64_POPCNTQ, 1, [Define to 1 if the assembler supports X86_64's POPCNTQ instruction.])
1608 # On PPC, check if assembler supports LWARX instruction's mutex hint bit
1609 AC_CACHE_CHECK([whether assembler supports lwarx hint bit],
1610 [pgac_cv_have_ppc_mutex_hint],
1611 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1612 [int a = 0; int *p = &a; int r;
1613 __asm__ __volatile__ (" lwarx %0,0,%1,1\n" : "=&r"(r) : "r"(p));])],
1614 [pgac_cv_have_ppc_mutex_hint=yes],
1615 [pgac_cv_have_ppc_mutex_hint=no])])
1616 if test x"$pgac_cv_have_ppc_mutex_hint" = xyes ; then
1617 AC_DEFINE(HAVE_PPC_LWARX_MUTEX_HINT, 1, [Define to 1 if the assembler supports PPC's LWARX mutex hint bit.])
1619 # Check if compiler accepts "i"(x) when __builtin_constant_p(x).
1620 AC_CACHE_CHECK([whether __builtin_constant_p(x) implies "i"(x) acceptance],
1621 [pgac_cv_have_i_constraint__builtin_constant_p],
1622 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1624 addi(int ra, int si)
1627 if (__builtin_constant_p(si))
1628 __asm__ __volatile__(
1629 " addi %0,%1,%2\n" : "=r"(res) : "b"(ra), "i"(si));
1632 int test_adds(int x) { return addi(3, x) + addi(x, 5); }], [])],
1633 [pgac_cv_have_i_constraint__builtin_constant_p=yes],
1634 [pgac_cv_have_i_constraint__builtin_constant_p=no])])
1635 if test x"$pgac_cv_have_i_constraint__builtin_constant_p" = xyes ; then
1636 AC_DEFINE(HAVE_I_CONSTRAINT__BUILTIN_CONSTANT_P, 1,
1637 [Define to 1 if __builtin_constant_p(x) implies "i"(x) acceptance.])
1642 # Check largefile support. You might think this is a system service not a
1643 # compiler characteristic, but you'd be wrong. We must check this before
1644 # probing existence of related functions such as fseeko, since the largefile
1645 # defines can affect what is generated for that.
1646 if test "$PORTNAME" != "win32"; then
1648 dnl Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define
1649 dnl _DARWIN_USE_64_BIT_INODE, but it isn't: on macOS 10.5 that activates a
1650 dnl bug that causes readdir() to sometimes return EINVAL. On later macOS
1651 dnl versions where the feature actually works, it's on by default anyway.
1652 AH_VERBATIM([_DARWIN_USE_64_BIT_INODE],[])
1655 dnl Check for largefile support (must be after AC_SYS_LARGEFILE)
1656 AC_CHECK_SIZEOF([off_t])
1658 # If we don't have largefile support, can't handle segsize >= 2GB.
1659 if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
1660 AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1663 AC_CHECK_SIZEOF([bool], [],
1664 [#ifdef HAVE_STDBOOL_H
1665 #include <stdbool.h>
1668 dnl We use <stdbool.h> if we have it and it declares type bool as having
1669 dnl size 1. Otherwise, c.h will fall back to declaring bool as unsigned char.
1670 if test "$ac_cv_header_stdbool_h" = yes -a "$ac_cv_sizeof_bool" = 1; then
1671 AC_DEFINE([PG_USE_STDBOOL], 1,
1672 [Define to 1 to use <stdbool.h> to define type bool.])
1677 ## Functions, global variables
1680 PGAC_VAR_INT_TIMEZONE
1681 AC_FUNC_ACCEPT_ARGTYPES
1682 PGAC_FUNC_GETTIMEOFDAY_1ARG
1683 PGAC_FUNC_WCSTOMBS_L
1685 # Some versions of libedit contain strlcpy(), setproctitle(), and other
1686 # symbols that that library has no business exposing to the world. Pending
1687 # acquisition of a clue by those developers, ignore libedit (including its
1688 # possible alias of libreadline) while checking for everything else.
1689 LIBS_including_readline="$LIBS"
1690 LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`
1692 AC_CHECK_FUNCS(m4_normalize([
1707 pthread_is_threaded_np
1724 # These typically are compiler builtins, for which AC_CHECK_FUNCS fails.
1725 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap16], [int x])
1726 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap32], [int x])
1727 PGAC_CHECK_BUILTIN_FUNC([__builtin_bswap64], [long int x])
1728 # We assume that we needn't test all widths of these explicitly:
1729 PGAC_CHECK_BUILTIN_FUNC([__builtin_clz], [unsigned int x])
1730 PGAC_CHECK_BUILTIN_FUNC([__builtin_ctz], [unsigned int x])
1731 PGAC_CHECK_BUILTIN_FUNC([__builtin_popcount], [unsigned int x])
1733 # We require 64-bit fseeko() to be available, but run this check anyway
1734 # in case it finds that _LARGEFILE_SOURCE has to be #define'd for that.
1737 # posix_fadvise() is a no-op on Solaris, so don't incur function overhead
1738 # by calling it, 2009-04-02
1739 # http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/gen/posix_fadvise.c
1740 dnl must use AS_IF here, else AC_REQUIRES inside AC_CHECK_DECLS malfunctions
1741 AS_IF([test "$PORTNAME" != "solaris"], [
1742 AC_CHECK_FUNCS(posix_fadvise)
1743 AC_CHECK_DECLS(posix_fadvise, [], [], [#include <fcntl.h>])
1746 AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
1747 AC_CHECK_DECLS([strlcat, strlcpy, strnlen])
1748 # This is probably only present on macOS, but may as well check always
1749 AC_CHECK_DECLS(F_FULLFSYNC, [], [], [#include <fcntl.h>])
1751 AC_CHECK_DECLS([RTLD_GLOBAL, RTLD_NOW], [], [], [#include <dlfcn.h>])
1753 AC_CHECK_TYPE([struct sockaddr_in6],
1754 [AC_DEFINE(HAVE_IPV6, 1, [Define to 1 if you have support for IPv6.])],
1756 [$ac_includes_default
1757 #include <netinet/in.h>])
1759 AC_CACHE_CHECK([for PS_STRINGS], [pgac_cv_var_PS_STRINGS],
1760 [AC_LINK_IFELSE([AC_LANG_PROGRAM(
1761 [#include <machine/vmparam.h>
1762 #include <sys/exec.h>
1764 [PS_STRINGS->ps_nargvstr = 1;
1765 PS_STRINGS->ps_argvstr = "foo";])],
1766 [pgac_cv_var_PS_STRINGS=yes],
1767 [pgac_cv_var_PS_STRINGS=no])])
1768 if test "$pgac_cv_var_PS_STRINGS" = yes ; then
1769 AC_DEFINE([HAVE_PS_STRINGS], 1, [Define to 1 if the PS_STRINGS thing exists.])
1772 AC_REPLACE_FUNCS(m4_normalize([
1794 if test "$enable_thread_safety" = yes; then
1795 AC_REPLACE_FUNCS(pthread_barrier_wait)
1798 if test "$PORTNAME" = "win32" -o "$PORTNAME" = "cygwin"; then
1799 # Cygwin and (apparently, based on test results) Mingw both
1800 # have a broken strtof(), so substitute the same replacement
1801 # code we use with VS2013. That's not a perfect fix, since
1802 # (unlike with VS2013) it doesn't avoid double-rounding, but
1803 # we have no better options. To get that, though, we have to
1804 # force the file to be compiled despite HAVE_STRTOF.
1806 AC_MSG_NOTICE([On $host_os we will use our strtof wrapper.])
1810 # Windows uses a specialised env handler
1812 AC_DEFINE(HAVE_SETENV, 1, [Define to 1 because replacement version used.])
1813 AC_DEFINE(HAVE_UNSETENV, 1, [Define to 1 because replacement version used.])
1814 ac_cv_func_setenv=yes
1815 ac_cv_func_unsetenv=yes
1818 AC_REPLACE_FUNCS([setenv unsetenv])
1822 # System's version of getaddrinfo(), if any, may be used only if we found
1823 # a definition for struct addrinfo; see notes in src/include/getaddrinfo.h.
1824 # We use only our own getaddrinfo.c on Windows, but it's time to revisit that.
1825 if test x"$ac_cv_type_struct_addrinfo" = xyes && \
1826 test "$PORTNAME" != "win32"; then
1827 AC_REPLACE_FUNCS([getaddrinfo])
1829 AC_LIBOBJ(getaddrinfo)
1832 # Similarly, use system's getopt_long() only if system provides struct option.
1833 if test x"$ac_cv_type_struct_option" = xyes ; then
1834 AC_REPLACE_FUNCS([getopt_long])
1836 AC_LIBOBJ(getopt_long)
1839 # On OpenBSD and Solaris, getopt() doesn't do what we want for long options
1840 # (i.e., allow '-' as a flag character), so use our version on those platforms.
1841 if test "$PORTNAME" = "openbsd" -o "$PORTNAME" = "solaris"; then
1845 # mingw has adopted a GNU-centric interpretation of optind/optreset,
1846 # so always use our version on Windows.
1847 if test "$PORTNAME" = "win32"; then
1849 AC_LIBOBJ(getopt_long)
1852 # Win32 (really MinGW) support
1853 if test "$PORTNAME" = "win32"; then
1854 AC_CHECK_FUNCS(_configthreadlocale)
1855 AC_REPLACE_FUNCS(gettimeofday)
1861 AC_LIBOBJ(win32error)
1862 AC_LIBOBJ(win32security)
1863 AC_LIBOBJ(win32setlocale)
1864 AC_LIBOBJ(win32stat)
1865 AC_DEFINE([HAVE_SYMLINK], 1,
1866 [Define to 1 if you have the `symlink' function.])
1867 AC_CHECK_TYPES(MINIDUMP_TYPE, [pgac_minidump_type=yes], [pgac_minidump_type=no], [
1868 #define WIN32_LEAN_AND_MEAN
1869 #include <windows.h>
1871 #include <dbghelp.h>])
1873 if test x"$pgac_minidump_type" = x"yes" ; then
1874 AC_SUBST(have_win32_dbghelp,yes)
1876 AC_SUBST(have_win32_dbghelp,no)
1879 # Cygwin needs only a bit of that
1880 if test "$PORTNAME" = "cygwin"; then
1884 AC_CHECK_FUNC(syslog,
1885 [AC_CHECK_HEADER(syslog.h,
1886 [AC_DEFINE(HAVE_SYSLOG, 1, [Define to 1 if you have the syslog interface.])])])
1888 AC_CACHE_CHECK([for opterr], pgac_cv_var_int_opterr,
1889 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1890 [extern int opterr; opterr = 1;])],
1891 [pgac_cv_var_int_opterr=yes],
1892 [pgac_cv_var_int_opterr=no])])
1893 if test x"$pgac_cv_var_int_opterr" = x"yes"; then
1894 AC_DEFINE(HAVE_INT_OPTERR, 1, [Define to 1 if you have the global variable 'int opterr'.])
1897 AC_CACHE_CHECK([for optreset], pgac_cv_var_int_optreset,
1898 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1899 [extern int optreset; optreset = 1;])],
1900 [pgac_cv_var_int_optreset=yes],
1901 [pgac_cv_var_int_optreset=no])])
1902 if test x"$pgac_cv_var_int_optreset" = x"yes"; then
1903 AC_DEFINE(HAVE_INT_OPTRESET, 1, [Define to 1 if you have the global variable 'int optreset'.])
1906 AC_CHECK_FUNCS([strtoll __strtoll strtoq], [break])
1907 AC_CHECK_FUNCS([strtoull __strtoull strtouq], [break])
1908 # strto[u]ll may exist but not be declared
1909 AC_CHECK_DECLS([strtoll, strtoull])
1911 if test "$with_icu" = yes; then
1912 ac_save_CPPFLAGS=$CPPFLAGS
1913 CPPFLAGS="$ICU_CFLAGS $CPPFLAGS"
1915 # Verify we have ICU's header files
1916 AC_CHECK_HEADER(unicode/ucol.h, [],
1917 [AC_MSG_ERROR([header file <unicode/ucol.h> is required for ICU])])
1919 CPPFLAGS=$ac_save_CPPFLAGS
1922 if test "$with_llvm" = yes; then
1923 PGAC_CHECK_LLVM_FUNCTIONS()
1926 # Lastly, restore full LIBS list and check for readline/libedit symbols
1927 LIBS="$LIBS_including_readline"
1929 if test "$with_readline" = yes; then
1930 PGAC_READLINE_VARIABLES
1931 AC_CHECK_FUNCS([rl_completion_matches rl_filename_completion_function rl_reset_screen_size])
1932 AC_CHECK_FUNCS([append_history history_truncate_file])
1936 # This test makes sure that run tests work at all. Sometimes a shared
1937 # library is found by the linker, but the runtime linker can't find it.
1938 # This check should come after all modifications of compiler or linker
1939 # variables, and before any other run tests.
1940 AC_MSG_CHECKING([test program])
1941 AC_RUN_IFELSE([AC_LANG_SOURCE([int main() { return 0; }])],
1942 [AC_MSG_RESULT(ok)],
1943 [AC_MSG_RESULT(failed)
1945 Could not execute a simple test program. This may be a problem
1946 related to locating shared libraries. Check the file 'config.log'
1947 for the exact reason.]])],
1948 [AC_MSG_RESULT([cross-compiling])])
1950 # --------------------
1951 # Run tests below here
1952 # --------------------
1954 dnl Check to see if we have a working 64-bit integer type.
1955 dnl Since Postgres 8.4, we no longer support compilers without a working
1956 dnl 64-bit type; but we have to determine whether that type is called
1957 dnl "long int" or "long long int".
1959 PGAC_TYPE_64BIT_INT([long int])
1961 if test x"$HAVE_LONG_INT_64" = x"yes" ; then
1962 pg_int64_type="long int"
1964 PGAC_TYPE_64BIT_INT([long long int])
1965 if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
1966 pg_int64_type="long long int"
1968 AC_MSG_ERROR([Cannot find a working 64-bit integer type.])
1972 AC_DEFINE_UNQUOTED(PG_INT64_TYPE, $pg_int64_type,
1973 [Define to the name of a signed 64-bit integer type.])
1975 # Select the printf length modifier that goes with that, too.
1976 if test x"$pg_int64_type" = x"long long int" ; then
1977 INT64_MODIFIER='"ll"'
1979 INT64_MODIFIER='"l"'
1982 AC_DEFINE_UNQUOTED(INT64_MODIFIER, $INT64_MODIFIER,
1983 [Define to the appropriate printf length modifier for 64-bit ints.])
1985 # has to be down here, rather than with the other builtins, because
1986 # the test uses PG_INT64_TYPE.
1987 PGAC_C_BUILTIN_OP_OVERFLOW
1989 # Check size of void *, size_t (enables tweaks for > 32bit address space)
1990 AC_CHECK_SIZEOF([void *])
1991 AC_CHECK_SIZEOF([size_t])
1992 AC_CHECK_SIZEOF([long])
1994 # Determine memory alignment requirements for the basic C data types.
1996 AC_CHECK_ALIGNOF(short)
1997 AC_CHECK_ALIGNOF(int)
1998 AC_CHECK_ALIGNOF(long)
1999 if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
2000 AC_CHECK_ALIGNOF(long long int)
2002 AC_CHECK_ALIGNOF(double)
2004 # Compute maximum alignment of any basic type.
2005 # We assume long's alignment is at least as strong as char, short, or int;
2006 # but we must check long long (if it is being used for int64) and double.
2007 # Note that we intentionally do not consider any types wider than 64 bits,
2008 # as allowing MAXIMUM_ALIGNOF to exceed 8 would be too much of a penalty
2009 # for disk and memory space.
2011 MAX_ALIGNOF=$ac_cv_alignof_long
2012 if test $MAX_ALIGNOF -lt $ac_cv_alignof_double ; then
2013 MAX_ALIGNOF=$ac_cv_alignof_double
2015 if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $MAX_ALIGNOF -lt $ac_cv_alignof_long_long_int ; then
2016 MAX_ALIGNOF="$ac_cv_alignof_long_long_int"
2018 AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any C data type.])
2021 # Some platforms predefine the types int8, int16, etc. Only check
2022 # a (hopefully) representative subset.
2023 AC_CHECK_TYPES([int8, uint8, int64, uint64], [], [],
2024 [#include <stdio.h>])
2026 # Some compilers offer a 128-bit integer scalar type.
2027 PGAC_TYPE_128BIT_INT
2029 # Check for various atomic operations now that we have checked how to declare
2031 PGAC_HAVE_GCC__SYNC_CHAR_TAS
2032 PGAC_HAVE_GCC__SYNC_INT32_TAS
2033 PGAC_HAVE_GCC__SYNC_INT32_CAS
2034 PGAC_HAVE_GCC__SYNC_INT64_CAS
2035 PGAC_HAVE_GCC__ATOMIC_INT32_CAS
2036 PGAC_HAVE_GCC__ATOMIC_INT64_CAS
2039 # Check for x86 cpuid instruction
2040 AC_CACHE_CHECK([for __get_cpuid], [pgac_cv__get_cpuid],
2041 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <cpuid.h>],
2042 [[unsigned int exx[4] = {0, 0, 0, 0};
2043 __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);
2045 [pgac_cv__get_cpuid="yes"],
2046 [pgac_cv__get_cpuid="no"])])
2047 if test x"$pgac_cv__get_cpuid" = x"yes"; then
2048 AC_DEFINE(HAVE__GET_CPUID, 1, [Define to 1 if you have __get_cpuid.])
2051 AC_CACHE_CHECK([for __cpuid], [pgac_cv__cpuid],
2052 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <intrin.h>],
2053 [[unsigned int exx[4] = {0, 0, 0, 0};
2054 __get_cpuid(exx[0], 1);
2056 [pgac_cv__cpuid="yes"],
2057 [pgac_cv__cpuid="no"])])
2058 if test x"$pgac_cv__cpuid" = x"yes"; then
2059 AC_DEFINE(HAVE__CPUID, 1, [Define to 1 if you have __cpuid.])
2062 # Check for Intel SSE 4.2 intrinsics to do CRC calculations.
2064 # First check if the _mm_crc32_u8 and _mm_crc32_u64 intrinsics can be used
2065 # with the default compiler flags. If not, check if adding the -msse4.2
2066 # flag helps. CFLAGS_SSE42 is set to -msse4.2 if that's required.
2067 PGAC_SSE42_CRC32_INTRINSICS([])
2068 if test x"$pgac_sse42_crc32_intrinsics" != x"yes"; then
2069 PGAC_SSE42_CRC32_INTRINSICS([-msse4.2])
2071 AC_SUBST(CFLAGS_SSE42)
2073 # Are we targeting a processor that supports SSE 4.2? gcc, clang and icc all
2074 # define __SSE4_2__ in that case.
2075 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
2077 #error __SSE4_2__ not defined
2079 ])], [SSE4_2_TARGETED=1])
2081 # Check for ARMv8 CRC Extension intrinsics to do CRC calculations.
2083 # First check if __crc32c* intrinsics can be used with the default compiler
2084 # flags. If not, check if adding -march=armv8-a+crc flag helps.
2085 # CFLAGS_ARMV8_CRC32C is set if the extra flag is required.
2086 PGAC_ARMV8_CRC32C_INTRINSICS([])
2087 if test x"$pgac_armv8_crc32c_intrinsics" != x"yes"; then
2088 PGAC_ARMV8_CRC32C_INTRINSICS([-march=armv8-a+crc])
2090 AC_SUBST(CFLAGS_ARMV8_CRC32C)
2092 # Select CRC-32C implementation.
2094 # If we are targeting a processor that has Intel SSE 4.2 instructions, we can
2095 # use the special CRC instructions for calculating CRC-32C. If we're not
2096 # targeting such a processor, but we can nevertheless produce code that uses
2097 # the SSE intrinsics, perhaps with some extra CFLAGS, compile both
2098 # implementations and select which one to use at runtime, depending on whether
2099 # SSE 4.2 is supported by the processor we're running on.
2101 # Similarly, if we are targeting an ARM processor that has the CRC
2102 # instructions that are part of the ARMv8 CRC Extension, use them. And if
2103 # we're not targeting such a processor, but can nevertheless produce code that
2104 # uses the CRC instructions, compile both, and select at runtime.
2106 # You can override this logic by setting the appropriate USE_*_CRC32 flag to 1
2107 # in the template or configure command line.
2108 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
2109 # Use Intel SSE 4.2 if available.
2110 if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && test x"$SSE4_2_TARGETED" = x"1" ; then
2113 # Intel SSE 4.2, with runtime check? The CPUID instruction is needed for
2114 # the runtime check.
2115 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
2116 USE_SSE42_CRC32C_WITH_RUNTIME_CHECK=1
2118 # Use ARM CRC Extension if available.
2119 if test x"$pgac_armv8_crc32c_intrinsics" = x"yes" && test x"$CFLAGS_ARMV8_CRC32C" = x""; then
2122 # ARM CRC Extension, with runtime check?
2123 if test x"$pgac_armv8_crc32c_intrinsics" = x"yes"; then
2124 USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK=1
2126 # fall back to slicing-by-8 algorithm, which doesn't require any
2127 # special CPU support.
2128 USE_SLICING_BY_8_CRC32C=1
2135 # Set PG_CRC32C_OBJS appropriately depending on the selected implementation.
2136 AC_MSG_CHECKING([which CRC-32C implementation to use])
2137 if test x"$USE_SSE42_CRC32C" = x"1"; then
2138 AC_DEFINE(USE_SSE42_CRC32C, 1, [Define to 1 use Intel SSE 4.2 CRC instructions.])
2139 PG_CRC32C_OBJS="pg_crc32c_sse42.o"
2140 AC_MSG_RESULT(SSE 4.2)
2142 if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2143 AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
2144 PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_sse42_choose.o"
2145 AC_MSG_RESULT(SSE 4.2 with runtime check)
2147 if test x"$USE_ARMV8_CRC32C" = x"1"; then
2148 AC_DEFINE(USE_ARMV8_CRC32C, 1, [Define to 1 to use ARMv8 CRC Extension.])
2149 PG_CRC32C_OBJS="pg_crc32c_armv8.o"
2150 AC_MSG_RESULT(ARMv8 CRC instructions)
2152 if test x"$USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2153 AC_DEFINE(USE_ARMV8_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use ARMv8 CRC Extension with a runtime check.])
2154 PG_CRC32C_OBJS="pg_crc32c_armv8.o pg_crc32c_sb8.o pg_crc32c_armv8_choose.o"
2155 AC_MSG_RESULT(ARMv8 CRC instructions with runtime check)
2157 AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use software CRC-32C implementation (slicing-by-8).])
2158 PG_CRC32C_OBJS="pg_crc32c_sb8.o"
2159 AC_MSG_RESULT(slicing-by-8)
2164 AC_SUBST(PG_CRC32C_OBJS)
2167 # Select semaphore implementation type.
2168 if test "$PORTNAME" != "win32"; then
2169 if test x"$PREFERRED_SEMAPHORES" = x"NAMED_POSIX" ; then
2170 # Need sem_open for this
2171 AC_SEARCH_LIBS(sem_open, [rt pthread], [USE_NAMED_POSIX_SEMAPHORES=1])
2173 if test x"$PREFERRED_SEMAPHORES" = x"UNNAMED_POSIX" ; then
2174 # Need sem_init for this
2175 AC_SEARCH_LIBS(sem_init, [rt pthread], [USE_UNNAMED_POSIX_SEMAPHORES=1])
2177 AC_MSG_CHECKING([which semaphore API to use])
2178 if test x"$USE_NAMED_POSIX_SEMAPHORES" = x"1" ; then
2179 AC_DEFINE(USE_NAMED_POSIX_SEMAPHORES, 1, [Define to select named POSIX semaphores.])
2180 SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2181 sematype="named POSIX"
2183 if test x"$USE_UNNAMED_POSIX_SEMAPHORES" = x"1" ; then
2184 AC_DEFINE(USE_UNNAMED_POSIX_SEMAPHORES, 1, [Define to select unnamed POSIX semaphores.])
2185 SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2186 sematype="unnamed POSIX"
2188 AC_DEFINE(USE_SYSV_SEMAPHORES, 1, [Define to select SysV-style semaphores.])
2189 SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
2193 AC_MSG_RESULT([$sematype])
2195 AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.])
2196 SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
2200 # Select shared-memory implementation type.
2201 if test "$PORTNAME" != "win32"; then
2202 AC_DEFINE(USE_SYSV_SHARED_MEMORY, 1, [Define to select SysV-style shared memory.])
2203 SHMEM_IMPLEMENTATION="src/backend/port/sysv_shmem.c"
2205 AC_DEFINE(USE_WIN32_SHARED_MEMORY, 1, [Define to select Win32-style shared memory.])
2206 SHMEM_IMPLEMENTATION="src/backend/port/win32_shmem.c"
2209 # Select random number source. If a TLS library is used then it will be the
2210 # first choice, else the native platform sources (Windows API or /dev/urandom)
2212 AC_MSG_CHECKING([which random number source to use])
2213 if test x"$with_ssl" = x"openssl" ; then
2214 AC_MSG_RESULT([OpenSSL])
2215 elif test x"$PORTNAME" = x"win32" ; then
2216 AC_MSG_RESULT([Windows native])
2218 AC_MSG_RESULT([/dev/urandom])
2219 AC_CHECK_FILE([/dev/urandom], [], [])
2221 if test x"$ac_cv_file__dev_urandom" = x"no" ; then
2223 no source of strong random numbers was found
2224 PostgreSQL can use OpenSSL, native Windows API or /dev/urandom as a source of random numbers.])
2228 # If not set in template file, set bytes to use libc memset()
2229 if test x"$MEMSET_LOOP_LIMIT" = x"" ; then
2230 MEMSET_LOOP_LIMIT=1024
2232 AC_DEFINE_UNQUOTED(MEMSET_LOOP_LIMIT, ${MEMSET_LOOP_LIMIT}, [Define bytes to use libc memset().])
2235 if test "$enable_nls" = yes ; then
2239 # Check for Tcl configuration script tclConfig.sh
2240 if test "$with_tcl" = yes; then
2241 PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
2242 PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
2243 [TCL_INCLUDE_SPEC,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
2244 AC_SUBST(TCL_SHLIB_LD_LIBS)dnl don't want to double-evaluate that one
2245 if test "$TCL_SHARED_BUILD" != 1; then
2246 AC_MSG_ERROR([cannot build PL/Tcl because Tcl is not a shared library
2247 Use --without-tcl to disable building PL/Tcl.])
2249 # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h>
2250 ac_save_CPPFLAGS=$CPPFLAGS
2251 CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS"
2252 AC_CHECK_HEADER(tcl.h, [], [AC_MSG_ERROR([header file <tcl.h> is required for Tcl])])
2253 CPPFLAGS=$ac_save_CPPFLAGS
2256 # check for <perl.h>
2257 if test "$with_perl" = yes; then
2258 ac_save_CPPFLAGS=$CPPFLAGS
2259 CPPFLAGS="$CPPFLAGS $perl_includespec"
2260 AC_CHECK_HEADER(perl.h, [], [AC_MSG_ERROR([header file <perl.h> is required for Perl])],
2261 [#include <EXTERN.h>])
2262 # While we're at it, check that we can link to libperl.
2263 # On most platforms, if perl.h is there then libperl.so will be too, but at
2264 # this writing Debian packages them separately. There is no known reason to
2265 # waste cycles on separate probes for the Tcl or Python libraries, though.
2266 # On some Red Hat platforms, the link attempt can fail if we don't use
2267 # CFLAGS_SL while building the test program.
2268 ac_save_CFLAGS=$CFLAGS
2269 CFLAGS="$CFLAGS $CFLAGS_SL"
2270 pgac_save_LIBS=$LIBS
2271 LIBS="$perl_embed_ldflags"
2272 AC_MSG_CHECKING([for libperl])
2273 AC_LINK_IFELSE([AC_LANG_PROGRAM([
2276 ], [perl_alloc();])],
2277 [AC_MSG_RESULT(yes)],
2279 AC_MSG_ERROR([libperl library is required for Perl])])
2280 LIBS=$pgac_save_LIBS
2281 CFLAGS=$ac_save_CFLAGS
2282 CPPFLAGS=$ac_save_CPPFLAGS
2285 # check for <Python.h>
2286 if test "$with_python" = yes; then
2287 ac_save_CPPFLAGS=$CPPFLAGS
2288 CPPFLAGS="$python_includespec $CPPFLAGS"
2289 AC_CHECK_HEADER(Python.h, [], [AC_MSG_ERROR([header file <Python.h> is required for Python])])
2290 CPPFLAGS=$ac_save_CPPFLAGS
2294 # Check for documentation-building tools
2296 PGAC_PATH_PROGS(XMLLINT, xmllint)
2297 PGAC_PATH_PROGS(XSLTPROC, xsltproc)
2298 PGAC_PATH_PROGS(FOP, fop)
2299 PGAC_PATH_PROGS(DBTOEPUB, dbtoepub)
2302 # Check for test tools
2304 if test "$enable_tap_tests" = yes; then
2305 # Check for necessary modules, unless user has specified the "prove" to use;
2306 # in that case it's her responsibility to have a working configuration.
2307 # (prove might be part of a different Perl installation than perl, eg on
2308 # MSys, so the result of AX_PROG_PERL_MODULES could be irrelevant anyway.)
2309 if test -z "$PROVE"; then
2310 # Test::More and Time::HiRes are supposed to be part of core Perl,
2311 # but some distros omit them in a minimal installation.
2312 AX_PROG_PERL_MODULES([IPC::Run Test::More=0.87 Time::HiRes], ,
2313 [AC_MSG_ERROR([Additional Perl modules are required to run TAP tests])])
2315 # Now make sure we know where prove is
2316 PGAC_PATH_PROGS(PROVE, prove)
2317 if test -z "$PROVE"; then
2318 AC_MSG_ERROR([prove not found])
2324 # We have to run the thread test near the end so we have all our symbols
2325 # defined. Cross compiling throws a warning.
2327 if test "$enable_thread_safety" = yes; then
2328 if test "$PORTNAME" != "win32"
2330 AC_MSG_CHECKING([thread safety of required library functions])
2334 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
2335 LIBS="$LIBS $PTHREAD_LIBS"
2337 [AC_LANG_SOURCE([[#include "$srcdir/config/thread_test.c"]])],
2338 [AC_MSG_RESULT(yes)],
2340 AC_MSG_ERROR([thread test program failed
2341 This platform is not thread-safe. Check the file 'config.log' for the
2342 exact reason, or use --disable-thread-safety to disable thread safety.])],
2343 [AC_MSG_RESULT(maybe)
2345 *** Skipping thread test program because of cross-compile build.
2350 AC_MSG_WARN([*** skipping thread test on Win32])
2354 # If compiler will take -Wl,--as-needed (or various platform-specific
2355 # spellings thereof) then add that to LDFLAGS. This is much easier than
2356 # trying to filter LIBS to the minimum for each executable.
2357 # On (at least) some Red-Hat-derived systems, this switch breaks linking to
2358 # libreadline; therefore we postpone testing it until we know what library
2359 # dependencies readline has. The test code will try to link with $LIBS.
2360 if test "$with_readline" = yes; then
2361 link_test_func=readline
2366 if test "$PORTNAME" = "darwin"; then
2367 PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-dead_strip_dylibs], $link_test_func)
2368 elif test "$PORTNAME" = "openbsd"; then
2369 PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-Bdynamic], $link_test_func)
2371 PGAC_PROG_CC_LDFLAGS_OPT([-Wl,--as-needed], $link_test_func)
2374 # Create compiler version string
2375 if test x"$GCC" = x"yes" ; then
2376 cc_string=`${CC} --version | sed q`
2377 case $cc_string in [[A-Za-z]]*) ;; *) cc_string="GCC $cc_string";; esac
2378 elif test x"$SUN_STUDIO_CC" = x"yes" ; then
2379 cc_string=`${CC} -V 2>&1 | sed q`
2384 AC_DEFINE_UNQUOTED(PG_VERSION_STR,
2385 ["PostgreSQL $PG_VERSION on $host, compiled by $cc_string, `expr $ac_cv_sizeof_void_p \* 8`-bit"],
2386 [A string containing the version number, platform, and C compiler])
2388 # Supply a numeric version string for use by 3rd party add-ons
2389 # awk -F is a regex on some platforms, and not on others, so make "." a tab
2390 [PG_VERSION_NUM="`echo $PG_MAJORVERSION $PG_MINORVERSION |
2391 $AWK '{printf "%d%04d", $1, $2}'`"]
2392 AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number])
2393 AC_SUBST(PG_VERSION_NUM)
2395 # If we are inserting PG_SYSROOT into CPPFLAGS, do so symbolically not
2396 # literally, so that it's possible to override it at build time using
2397 # a command like "make ... PG_SYSROOT=path". This has to be done after
2398 # we've finished all configure checks that depend on CPPFLAGS.
2399 # The same for LDFLAGS, too.
2400 if test x"$PG_SYSROOT" != x; then
2401 CPPFLAGS=`echo "$CPPFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2402 LDFLAGS=`echo "$LDFLAGS" | sed -e "s| $PG_SYSROOT | \\\$(PG_SYSROOT) |"`
2404 AC_SUBST(PG_SYSROOT)
2407 # Begin output steps
2409 AC_MSG_NOTICE([using compiler=$cc_string])
2410 AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
2411 AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS])
2412 AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS])
2413 # Currently only used when LLVM is used
2414 if test "$with_llvm" = yes ; then
2415 AC_MSG_NOTICE([using CXX=$CXX])
2416 AC_MSG_NOTICE([using CXXFLAGS=$CXXFLAGS])
2417 AC_MSG_NOTICE([using CLANG=$CLANG])
2418 AC_MSG_NOTICE([using BITCODE_CFLAGS=$BITCODE_CFLAGS])
2419 AC_MSG_NOTICE([using BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS])
2422 # prepare build tree if outside source tree
2423 # Note 1: test -ef might not exist, but it's more reliable than `pwd`.
2424 # Note 2: /bin/pwd might be better than shell's built-in at getting
2425 # a symlink-free name.
2426 if ( test "$srcdir" -ef . ) >/dev/null 2>&1 || test "`cd $srcdir && /bin/pwd`" = "`/bin/pwd`"; then
2430 if test "$no_create" != yes; then
2431 _AS_ECHO_N([preparing build tree... ])
2432 pgac_abs_top_srcdir=`cd "$srcdir" && pwd`
2433 $SHELL "$ac_aux_dir/prep_buildtree" "$pgac_abs_top_srcdir" "." \
2434 || AC_MSG_ERROR(failed)
2438 AC_SUBST(vpath_build)
2441 AC_CONFIG_FILES([GNUmakefile src/Makefile.global])
2444 src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION}
2445 src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION}
2446 src/include/pg_config_os.h:src/include/port/${template}.h
2447 src/Makefile.port:src/makefiles/Makefile.${template}
2450 if test "$PORTNAME" = "win32"; then
2451 AC_CONFIG_COMMANDS([check_win32_symlinks],[
2452 # Links sometimes fail undetected on Mingw -
2453 # so here we detect it and warn the user
2454 for FILE in $CONFIG_LINKS
2456 # test -e works for symlinks in the MinGW console
2457 test -e `expr "$FILE" : '\([[^:]]*\)'` || AC_MSG_WARN([*** link for $FILE -- please fix by hand])
2462 AC_CONFIG_HEADERS([src/include/pg_config.h],
2464 # Update timestamp for pg_config.h (see Makefile.global)
2465 echo >src/include/stamp-h
2468 AC_CONFIG_HEADERS([src/include/pg_config_ext.h],
2470 # Update timestamp for pg_config_ext.h (see Makefile.global)
2471 echo >src/include/stamp-ext-h
2474 AC_CONFIG_HEADERS([src/interfaces/ecpg/include/ecpg_config.h],
2475 [echo >src/interfaces/ecpg/include/stamp-h])