]> granicus.if.org Git - postgresql/blob - configure.in
Add configure infrastructure (--with-llvm) to enable LLVM support.
[postgresql] / configure.in
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
19
20 AC_INIT([PostgreSQL], [11devel], [pgsql-bugs@postgresql.org])
21
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-2018, 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])
31
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])
35
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])
40
41 AC_CANONICAL_HOST
42
43 template=
44 AC_MSG_CHECKING([which template to use])
45
46 PGAC_ARG_REQ(with, template, [NAME], [override operating system template],
47 [
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
56 ],
57 [
58 # --with-template not given
59
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
74
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.
81
82 Please also contact <pgsql-bugs@postgresql.org> to see about
83 rectifying this.  Include the above 'checking host system type...'
84 line.
85 *******************************************************************
86 ]])
87   fi
88
89 ])
90
91 AC_MSG_RESULT([$template])
92
93 PORTNAME=$template
94 AC_SUBST(PORTNAME)
95
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
101
102
103
104 ##
105 ## Command line options
106 ##
107
108 #
109 # Add non-standard directories to the include path
110 #
111 PGAC_ARG_REQ(with, includes, [DIRS], [look for additional header files in DIRS])
112
113
114 #
115 # Add non-standard directories to the library search path
116 #
117 PGAC_ARG_REQ(with, libraries, [DIRS], [look for additional libraries in DIRS],
118              [LIBRARY_DIRS=$withval])
119
120 PGAC_ARG_REQ(with, libs,      [DIRS], [alternative spelling of --with-libraries],
121              [LIBRARY_DIRS=$withval])
122
123
124 #
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.
128 #
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])])
132
133
134 #
135 # NLS
136 #
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)
147
148 #
149 # Default port number (--with-pgport), default 5432
150 #
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)
165
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])
175 fi
176
177 #
178 # '-rpath'-like feature can be disabled
179 #
180 PGAC_ARG_BOOL(enable, rpath, yes,
181               [do not embed shared library search path in executables])
182 AC_SUBST(enable_rpath)
183
184 #
185 # Spinlocks
186 #
187 PGAC_ARG_BOOL(enable, spinlocks, yes,
188               [do not use spinlocks])
189
190 #
191 # Atomic operations
192 #
193 PGAC_ARG_BOOL(enable, atomics, yes,
194               [do not use atomic operations])
195
196 #
197 # Random number generation
198 #
199 PGAC_ARG_BOOL(enable, strong-random, yes,
200               [do not use a strong random number source])
201 AC_SUBST(enable_strong_random)
202
203 #
204 # --enable-debug adds -g to compiler flags
205 #
206 PGAC_ARG_BOOL(enable, debug, no,
207               [build with debugging symbols (-g)])
208 AC_SUBST(enable_debug)
209
210 #
211 # --enable-profiling enables gcc profiling
212 #
213 PGAC_ARG_BOOL(enable, profiling, no,
214               [build with profiling enabled ])
215
216 #
217 # --enable-coverage enables generation of code coverage metrics with gcov
218 #
219 PGAC_ARG_BOOL(enable, coverage, no,
220               [build with coverage testing instrumentation],
221 [PGAC_PATH_PROGS(GCOV, gcov)
222 if test -z "$GCOV"; then
223   AC_MSG_ERROR([gcov not found])
224 fi
225 PGAC_PATH_PROGS(LCOV, lcov)
226 if test -z "$LCOV"; then
227   AC_MSG_ERROR([lcov not found])
228 fi
229 PGAC_PATH_PROGS(GENHTML, genhtml)
230 if test -z "$GENHTML"; then
231   AC_MSG_ERROR([genhtml not found])
232 fi])
233 AC_SUBST(enable_coverage)
234
235 #
236 # DTrace
237 #
238 PGAC_ARG_BOOL(enable, dtrace, no,
239               [build with DTrace support],
240 [PGAC_PATH_PROGS(DTRACE, dtrace)
241 if test -z "$DTRACE"; then
242   AC_MSG_ERROR([dtrace not found])
243 fi
244 AC_SUBST(DTRACEFLAGS)])
245 AC_SUBST(enable_dtrace)
246
247 #
248 # TAP tests
249 #
250 PGAC_ARG_BOOL(enable, tap-tests, no,
251               [enable TAP tests (requires Perl and IPC::Run)])
252 AC_SUBST(enable_tap_tests)
253
254 #
255 # Block size
256 #
257 AC_MSG_CHECKING([for block size])
258 PGAC_ARG_REQ(with, blocksize, [BLOCKSIZE], [set table block size in kB [8]],
259              [blocksize=$withval],
260              [blocksize=8])
261 case ${blocksize} in
262   1) BLCKSZ=1024;;
263   2) BLCKSZ=2048;;
264   4) BLCKSZ=4096;;
265   8) BLCKSZ=8192;;
266  16) BLCKSZ=16384;;
267  32) BLCKSZ=32768;;
268   *) AC_MSG_ERROR([Invalid block size. Allowed values are 1,2,4,8,16,32.])
269 esac
270 AC_MSG_RESULT([${blocksize}kB])
271
272 AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
273  Size of a disk block --- this also limits the size of a tuple.  You
274  can set it bigger if you need bigger tuples (although TOAST should
275  reduce the need to have large tuples, since fields can be spread
276  across multiple tuples).
277
278  BLCKSZ must be a power of 2.  The maximum possible value of BLCKSZ
279  is currently 2^15 (32768).  This is determined by the 15-bit widths
280  of the lp_off and lp_len fields in ItemIdData (see
281  include/storage/itemid.h).
282
283  Changing BLCKSZ requires an initdb.
284 ])
285
286 #
287 # Relation segment size
288 #
289 AC_MSG_CHECKING([for segment size])
290 PGAC_ARG_REQ(with, segsize, [SEGSIZE], [set table segment size in GB [1]],
291              [segsize=$withval],
292              [segsize=1])
293 # this expression is set up to avoid unnecessary integer overflow
294 # blocksize is already guaranteed to be a factor of 1024
295 RELSEG_SIZE=`expr '(' 1024 / ${blocksize} ')' '*' ${segsize} '*' 1024`
296 test $? -eq 0 || exit 1
297 AC_MSG_RESULT([${segsize}GB])
298
299 AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
300  RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
301  Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
302  relations bigger than that are divided into multiple files.
303
304  RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
305  This is often 2 GB or 4GB in a 32-bit operating system, unless you
306  have large file support enabled.  By default, we make the limit 1 GB
307  to avoid any possible integer-overflow problems within the OS.
308  A limit smaller than necessary only means we divide a large
309  relation into more chunks than necessary, so it seems best to err
310  in the direction of a small limit.
311
312  A power-of-2 value is recommended to save a few cycles in md.c,
313  but is not absolutely required.
314
315  Changing RELSEG_SIZE requires an initdb.
316 ])
317
318 #
319 # WAL block size
320 #
321 AC_MSG_CHECKING([for WAL block size])
322 PGAC_ARG_REQ(with, wal-blocksize, [BLOCKSIZE], [set WAL block size in kB [8]],
323              [wal_blocksize=$withval],
324              [wal_blocksize=8])
325 case ${wal_blocksize} in
326   1) XLOG_BLCKSZ=1024;;
327   2) XLOG_BLCKSZ=2048;;
328   4) XLOG_BLCKSZ=4096;;
329   8) XLOG_BLCKSZ=8192;;
330  16) XLOG_BLCKSZ=16384;;
331  32) XLOG_BLCKSZ=32768;;
332  64) XLOG_BLCKSZ=65536;;
333   *) AC_MSG_ERROR([Invalid WAL block size. Allowed values are 1,2,4,8,16,32,64.])
334 esac
335 AC_MSG_RESULT([${wal_blocksize}kB])
336
337 AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
338  Size of a WAL file block.  This need have no particular relation to BLCKSZ.
339  XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
340  XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
341  buffers, else direct I/O may fail.
342
343  Changing XLOG_BLCKSZ requires an initdb.
344 ])
345
346 #
347 # C compiler
348 #
349
350 # For historical reasons you can also use --with-CC to specify the C compiler
351 # to use, although the standard way to do this is to set the CC environment
352 # variable.
353 PGAC_ARG_REQ(with, CC, [CMD], [set compiler (deprecated)], [CC=$with_CC])
354
355 case $template in
356   aix) pgac_cc_list="gcc xlc"; pgac_cxx_list="g++ xlC";;
357     *) pgac_cc_list="gcc cc"; pgac_cxx_list="g++ c++";;
358 esac
359
360 AC_PROG_CC([$pgac_cc_list])
361 AC_PROG_CXX([$pgac_cxx_list])
362
363 # Check if it's Intel's compiler, which (usually) pretends to be gcc,
364 # but has idiosyncrasies of its own.  We assume icc will define
365 # __INTEL_COMPILER regardless of CFLAGS.
366 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __INTEL_COMPILER
367 choke me
368 @%:@endif])], [ICC=yes], [ICC=no])
369
370 # Check if it's Sun Studio compiler. We assume that
371 # __SUNPRO_C will be defined for Sun Studio compilers
372 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifndef __SUNPRO_C
373 choke me
374 @%:@endif])], [SUN_STUDIO_CC=yes], [SUN_STUDIO_CC=no])
375
376 AC_SUBST(SUN_STUDIO_CC)
377
378
379 #
380 # LLVM
381 #
382 # Checked early because subsequent tests depend on it.
383 PGAC_ARG_BOOL(with, llvm, no, [build with LLVM based JIT support],
384               [AC_DEFINE([USE_LLVM], 1, [Define to 1 to build with LLVM based JIT support. (--with-llvm)])])
385 AC_SUBST(with_llvm)
386 if test "$with_llvm" = yes ; then
387    PGAC_LLVM_SUPPORT()
388 fi
389
390
391 unset CFLAGS
392
393 #
394 # Read the template
395 #
396 . "$srcdir/src/template/$template" || exit
397
398 # C[XX]FLAGS are selected so:
399 # If the user specifies something in the environment, that is used.
400 # else:  If the template file set something, that is used.
401 # else:  If coverage was enabled, don't set anything.
402 # else:  If the compiler is GCC, then we use -O2.
403 # else:  If the compiler is something else, then we use -O, unless debugging.
404
405 if test "$ac_env_CFLAGS_set" = set; then
406   CFLAGS=$ac_env_CFLAGS_value
407 elif test "${CFLAGS+set}" = set; then
408   : # (keep what template set)
409 elif test "$enable_coverage" = yes; then
410   : # no optimization by default
411 elif test "$GCC" = yes; then
412   CFLAGS="-O2"
413 else
414   # if the user selected debug mode, don't use -O
415   if test "$enable_debug" != yes; then
416     CFLAGS="-O"
417   fi
418 fi
419
420 if test "$ac_env_CXXFLAGS_set" = set; then
421   CXXFLAGS=$ac_env_CXXFLAGS_value
422 elif test "${CXXFLAGS+set}" = set; then
423   : # (keep what template set)
424 elif test "$enable_coverage" = yes; then
425   : # no optimization by default
426 elif test "$GCC" = yes; then
427   CXXFLAGS="-O2"
428 else
429   # if the user selected debug mode, don't use -O
430   if test "$enable_debug" != yes; then
431     CXXFLAGS="-O"
432   fi
433 fi
434
435 # When generating bitcode (for inlining) we always want to use -O2
436 # even when --enable-debug is specified. The bitcode it's not going to
437 # be used for line-by-line debugging, and JIT inlining doesn't work
438 # without at least -O1 (otherwise clang will emit 'noinline'
439 # attributes everywhere), which is bad for testing.  Still allow the
440 # environment to override if done explicitly.
441 if test "$ac_env_BITCODE_CFLAGS_set" = set; then
442   BITCODE_CFLAGS=$ac_env_BITCODE_CFLAGS_value
443 else
444   BITCODE_CFLAGS="-O2 $BITCODE_CFLAGS"
445 fi
446 if test "$ac_env_BITCODE_CXXFLAGS_set" = set; then
447   BITCODE_CXXFLAGS=$ac_env_BITCODE_CXXFLAGS_value
448 else
449   BITCODE_CXXFLAGS="-O2 BITCODE_CXXFLAGS"
450 fi
451
452 # C[XX]FLAGS we determined above will be added back at the end
453 user_CFLAGS=$CFLAGS
454 CFLAGS=""
455 user_CXXFLAGS=$CXXFLAGS
456 CXXFLAGS=""
457 user_BITCODE_CFLAGS=$BITCODE_CFLAGS
458 BITCODE_CFLAGS=""
459 user_BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS
460 BITCODE_CXXFLAGS=""
461
462 # set CFLAGS_VECTOR from the environment, if available
463 if test "$ac_env_CFLAGS_VECTOR_set" = set; then
464   CFLAGS_VECTOR=$ac_env_CFLAGS_VECTOR_value
465 fi
466
467 # Some versions of GCC support some additional useful warning flags.
468 # Check whether they are supported, and add them to CFLAGS if so.
469 # ICC pretends to be GCC but it's lying; it doesn't support these flags,
470 # but has its own.  Also check other compiler-specific flags here.
471
472 if test "$GCC" = yes -a "$ICC" = no; then
473   CFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith"
474   CXXFLAGS="-Wall -Wpointer-arith"
475   # These work in some but not all gcc versions
476   PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
477   # -Wdeclaration-after-statement isn't applicable for C++
478   PGAC_PROG_CC_CFLAGS_OPT([-Wendif-labels])
479   PGAC_PROG_CXX_CFLAGS_OPT([-Wendif-labels])
480   PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-format-attribute])
481   PGAC_PROG_CXX_CFLAGS_OPT([-Wmissing-format-attribute])
482   # This was included in -Wall/-Wformat in older GCC versions
483   PGAC_PROG_CC_CFLAGS_OPT([-Wformat-security])
484   PGAC_PROG_CXX_CFLAGS_OPT([-Wformat-security])
485   # Disable strict-aliasing rules; needed for gcc 3.3+
486   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
487   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
488   # Disable optimizations that assume no overflow; needed for gcc 4.3+
489   PGAC_PROG_CC_CFLAGS_OPT([-fwrapv])
490   PGAC_PROG_CXX_CFLAGS_OPT([-fwrapv])
491   # Disable FP optimizations that cause various errors on gcc 4.5+ or maybe 4.6+
492   PGAC_PROG_CC_CFLAGS_OPT([-fexcess-precision=standard])
493   PGAC_PROG_CXX_CFLAGS_OPT([-fexcess-precision=standard])
494   # Optimization flags for specific files that benefit from vectorization
495   PGAC_PROG_CC_VAR_OPT(CFLAGS_VECTOR, [-funroll-loops])
496   PGAC_PROG_CC_VAR_OPT(CFLAGS_VECTOR, [-ftree-vectorize])
497   # We want to suppress clang's unhelpful unused-command-line-argument warnings
498   # but gcc won't complain about unrecognized -Wno-foo switches, so we have to
499   # test for the positive form and if that works, add the negative form
500   PGAC_PROG_CC_VAR_OPT(NOT_THE_CFLAGS, [-Wunused-command-line-argument])
501   if test -n "$NOT_THE_CFLAGS"; then
502     CFLAGS="$CFLAGS -Wno-unused-command-line-argument"
503   fi
504 elif test "$ICC" = yes; then
505   # Intel's compiler has a bug/misoptimization in checking for
506   # division by NAN (NaN == 0), -mp1 fixes it, so add it to the CFLAGS.
507   PGAC_PROG_CC_CFLAGS_OPT([-mp1])
508   PGAC_PROG_CXX_CFLAGS_OPT([-mp1])
509   # Make sure strict aliasing is off (though this is said to be the default)
510   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
511   PGAC_PROG_CXX_CFLAGS_OPT([-fno-strict-aliasing])
512 elif test "$PORTNAME" = "aix"; then
513   # AIX's xlc has to have strict aliasing turned off too
514   PGAC_PROG_CC_CFLAGS_OPT([-qnoansialias])
515   PGAC_PROG_CXX_CFLAGS_OPT([-qnoansialias])
516   PGAC_PROG_CC_CFLAGS_OPT([-qlonglong])
517   PGAC_PROG_CXX_CFLAGS_OPT([-qlonglong])
518 elif test "$PORTNAME" = "hpux"; then
519   # On some versions of HP-UX, libm functions do not set errno by default.
520   # Fix that by using +Olibmerrno if the compiler recognizes it.
521   PGAC_PROG_CC_CFLAGS_OPT([+Olibmerrno])
522   PGAC_PROG_CXX_CFLAGS_OPT([+Olibmerrno])
523 fi
524
525 AC_SUBST(CFLAGS_VECTOR, $CFLAGS_VECTOR)
526
527 # Determine flags used to emit bitcode for JIT inlining. Need to test
528 # for behaviour changing compiler flags, to keep compatibility with
529 # compiler used for normal postgres code.
530 if test "$with_llvm" = yes ; then
531   CLANGXX="$CLANG -xc++"
532
533   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fno-strict-aliasing])
534   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fno-strict-aliasing])
535   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fwrapv])
536   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fwrapv])
537   PGAC_PROG_VARCC_VARFLAGS_OPT(CLANG, BITCODE_CFLAGS, [-fexcess-precision=standard])
538   PGAC_PROG_VARCXX_VARFLAGS_OPT(CLANGXX, BITCODE_CXXFLAGS, [-fexcess-precision=standard])
539 fi
540
541 # supply -g if --enable-debug
542 if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
543   CFLAGS="$CFLAGS -g"
544 fi
545
546 if test "$enable_debug" = yes && test "$ac_cv_prog_cxx_g" = yes; then
547   CXXFLAGS="$CXXFLAGS -g"
548 fi
549
550 # enable code coverage if --enable-coverage
551 if test "$enable_coverage" = yes; then
552   if test "$GCC" = yes; then
553     CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
554     CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
555   else
556     AC_MSG_ERROR([--enable-coverage is supported only when using GCC])
557   fi
558 fi
559
560 # enable profiling if --enable-profiling
561 if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
562   if test "$GCC" = yes; then
563     AC_DEFINE([PROFILE_PID_DIR], 1,
564            [Define to 1 to allow profiling output to be saved separately for each process.])
565     CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
566     CXXFLAGS="$CXXFLAGS -pg $PLATFORM_PROFILE_FLAGS"
567   else
568     AC_MSG_ERROR([--enable-profiling is supported only when using GCC])
569   fi
570 fi
571
572 # We already have this in Makefile.win32, but configure needs it too
573 if test "$PORTNAME" = "win32"; then
574   CPPFLAGS="$CPPFLAGS -I$srcdir/src/include/port/win32 -DEXEC_BACKEND"
575 fi
576
577 # Now that we're done automatically adding stuff to C[XX]FLAGS, put back the
578 # user-specified flags (if any) at the end.  This lets users override
579 # the automatic additions.
580 CFLAGS="$CFLAGS $user_CFLAGS"
581 CXXFLAGS="$CXXFLAGS $user_CXXFLAGS"
582 BITCODE_CFLAGS="$BITCODE_CFLAGS $user_BITCODE_CFLAGS"
583 BITCODE_CXXFLAGS="$BITCODE_CXXFLAGS $user_BITCODE_CXXFLAGS"
584
585 AC_SUBST(BITCODE_CFLAGS, $BITCODE_CFLAGS)
586 AC_SUBST(BITCODE_CXXFLAGS, $BITCODE_CXXFLAGS)
587
588 # Check if the compiler still works with the final flag settings
589 # (note, we're not checking that for CXX, which is optional)
590 AC_MSG_CHECKING([whether the C compiler still works])
591 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
592   [AC_MSG_RESULT(yes)],
593   [AC_MSG_RESULT(no)
594    AC_MSG_ERROR([cannot proceed])])
595
596 # Defend against gcc -ffast-math
597 if test "$GCC" = yes; then
598 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [@%:@ifdef __FAST_MATH__
599 choke me
600 @%:@endif])], [], [AC_MSG_ERROR([do not put -ffast-math in CFLAGS])])
601 fi
602
603 AC_PROG_CPP
604 AC_SUBST(GCC)
605
606
607 #
608 # Set up TAS assembly code if needed; the template file has now had its
609 # chance to request this.
610 #
611 AC_CONFIG_LINKS([src/backend/port/tas.s:src/backend/port/tas/${tas_file}])
612
613 if test "$need_tas" = yes ; then
614   TAS=tas.o
615 else
616   TAS=""
617 fi
618 AC_SUBST(TAS)
619
620
621 #
622 # Automatic dependency tracking
623 #
624 PGAC_ARG_BOOL(enable, depend, no, [turn on automatic dependency tracking],
625               [autodepend=yes])
626 AC_SUBST(autodepend)
627
628
629 #
630 # Enable assert checks
631 #
632 PGAC_ARG_BOOL(enable, cassert, no, [enable assertion checks (for debugging)],
633               [AC_DEFINE([USE_ASSERT_CHECKING], 1,
634                          [Define to 1 to build with assertion checks. (--enable-cassert)])])
635
636
637 #
638 # Include directories
639 #
640 ac_save_IFS=$IFS
641 IFS="${IFS}${PATH_SEPARATOR}"
642 # SRCH_INC comes from the template file
643 for dir in $with_includes $SRCH_INC; do
644   if test -d "$dir"; then
645     INCLUDES="$INCLUDES -I$dir"
646   else
647     AC_MSG_WARN([*** Include directory $dir does not exist.])
648   fi
649 done
650 IFS=$ac_save_IFS
651 AC_SUBST(INCLUDES)
652
653
654 #
655 # Library directories
656 #
657 ac_save_IFS=$IFS
658 IFS="${IFS}${PATH_SEPARATOR}"
659 # LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
660 for dir in $LIBRARY_DIRS $SRCH_LIB; do
661   if test -d "$dir"; then
662     LIBDIRS="$LIBDIRS -L$dir"
663   else
664     AC_MSG_WARN([*** Library directory $dir does not exist.])
665   fi
666 done
667 IFS=$ac_save_IFS
668
669 #
670 # Enable thread-safe client libraries
671 #
672 AC_MSG_CHECKING([allow thread-safe client libraries])
673 PGAC_ARG_BOOL(enable, thread-safety, yes, [disable thread-safety in client libraries])
674 if test "$enable_thread_safety" = yes; then
675   AC_DEFINE([ENABLE_THREAD_SAFETY], 1,
676           [Define to 1 to build client libraries as thread-safe code. (--enable-thread-safety)])
677 fi
678 AC_MSG_RESULT([$enable_thread_safety])
679 AC_SUBST(enable_thread_safety)
680
681 #
682 # ICU
683 #
684 AC_MSG_CHECKING([whether to build with ICU support])
685 PGAC_ARG_BOOL(with, icu, no, [build with ICU support],
686               [AC_DEFINE([USE_ICU], 1, [Define to build with ICU support. (--with-icu)])])
687 AC_MSG_RESULT([$with_icu])
688 AC_SUBST(with_icu)
689
690 if test "$with_icu" = yes; then
691   PKG_CHECK_MODULES(ICU, icu-uc icu-i18n)
692 fi
693
694 #
695 # Optionally build Tcl modules (PL/Tcl)
696 #
697 AC_MSG_CHECKING([whether to build with Tcl])
698 PGAC_ARG_BOOL(with, tcl, no, [build Tcl modules (PL/Tcl)])
699 AC_MSG_RESULT([$with_tcl])
700 AC_SUBST([with_tcl])
701
702 # We see if the path to the Tcl/Tk configuration scripts is specified.
703 # This will override the use of tclsh to find the paths to search.
704
705 PGAC_ARG_REQ(with, tclconfig, [DIR], [tclConfig.sh is in DIR])
706
707 #
708 # Optionally build Perl modules (PL/Perl)
709 #
710 AC_MSG_CHECKING([whether to build Perl modules])
711 PGAC_ARG_BOOL(with, perl, no, [build Perl modules (PL/Perl)])
712 AC_MSG_RESULT([$with_perl])
713 AC_SUBST(with_perl)
714
715 #
716 # Optionally build Python modules (PL/Python)
717 #
718 AC_MSG_CHECKING([whether to build Python modules])
719 PGAC_ARG_BOOL(with, python, no, [build Python modules (PL/Python)])
720 AC_MSG_RESULT([$with_python])
721 AC_SUBST(with_python)
722
723 #
724 # GSSAPI
725 #
726 AC_MSG_CHECKING([whether to build with GSSAPI support])
727 PGAC_ARG_BOOL(with, gssapi, no, [build with GSSAPI support],
728 [
729   AC_DEFINE(ENABLE_GSS, 1, [Define to build with GSSAPI support. (--with-gssapi)])
730   krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
731 ])
732 AC_MSG_RESULT([$with_gssapi])
733 AC_SUBST(with_gssapi)
734
735
736 AC_SUBST(krb_srvtab)
737
738
739 #
740 # Kerberos configuration parameters
741 #
742 PGAC_ARG_REQ(with, krb-srvnam,
743              [NAME], [default service principal name in Kerberos (GSSAPI) [postgres]],
744              [],
745              [with_krb_srvnam="postgres"])
746 AC_SUBST(with_krb_srvnam)
747 AC_DEFINE_UNQUOTED([PG_KRB_SRVNAM], ["$with_krb_srvnam"],
748                    [Define to the name of the default PostgreSQL service principal in Kerberos (GSSAPI). (--with-krb-srvnam=NAME)])
749
750
751 #
752 # PAM
753 #
754 AC_MSG_CHECKING([whether to build with PAM support])
755 PGAC_ARG_BOOL(with, pam, no,
756               [build with PAM support],
757               [AC_DEFINE([USE_PAM], 1, [Define to 1 to build with PAM support. (--with-pam)])])
758 AC_MSG_RESULT([$with_pam])
759
760
761 #
762 # BSD AUTH
763 #
764 AC_MSG_CHECKING([whether to build with BSD Authentication support])
765 PGAC_ARG_BOOL(with, bsd-auth, no,
766               [build with BSD Authentication support],
767               [AC_DEFINE([USE_BSD_AUTH], 1, [Define to 1 to build with BSD Authentication support. (--with-bsd-auth)])])
768 AC_MSG_RESULT([$with_bsd_auth])
769
770
771 #
772 # LDAP
773 #
774 AC_MSG_CHECKING([whether to build with LDAP support])
775 PGAC_ARG_BOOL(with, ldap, no,
776               [build with LDAP support],
777               [AC_DEFINE([USE_LDAP], 1, [Define to 1 to build with LDAP support. (--with-ldap)])])
778 AC_MSG_RESULT([$with_ldap])
779 AC_SUBST(with_ldap)
780
781
782 #
783 # Bonjour
784 #
785 AC_MSG_CHECKING([whether to build with Bonjour support])
786 PGAC_ARG_BOOL(with, bonjour, no,
787               [build with Bonjour support],
788               [AC_DEFINE([USE_BONJOUR], 1, [Define to 1 to build with Bonjour support. (--with-bonjour)])])
789 AC_MSG_RESULT([$with_bonjour])
790
791
792 #
793 # OpenSSL
794 #
795 AC_MSG_CHECKING([whether to build with OpenSSL support])
796 PGAC_ARG_BOOL(with, openssl, no, [build with OpenSSL support],
797               [AC_DEFINE([USE_OPENSSL], 1, [Define to build with OpenSSL support. (--with-openssl)])])
798 AC_MSG_RESULT([$with_openssl])
799 AC_SUBST(with_openssl)
800
801 #
802 # SELinux
803 #
804 AC_MSG_CHECKING([whether to build with SELinux support])
805 PGAC_ARG_BOOL(with, selinux, no, [build with SELinux support])
806 AC_SUBST(with_selinux)
807 AC_MSG_RESULT([$with_selinux])
808
809 #
810 # Systemd
811 #
812 AC_MSG_CHECKING([whether to build with systemd support])
813 PGAC_ARG_BOOL(with, systemd, no, [build with systemd support],
814               [AC_DEFINE([USE_SYSTEMD], 1, [Define to build with systemd support. (--with-systemd)])])
815 AC_SUBST(with_systemd)
816 AC_MSG_RESULT([$with_systemd])
817
818 #
819 # Readline
820 #
821 PGAC_ARG_BOOL(with, readline, yes,
822               [do not use GNU Readline nor BSD Libedit for editing])
823 # readline on MinGW has problems with backslashes in psql and other bugs.
824 # This is particularly a problem with non-US code pages.
825 # Therefore disable its use until we understand the cause. 2004-07-20
826 if test "$PORTNAME" = "win32"; then
827   if test "$with_readline" = yes; then
828     AC_MSG_WARN([*** Readline does not work on MinGW --- disabling])
829     with_readline=no
830   fi
831 fi
832
833
834 #
835 # Prefer libedit
836 #
837 PGAC_ARG_BOOL(with, libedit-preferred, no,
838               [prefer BSD Libedit over GNU Readline])
839
840
841 #
842 # UUID library
843 #
844 # There are at least three UUID libraries in common use: the FreeBSD/NetBSD
845 # library, the e2fsprogs libuuid (now part of util-linux-ng), and the OSSP
846 # UUID library.  More than one of these might be present on a given platform,
847 # so we make the user say which one she wants.
848 #
849 PGAC_ARG_REQ(with, uuid, [LIB], [build contrib/uuid-ossp using LIB (bsd,e2fs,ossp)])
850 if test x"$with_uuid" = x"" ; then
851   with_uuid=no
852 fi
853 PGAC_ARG_BOOL(with, ossp-uuid, no, [obsolete spelling of --with-uuid=ossp])
854 if test "$with_ossp_uuid" = yes ; then
855   with_uuid=ossp
856 fi
857
858 if test "$with_uuid" = bsd ; then
859   AC_DEFINE([HAVE_UUID_BSD], 1, [Define to 1 if you have BSD UUID support.])
860   UUID_EXTRA_OBJS="md5.o sha1.o"
861 elif test "$with_uuid" = e2fs ; then
862   AC_DEFINE([HAVE_UUID_E2FS], 1, [Define to 1 if you have E2FS UUID support.])
863   UUID_EXTRA_OBJS="md5.o sha1.o"
864 elif test "$with_uuid" = ossp ; then
865   AC_DEFINE([HAVE_UUID_OSSP], 1, [Define to 1 if you have OSSP UUID support.])
866   UUID_EXTRA_OBJS=""
867 elif test "$with_uuid" = no ; then
868   UUID_EXTRA_OBJS=""
869 else
870   AC_MSG_ERROR([--with-uuid must specify one of bsd, e2fs, or ossp])
871 fi
872 AC_SUBST(with_uuid)
873 AC_SUBST(UUID_EXTRA_OBJS)
874
875
876 #
877 # XML
878 #
879 PGAC_ARG_BOOL(with, libxml, no, [build with XML support],
880               [AC_DEFINE([USE_LIBXML], 1, [Define to 1 to build with XML support. (--with-libxml)])])
881
882 if test "$with_libxml" = yes ; then
883   PGAC_PATH_PROGS(XML2_CONFIG, xml2-config)
884   if test -n "$XML2_CONFIG"; then
885     for pgac_option in `$XML2_CONFIG --cflags`; do
886       case $pgac_option in
887         -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
888       esac
889     done
890     for pgac_option in `$XML2_CONFIG --libs`; do
891       case $pgac_option in
892         -L*) LDFLAGS="$LDFLAGS $pgac_option";;
893       esac
894     done
895   fi
896 fi
897
898 AC_SUBST(with_libxml)
899
900 #
901 # XSLT
902 #
903 PGAC_ARG_BOOL(with, libxslt, no, [use XSLT support when building contrib/xml2],
904               [AC_DEFINE([USE_LIBXSLT], 1, [Define to 1 to use XSLT support when building contrib/xml2. (--with-libxslt)])])
905
906
907 AC_SUBST(with_libxslt)
908
909 #
910 # tzdata
911 #
912 PGAC_ARG_REQ(with, system-tzdata,
913              [DIR], [use system time zone data in DIR])
914 AC_SUBST(with_system_tzdata)
915
916 #
917 # Zlib
918 #
919 PGAC_ARG_BOOL(with, zlib, yes,
920               [do not use Zlib])
921 AC_SUBST(with_zlib)
922
923 #
924 # Elf
925 #
926
927 # Assume system is ELF if it predefines __ELF__ as 1,
928 # otherwise believe host_os based default.
929 case $host_os in
930     freebsd1*|freebsd2*) elf=no;;
931     freebsd3*|freebsd4*) elf=yes;;
932 esac
933
934 AC_EGREP_CPP(yes,
935 [#if __ELF__
936   yes
937 #endif
938 ],
939 [ELF_SYS=true],
940 [if test "X$elf" = "Xyes" ; then
941   ELF_SYS=true
942 else
943   ELF_SYS=
944 fi])
945 AC_SUBST(ELF_SYS)
946
947 #
948 # Assignments
949 #
950
951 CPPFLAGS="$CPPFLAGS $INCLUDES"
952 LDFLAGS="$LDFLAGS $LIBDIRS"
953
954 AC_ARG_VAR(LDFLAGS_EX, [extra linker flags for linking executables only])
955 AC_ARG_VAR(LDFLAGS_SL, [extra linker flags for linking shared libraries only])
956
957 PGAC_PROG_LD
958 AC_SUBST(LD)
959 AC_SUBST(with_gnu_ld)
960 AC_PROG_RANLIB
961 PGAC_CHECK_STRIP
962 AC_CHECK_TOOL(AR, ar, ar)
963 if test "$PORTNAME" = "win32"; then
964   AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool)
965   AC_CHECK_TOOL(DLLWRAP, dllwrap, dllwrap)
966   AC_CHECK_TOOL(WINDRES, windres, windres)
967 fi
968
969 AC_PROG_INSTALL
970 # When Autoconf chooses install-sh as install program it tries to generate
971 # a relative path to it in each makefile where it substitutes it. This clashes
972 # with our Makefile.global concept. This workaround helps.
973 case $INSTALL in
974   *install-sh*) install_bin='';;
975   *) install_bin=$INSTALL;;
976 esac
977 AC_SUBST(install_bin)
978
979 PGAC_PATH_PROGS(TAR, tar)
980 AC_PROG_LN_S
981 AC_PROG_AWK
982 AC_PROG_MKDIR_P
983 # When Autoconf chooses install-sh as mkdir -p program it tries to generate
984 # a relative path to it in each makefile where it substitutes it. This clashes
985 # with our Makefile.global concept. This workaround helps.
986 case $MKDIR_P in
987   *install-sh*) MKDIR_P='\${SHELL} \${top_srcdir}/config/install-sh -c -d';;
988 esac
989
990 PGAC_PATH_BISON
991 PGAC_PATH_FLEX
992
993 PGAC_PATH_PERL
994 if test "$with_perl" = yes; then
995   if test -z "$PERL"; then
996     AC_MSG_ERROR([Perl not found])
997   fi
998   PGAC_CHECK_PERL_CONFIGS([archlibexp,privlibexp,useshrplib])
999   if test "$perl_useshrplib" != yes && test "$perl_useshrplib" != true; then
1000     AC_MSG_ERROR([cannot build PL/Perl because libperl is not a shared library
1001 You might have to rebuild your Perl installation.  Refer to the
1002 documentation for details.  Use --without-perl to disable building
1003 PL/Perl.])
1004   fi
1005   PGAC_CHECK_PERL_EMBED_CCFLAGS
1006   PGAC_CHECK_PERL_EMBED_LDFLAGS
1007 fi
1008
1009 if test "$with_python" = yes; then
1010   PGAC_PATH_PYTHON
1011   PGAC_CHECK_PYTHON_EMBED_SETUP
1012 fi
1013
1014 if test "$cross_compiling" = yes && test -z "$with_system_tzdata"; then
1015   PGAC_PATH_PROGS(ZIC, zic)
1016   if test -z "$ZIC"; then
1017     AC_MSG_ERROR([
1018 When cross-compiling, either use the option --with-system-tzdata to use
1019 existing time-zone data, or set the environment variable ZIC to a zic
1020 program to use during the build.])
1021   fi
1022 fi
1023
1024 #
1025 # Pthreads
1026 #
1027 # For each platform, we need to know about any special compile and link
1028 # libraries, and whether the normal C function names are thread-safe.
1029 # See the comment at the top of src/port/thread.c for more information.
1030 # WIN32 doesn't need the pthread tests;  it always uses threads
1031 #
1032 # These tests are run before the library-tests, because linking with the
1033 # other libraries can pull in the pthread functions as a side-effect.  We
1034 # want to use the -pthread or similar flags directly, and not rely on
1035 # the side-effects of linking with some other library.
1036 #
1037 # note: We have to use AS_IF here rather than plain if. The AC_CHECK_HEADER
1038 # invocation below is the first one in the script, and autoconf generates
1039 # additional code for that, which must not be inside the if-block. AS_IF
1040 # knows how to do that.
1041 AS_IF([test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"],
1042 [ # then
1043 AX_PTHREAD      # set thread flags
1044
1045 # Some platforms use these, so just define them.  They can't hurt if they
1046 # are not supported.  For example, on Solaris -D_POSIX_PTHREAD_SEMANTICS
1047 # enables 5-arg getpwuid_r, among other things.
1048 PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS"
1049
1050 # Check for *_r functions
1051 _CFLAGS="$CFLAGS"
1052 _LIBS="$LIBS"
1053 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
1054 LIBS="$LIBS $PTHREAD_LIBS"
1055
1056 AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([
1057 pthread.h not found;  use --disable-thread-safety to disable thread safety])])
1058
1059 AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r])
1060
1061 # Do test here with the proper thread flags
1062 PGAC_FUNC_STRERROR_R_INT
1063
1064 CFLAGS="$_CFLAGS"
1065 LIBS="$_LIBS"
1066
1067 ], [ # else
1068 # do not use values from template file
1069 PTHREAD_CFLAGS=
1070 PTHREAD_LIBS=
1071 ]) # fi
1072
1073 AC_SUBST(PTHREAD_CFLAGS)
1074 AC_SUBST(PTHREAD_LIBS)
1075
1076
1077 ##
1078 ## Libraries
1079 ##
1080 ## Most libraries are included only if they demonstrably provide a function
1081 ## we need, but libm is an exception: always include it, because there are
1082 ## too many compilers that play cute optimization games that will break
1083 ## probes for standard functions such as pow().
1084 ##
1085
1086 AC_CHECK_LIB(m, main)
1087 AC_SEARCH_LIBS(setproctitle, util)
1088 AC_SEARCH_LIBS(dlopen, dl)
1089 AC_SEARCH_LIBS(socket, [socket ws2_32])
1090 AC_SEARCH_LIBS(shl_load, dld)
1091 # We only use libld in port/dynloader/aix.c
1092 case $host_os in
1093      aix*)
1094         AC_SEARCH_LIBS(ldopen, ld)
1095         ;;
1096 esac
1097 AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
1098 AC_SEARCH_LIBS(crypt, crypt)
1099 AC_SEARCH_LIBS(shm_open, rt)
1100 AC_SEARCH_LIBS(shm_unlink, rt)
1101 AC_SEARCH_LIBS(clock_gettime, [rt posix4])
1102 # Solaris:
1103 AC_SEARCH_LIBS(fdatasync, [rt posix4])
1104 # Required for thread_test.c on Solaris
1105 AC_SEARCH_LIBS(sched_yield, rt)
1106 # Required for thread_test.c on Solaris 2.5:
1107 # Other ports use it too (HP-UX) so test unconditionally
1108 AC_SEARCH_LIBS(gethostbyname_r, nsl)
1109 # Cygwin:
1110 AC_SEARCH_LIBS(shmget, cygipc)
1111
1112 if test "$with_readline" = yes; then
1113   PGAC_CHECK_READLINE
1114   if test x"$pgac_cv_check_readline" = x"no"; then
1115     AC_MSG_ERROR([readline library not found
1116 If you have readline already installed, see config.log for details on the
1117 failure.  It is possible the compiler isn't looking in the proper directory.
1118 Use --without-readline to disable readline support.])
1119   fi
1120 fi
1121
1122 if test "$with_zlib" = yes; then
1123   AC_CHECK_LIB(z, inflate, [],
1124                [AC_MSG_ERROR([zlib library not found
1125 If you have zlib already installed, see config.log for details on the
1126 failure.  It is possible the compiler isn't looking in the proper directory.
1127 Use --without-zlib to disable zlib support.])])
1128 fi
1129
1130 if test "$enable_spinlocks" = yes; then
1131   AC_DEFINE(HAVE_SPINLOCKS, 1, [Define to 1 if you have spinlocks.])
1132 else
1133   AC_MSG_WARN([
1134 *** Not using spinlocks will cause poor performance.])
1135 fi
1136
1137 if test "$enable_atomics" = yes; then
1138   AC_DEFINE(HAVE_ATOMICS, 1, [Define to 1 if you want to use atomics if available.])
1139 else
1140   AC_MSG_WARN([
1141 *** Not using atomic operations will cause poor performance.])
1142 fi
1143
1144 if test "$with_gssapi" = yes ; then
1145   if test "$PORTNAME" != "win32"; then
1146     AC_SEARCH_LIBS(gss_init_sec_context, [gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'], [],
1147                    [AC_MSG_ERROR([could not find function 'gss_init_sec_context' required for GSSAPI])])
1148   else
1149     LIBS="$LIBS -lgssapi32"
1150   fi
1151 fi
1152
1153 if test "$with_openssl" = yes ; then
1154   dnl Order matters!
1155   if test "$PORTNAME" != "win32"; then
1156      AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [AC_MSG_ERROR([library 'crypto' is required for OpenSSL])])
1157      AC_CHECK_LIB(ssl,    SSL_new, [], [AC_MSG_ERROR([library 'ssl' is required for OpenSSL])])
1158   else
1159      AC_SEARCH_LIBS(CRYPTO_new_ex_data, [eay32 crypto], [], [AC_MSG_ERROR([library 'eay32' or 'crypto' is required for OpenSSL])])
1160      AC_SEARCH_LIBS(SSL_new, [ssleay32 ssl], [], [AC_MSG_ERROR([library 'ssleay32' or 'ssl' is required for OpenSSL])])
1161   fi
1162   AC_CHECK_FUNCS([SSL_clear_options SSL_get_current_compression X509_get_signature_nid])
1163   # Functions introduced in OpenSSL 1.1.0. We used to check for
1164   # OPENSSL_VERSION_NUMBER, but that didn't work with 1.1.0, because LibreSSL
1165   # defines OPENSSL_VERSION_NUMBER to claim version 2.0.0, even though it
1166   # doesn't have these OpenSSL 1.1.0 functions. So check for individual
1167   # functions.
1168   AC_CHECK_FUNCS([OPENSSL_init_ssl BIO_get_data BIO_meth_new ASN1_STRING_get0_data RAND_OpenSSL])
1169   # OpenSSL versions before 1.1.0 required setting callback functions, for
1170   # thread-safety. In 1.1.0, it's no longer required, and CRYPTO_lock()
1171   # function was removed.
1172   AC_CHECK_FUNCS([CRYPTO_lock])
1173 fi
1174
1175 if test "$with_pam" = yes ; then
1176   AC_CHECK_LIB(pam,    pam_start, [], [AC_MSG_ERROR([library 'pam' is required for PAM])])
1177 fi
1178
1179 if test "$with_libxml" = yes ; then
1180   AC_CHECK_LIB(xml2, xmlSaveToBuffer, [], [AC_MSG_ERROR([library 'xml2' (version >= 2.6.23) is required for XML support])])
1181 fi
1182
1183 if test "$with_libxslt" = yes ; then
1184   AC_CHECK_LIB(xslt, xsltCleanupGlobals, [], [AC_MSG_ERROR([library 'xslt' is required for XSLT support])])
1185 fi
1186
1187 # Note: We can test for libldap_r only after we know PTHREAD_LIBS
1188 if test "$with_ldap" = yes ; then
1189   _LIBS="$LIBS"
1190   if test "$PORTNAME" != "win32"; then
1191     AC_CHECK_LIB(ldap, ldap_bind, [],
1192                  [AC_MSG_ERROR([library 'ldap' is required for LDAP])],
1193                  [$EXTRA_LDAP_LIBS])
1194     LDAP_LIBS_BE="-lldap $EXTRA_LDAP_LIBS"
1195     if test "$enable_thread_safety" = yes; then
1196       # on some platforms ldap_r fails to link without PTHREAD_LIBS
1197       AC_CHECK_LIB(ldap_r, ldap_simple_bind, [],
1198                    [AC_MSG_ERROR([library 'ldap_r' is required for LDAP])],
1199                    [$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
1200       LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"
1201     else
1202       LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
1203     fi
1204     AC_CHECK_FUNCS([ldap_initialize])
1205   else
1206     AC_CHECK_LIB(wldap32, ldap_bind, [], [AC_MSG_ERROR([library 'wldap32' is required for LDAP])])
1207     LDAP_LIBS_FE="-lwldap32"
1208     LDAP_LIBS_BE="-lwldap32"
1209   fi
1210   LIBS="$_LIBS"
1211 fi
1212 AC_SUBST(LDAP_LIBS_FE)
1213 AC_SUBST(LDAP_LIBS_BE)
1214
1215 # for contrib/sepgsql
1216 if test "$with_selinux" = yes; then
1217   AC_CHECK_LIB(selinux, security_compute_create_name, [],
1218                [AC_MSG_ERROR([library 'libselinux', version 2.1.10 or newer, is required for SELinux support])])
1219 fi
1220
1221 # for contrib/uuid-ossp
1222 if test "$with_uuid" = bsd ; then
1223   # On BSD, the UUID functions are in libc
1224   AC_CHECK_FUNC(uuid_to_string,
1225     [UUID_LIBS=""],
1226     [AC_MSG_ERROR([BSD UUID functions are not present])])
1227 elif test "$with_uuid" = e2fs ; then
1228   # On macOS, the UUID functions are in libc
1229   AC_CHECK_FUNC(uuid_generate,
1230     [UUID_LIBS=""],
1231     [AC_CHECK_LIB(uuid, uuid_generate,
1232       [UUID_LIBS="-luuid"],
1233       [AC_MSG_ERROR([library 'uuid' is required for E2FS UUID])])])
1234 elif test "$with_uuid" = ossp ; then
1235   AC_CHECK_LIB(ossp-uuid, uuid_export,
1236     [UUID_LIBS="-lossp-uuid"],
1237     [AC_CHECK_LIB(uuid, uuid_export,
1238       [UUID_LIBS="-luuid"],
1239       [AC_MSG_ERROR([library 'ossp-uuid' or 'uuid' is required for OSSP UUID])])])
1240 fi
1241 AC_SUBST(UUID_LIBS)
1242
1243
1244 ##
1245 ## Header files
1246 ##
1247
1248 AC_CHECK_HEADERS([atomic.h crypt.h dld.h fp_class.h getopt.h ieeefp.h ifaddrs.h langinfo.h mbarrier.h poll.h sys/epoll.h sys/ipc.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/shm.h sys/sockio.h sys/tas.h sys/un.h termios.h ucred.h utime.h wchar.h wctype.h])
1249
1250 # On BSD, test for net/if.h will fail unless sys/socket.h
1251 # is included first.
1252 AC_CHECK_HEADERS(net/if.h, [], [],
1253 [AC_INCLUDES_DEFAULT
1254 #include <sys/socket.h>
1255 ])
1256
1257 # On OpenBSD, test for sys/ucred.h will fail unless sys/param.h
1258 # is included first.
1259 AC_CHECK_HEADERS(sys/ucred.h, [], [],
1260 [AC_INCLUDES_DEFAULT
1261 #include <sys/param.h>
1262 ])
1263
1264 # At least on IRIX, test for netinet/tcp.h will fail unless
1265 # netinet/in.h is included first.
1266 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
1267 [AC_INCLUDES_DEFAULT
1268 #include <netinet/in.h>
1269 ])
1270
1271 if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
1272   AC_CHECK_HEADERS(readline/readline.h, [],
1273         [AC_CHECK_HEADERS(readline.h, [],
1274                 [AC_MSG_ERROR([readline header not found
1275 If you have readline already installed, see config.log for details on the
1276 failure.  It is possible the compiler isn't looking in the proper directory.
1277 Use --without-readline to disable readline support.])])])
1278   AC_CHECK_HEADERS(readline/history.h, [],
1279         [AC_CHECK_HEADERS(history.h, [],
1280                 [AC_MSG_ERROR([history header not found
1281 If you have readline already installed, see config.log for details on the
1282 failure.  It is possible the compiler isn't looking in the proper directory.
1283 Use --without-readline to disable readline support.])])])
1284 fi
1285
1286 if expr x"$pgac_cv_check_readline" : 'x-ledit' >/dev/null ; then
1287 # Some installations of libedit usurp /usr/include/readline/, which seems
1288 # bad practice, since in combined installations readline will have its headers
1289 # there.  We might have to resort to AC_EGREP checks to make sure we found
1290 # the proper header...
1291   AC_CHECK_HEADERS(editline/readline.h, [],
1292         [AC_CHECK_HEADERS(readline.h, [],
1293                 [AC_CHECK_HEADERS(readline/readline.h, [],
1294                         [AC_MSG_ERROR([readline header not found
1295 If you have libedit already installed, see config.log for details on the
1296 failure.  It is possible the compiler isn't looking in the proper directory.
1297 Use --without-readline to disable libedit support.])])])])
1298 # Note: in a libedit installation, history.h is sometimes a dummy, and may
1299 # not be there at all.  Hence, don't complain if not found.  We must check
1300 # though, since in yet other versions it is an independent header.
1301   AC_CHECK_HEADERS(editline/history.h, [],
1302         [AC_CHECK_HEADERS(history.h, [],
1303                 [AC_CHECK_HEADERS(readline/history.h)])])
1304 fi
1305
1306 if test "$with_zlib" = yes; then
1307   AC_CHECK_HEADER(zlib.h, [], [AC_MSG_ERROR([zlib header not found
1308 If you have zlib already installed, see config.log for details on the
1309 failure.  It is possible the compiler isn't looking in the proper directory.
1310 Use --without-zlib to disable zlib support.])])
1311 fi
1312
1313 if test "$with_gssapi" = yes ; then
1314   AC_CHECK_HEADERS(gssapi/gssapi.h, [],
1315         [AC_CHECK_HEADERS(gssapi.h, [], [AC_MSG_ERROR([gssapi.h header file is required for GSSAPI])])])
1316 fi
1317
1318 if test "$with_openssl" = yes ; then
1319   AC_CHECK_HEADER(openssl/ssl.h, [], [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL])])
1320   AC_CHECK_HEADER(openssl/err.h, [], [AC_MSG_ERROR([header file <openssl/err.h> is required for OpenSSL])])
1321 fi
1322
1323 if test "$with_pam" = yes ; then
1324   AC_CHECK_HEADERS(security/pam_appl.h, [],
1325                    [AC_CHECK_HEADERS(pam/pam_appl.h, [],
1326                                      [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM.])])])
1327 fi
1328
1329 if test "$with_bsd_auth" = yes ; then
1330   AC_CHECK_HEADER(bsd_auth.h, [], [AC_MSG_ERROR([header file <bsd_auth.h> is required for BSD Authentication support])])
1331 fi
1332
1333 if test "$with_systemd" = yes ; then
1334   AC_CHECK_HEADER(systemd/sd-daemon.h, [], [AC_MSG_ERROR([header file <systemd/sd-daemon.h> is required for systemd support])])
1335 fi
1336
1337 if test "$with_libxml" = yes ; then
1338   AC_CHECK_HEADER(libxml/parser.h, [], [AC_MSG_ERROR([header file <libxml/parser.h> is required for XML support])])
1339 fi
1340
1341 if test "$with_libxslt" = yes ; then
1342   AC_CHECK_HEADER(libxslt/xslt.h, [], [AC_MSG_ERROR([header file <libxslt/xslt.h> is required for XSLT support])])
1343 fi
1344
1345 if test "$with_ldap" = yes ; then
1346   if test "$PORTNAME" != "win32"; then
1347      AC_CHECK_HEADERS(ldap.h, [],
1348                       [AC_MSG_ERROR([header file <ldap.h> is required for LDAP])])
1349      PGAC_LDAP_SAFE
1350   else
1351      AC_CHECK_HEADERS(winldap.h, [],
1352                       [AC_MSG_ERROR([header file <winldap.h> is required for LDAP])],
1353                       [AC_INCLUDES_DEFAULT
1354 #include <windows.h>
1355                       ])
1356   fi
1357 fi
1358
1359 if test "$with_bonjour" = yes ; then
1360   AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])
1361 dnl At some point we might add something like
1362 dnl AC_SEARCH_LIBS(DNSServiceRegister, dns_sd)
1363 dnl but right now, what that would mainly accomplish is to encourage
1364 dnl people to try to use the avahi implementation, which does not work.
1365 dnl If you want to use Apple's own Bonjour code on another platform,
1366 dnl just add -ldns_sd to LIBS manually.
1367 fi
1368
1369 # for contrib/uuid-ossp
1370 if test "$with_uuid" = bsd ; then
1371   AC_CHECK_HEADERS(uuid.h,
1372     [AC_EGREP_HEADER([uuid_to_string], uuid.h, [],
1373       [AC_MSG_ERROR([header file <uuid.h> does not match BSD UUID library])])],
1374     [AC_MSG_ERROR([header file <uuid.h> is required for BSD UUID])])
1375 elif test "$with_uuid" = e2fs ; then
1376   AC_CHECK_HEADERS(uuid/uuid.h,
1377     [AC_EGREP_HEADER([uuid_generate], uuid/uuid.h, [],
1378       [AC_MSG_ERROR([header file <uuid/uuid.h> does not match E2FS UUID library])])],
1379     [AC_CHECK_HEADERS(uuid.h,
1380       [AC_EGREP_HEADER([uuid_generate], uuid.h, [],
1381         [AC_MSG_ERROR([header file <uuid.h> does not match E2FS UUID library])])],
1382       [AC_MSG_ERROR([header file <uuid/uuid.h> or <uuid.h> is required for E2FS UUID])])])
1383 elif test "$with_uuid" = ossp ; then
1384   AC_CHECK_HEADERS(ossp/uuid.h,
1385     [AC_EGREP_HEADER([uuid_export], ossp/uuid.h, [],
1386       [AC_MSG_ERROR([header file <ossp/uuid.h> does not match OSSP UUID library])])],
1387     [AC_CHECK_HEADERS(uuid.h,
1388       [AC_EGREP_HEADER([uuid_export], uuid.h, [],
1389         [AC_MSG_ERROR([header file <uuid.h> does not match OSSP UUID library])])],
1390       [AC_MSG_ERROR([header file <ossp/uuid.h> or <uuid.h> is required for OSSP UUID])])])
1391 fi
1392
1393 if test "$PORTNAME" = "win32" ; then
1394    AC_CHECK_HEADERS(crtdefs.h)
1395 fi
1396
1397 ##
1398 ## Types, structures, compiler characteristics
1399 ##
1400
1401 m4_defun([AC_PROG_CC_STDC], []) dnl We don't want that.
1402 AC_C_BIGENDIAN
1403 AC_C_INLINE
1404 PGAC_PRINTF_ARCHETYPE
1405 AC_C_FLEXIBLE_ARRAY_MEMBER
1406 PGAC_C_SIGNED
1407 PGAC_C_FUNCNAME_SUPPORT
1408 PGAC_C_STATIC_ASSERT
1409 PGAC_C_TYPEOF
1410 PGAC_C_TYPES_COMPATIBLE
1411 PGAC_C_BUILTIN_BSWAP16
1412 PGAC_C_BUILTIN_BSWAP32
1413 PGAC_C_BUILTIN_BSWAP64
1414 PGAC_C_BUILTIN_CONSTANT_P
1415 PGAC_C_BUILTIN_UNREACHABLE
1416 PGAC_C_COMPUTED_GOTO
1417 PGAC_C_VA_ARGS
1418 PGAC_STRUCT_TIMEZONE
1419 PGAC_UNION_SEMUN
1420 PGAC_STRUCT_SOCKADDR_UN
1421 PGAC_STRUCT_SOCKADDR_STORAGE
1422 PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS
1423 PGAC_STRUCT_ADDRINFO
1424 AC_TYPE_INTPTR_T
1425 AC_TYPE_UINTPTR_T
1426 AC_TYPE_LONG_LONG_INT
1427
1428 PGAC_TYPE_LOCALE_T
1429
1430 # MSVC doesn't cope well with defining restrict to __restrict, the
1431 # spelling it understands, because it conflicts with
1432 # __declspec(restrict). Therefore we define pg_restrict to the
1433 # appropriate definition, which presumably won't conflict.
1434 #
1435 # Allow platforms with buggy compilers to force restrict to not be
1436 # used by setting $FORCE_DISABLE_RESTRICT=yes in the relevant
1437 # template.
1438 AC_C_RESTRICT
1439 if test "$ac_cv_c_restrict" = "no" -o "x$FORCE_DISABLE_RESTRICT" = "xyes"; then
1440   pg_restrict=""
1441 else
1442   pg_restrict="$ac_cv_c_restrict"
1443 fi
1444 AC_DEFINE_UNQUOTED([pg_restrict], [$pg_restrict],
1445 [Define to keyword to use for C99 restrict support, or to nothing if not
1446 supported])
1447
1448 AC_CHECK_TYPES([struct cmsgcred], [], [],
1449 [#include <sys/socket.h>
1450 #include <sys/param.h>
1451 #ifdef HAVE_SYS_UCRED_H
1452 #include <sys/ucred.h>
1453 #endif])
1454
1455 AC_CHECK_TYPES([struct option], [], [],
1456 [#ifdef HAVE_GETOPT_H
1457 #include <getopt.h>
1458 #endif])
1459
1460 if test "$with_zlib" = yes; then
1461   # Check that <zlib.h> defines z_streamp (versions before about 1.0.4
1462   # did not).  While we could work around the lack of z_streamp, it
1463   # seems unwise to encourage people to use such old zlib versions...
1464   AC_CHECK_TYPE(z_streamp, [], [AC_MSG_ERROR([zlib version is too old
1465 Use --without-zlib to disable zlib support.])],
1466                 [#include <zlib.h>])
1467 fi
1468
1469 # On PPC, check if assembler supports LWARX instruction's mutex hint bit
1470 case $host_cpu in
1471   ppc*|powerpc*)
1472     AC_MSG_CHECKING([whether assembler supports lwarx hint bit])
1473     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
1474         [int a = 0; int *p = &a; int r;
1475          __asm__ __volatile__ (" lwarx %0,0,%1,1\n" : "=&r"(r) : "r"(p));])],
1476         [pgac_cv_have_ppc_mutex_hint=yes],
1477         [pgac_cv_have_ppc_mutex_hint=no])
1478     AC_MSG_RESULT([$pgac_cv_have_ppc_mutex_hint])
1479     if test x"$pgac_cv_have_ppc_mutex_hint" = xyes ; then
1480         AC_DEFINE(HAVE_PPC_LWARX_MUTEX_HINT, 1, [Define to 1 if the assembler supports PPC's LWARX mutex hint bit.])
1481     fi
1482   ;;
1483 esac
1484
1485 # Check largefile support.  You might think this is a system service not a
1486 # compiler characteristic, but you'd be wrong.  We must check this before
1487 # probing existence of related functions such as fseeko, since the largefile
1488 # defines can affect what is generated for that.
1489 if test "$PORTNAME" != "win32"; then
1490    AC_SYS_LARGEFILE
1491    dnl Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define
1492    dnl _DARWIN_USE_64_BIT_INODE, but it isn't: on macOS 10.5 that activates a
1493    dnl bug that causes readdir() to sometimes return EINVAL.  On later macOS
1494    dnl versions where the feature actually works, it's on by default anyway.
1495    AH_VERBATIM([_DARWIN_USE_64_BIT_INODE],[])
1496 fi
1497
1498 # Check for largefile support (must be after AC_SYS_LARGEFILE)
1499 AC_CHECK_SIZEOF([off_t])
1500
1501 # If we don't have largefile support, can't handle segsize >= 2GB.
1502 if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
1503    AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1504 fi
1505
1506
1507 ##
1508 ## Functions, global variables
1509 ##
1510
1511 PGAC_VAR_INT_TIMEZONE
1512 AC_FUNC_ACCEPT_ARGTYPES
1513 PGAC_FUNC_GETTIMEOFDAY_1ARG
1514 PGAC_FUNC_WCSTOMBS_L
1515
1516 # Some versions of libedit contain strlcpy(), setproctitle(), and other
1517 # symbols that that library has no business exposing to the world.  Pending
1518 # acquisition of a clue by those developers, ignore libedit (including its
1519 # possible alias of libreadline) while checking for everything else.
1520 LIBS_including_readline="$LIBS"
1521 LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`
1522
1523 AC_CHECK_FUNCS([cbrt clock_gettime dlopen fdatasync getifaddrs getpeerucred getrlimit mbstowcs_l memmove poll posix_fallocate pstat pthread_is_threaded_np readlink setproctitle setsid shm_open symlink sync_file_range utime utimes wcstombs_l])
1524
1525 AC_REPLACE_FUNCS(fseeko)
1526 case $host_os in
1527         # NetBSD uses a custom fseeko/ftello built on fsetpos/fgetpos
1528         # Mingw uses macros to access Win32 API calls
1529         netbsd*|mingw*)
1530                 AC_DEFINE(HAVE_FSEEKO, 1, [Define to 1 because replacement version used.])
1531                 ac_cv_func_fseeko=yes;;
1532         *)
1533                 AC_FUNC_FSEEKO;;
1534 esac
1535
1536 # posix_fadvise() is a no-op on Solaris, so don't incur function overhead
1537 # by calling it, 2009-04-02
1538 # http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/gen/posix_fadvise.c
1539 if test "$PORTNAME" != "solaris"; then
1540 AC_CHECK_FUNCS(posix_fadvise)
1541 AC_CHECK_DECLS(posix_fadvise, [], [], [#include <fcntl.h>])
1542 fi
1543
1544 AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
1545 AC_CHECK_DECLS([strlcat, strlcpy, strnlen])
1546 # This is probably only present on macOS, but may as well check always
1547 AC_CHECK_DECLS(F_FULLFSYNC, [], [], [#include <fcntl.h>])
1548
1549 HAVE_IPV6=no
1550 AC_CHECK_TYPE([struct sockaddr_in6],
1551         [AC_DEFINE(HAVE_IPV6, 1, [Define to 1 if you have support for IPv6.])
1552          HAVE_IPV6=yes],
1553         [],
1554 [$ac_includes_default
1555 #include <netinet/in.h>])
1556 AC_SUBST(HAVE_IPV6)
1557
1558 AC_CACHE_CHECK([for PS_STRINGS], [pgac_cv_var_PS_STRINGS],
1559 [AC_LINK_IFELSE([AC_LANG_PROGRAM(
1560 [#include <machine/vmparam.h>
1561 #include <sys/exec.h>
1562 ],
1563 [PS_STRINGS->ps_nargvstr = 1;
1564 PS_STRINGS->ps_argvstr = "foo";])],
1565 [pgac_cv_var_PS_STRINGS=yes],
1566 [pgac_cv_var_PS_STRINGS=no])])
1567 if test "$pgac_cv_var_PS_STRINGS" = yes ; then
1568   AC_DEFINE([HAVE_PS_STRINGS], 1, [Define to 1 if the PS_STRINGS thing exists.])
1569 fi
1570
1571
1572 # We use our snprintf.c emulation if either snprintf() or vsnprintf()
1573 # is missing.  Yes, there are machines that have only one.  We may
1574 # also decide to use snprintf.c if snprintf() is present but does not
1575 # have all the features we need --- see below.
1576
1577 if test "$PORTNAME" = "win32"; then
1578   # Win32 gets snprintf.c built unconditionally.
1579   #
1580   # To properly translate all NLS languages strings, we must support the
1581   # *printf() %$ format, which allows *printf() arguments to be selected
1582   # by position in the translated string.
1583   #
1584   # libintl versions < 0.13 use the native *printf() functions, and Win32
1585   # *printf() doesn't understand %$, so we must use our /port versions,
1586   # which do understand %$. libintl versions >= 0.13 include their own
1587   # *printf versions on Win32.  The libintl 0.13 release note text is:
1588   #
1589   #   C format strings with positions, as they arise when a translator
1590   #   needs to reorder a sentence, are now supported on all platforms.
1591   #   On those few platforms (NetBSD and Woe32) for which the native
1592   #   printf()/fprintf()/... functions don't support such format
1593   #   strings, replacements are provided through <libintl.h>.
1594   #
1595   # We could use libintl >= 0.13's *printf() if we were sure that we had
1596   # a litint >= 0.13 at runtime, but seeing that there is no clean way
1597   # to guarantee that, it is best to just use our own, so we are sure to
1598   # get %$ support. In include/port.h we disable the *printf() macros
1599   # that might have been defined by libintl.
1600   #
1601   # We do this unconditionally whether NLS is used or not so we are sure
1602   # that all Win32 libraries and binaries behave the same.
1603   pgac_need_repl_snprintf=yes
1604 else
1605   pgac_need_repl_snprintf=no
1606   AC_CHECK_FUNCS(snprintf, [], pgac_need_repl_snprintf=yes)
1607   AC_CHECK_FUNCS(vsnprintf, [], pgac_need_repl_snprintf=yes)
1608 fi
1609
1610
1611 # Check whether <stdio.h> declares snprintf() and vsnprintf(); if not,
1612 # include/c.h will provide declarations.  Note this is a separate test
1613 # from whether the functions exist in the C library --- there are
1614 # systems that have the functions but don't bother to declare them :-(
1615
1616 AC_CHECK_DECLS([snprintf, vsnprintf])
1617
1618
1619 dnl Cannot use AC_CHECK_FUNC because isinf may be a macro
1620 AC_CACHE_CHECK([for isinf], ac_cv_func_isinf,
1621 [AC_LINK_IFELSE([AC_LANG_PROGRAM([
1622 #include <math.h>
1623 double glob_double;
1624 ],
1625 [return isinf(glob_double) ? 0 : 1;])],
1626 [ac_cv_func_isinf=yes],
1627 [ac_cv_func_isinf=no])])
1628
1629 if test $ac_cv_func_isinf = yes ; then
1630   AC_DEFINE(HAVE_ISINF, 1, [Define to 1 if you have isinf().])
1631 else
1632   AC_LIBOBJ(isinf)
1633   # Look for a way to implement a substitute for isinf()
1634   AC_CHECK_FUNCS([fpclass fp_class fp_class_d class], [break])
1635 fi
1636
1637 AC_REPLACE_FUNCS([crypt fls getopt getrusage inet_aton mkdtemp random rint srandom strerror strlcat strlcpy strnlen])
1638
1639 case $host_os in
1640
1641         # Windows uses a specialised env handler
1642         # and doesn't need a replacement getpeereid because it doesn't use
1643         # Unix sockets.
1644         mingw*)
1645                 AC_DEFINE(HAVE_UNSETENV, 1, [Define to 1 because replacement version used.])
1646                 AC_DEFINE(HAVE_GETPEEREID, 1, [Define to 1 because function not required.])
1647                 ac_cv_func_unsetenv=yes
1648                 ac_cv_func_getpeereid=yes;;
1649         *)
1650                 AC_REPLACE_FUNCS([unsetenv getpeereid])
1651                 ;;
1652 esac
1653
1654 # System's version of getaddrinfo(), if any, may be used only if we found
1655 # a definition for struct addrinfo; see notes in src/include/getaddrinfo.h.
1656 # We use only our own getaddrinfo.c on Windows, but it's time to revisit that.
1657 if test x"$ac_cv_type_struct_addrinfo" = xyes && \
1658    test "$PORTNAME" != "win32"; then
1659   AC_REPLACE_FUNCS([getaddrinfo])
1660 else
1661   AC_LIBOBJ(getaddrinfo)
1662 fi
1663
1664 # Similarly, use system's getopt_long() only if system provides struct option.
1665 if test x"$ac_cv_type_struct_option" = xyes ; then
1666   AC_REPLACE_FUNCS([getopt_long])
1667 else
1668   AC_LIBOBJ(getopt_long)
1669 fi
1670
1671 # Solaris' getopt() doesn't do what we want for long options, so always use
1672 # our version on that platform.
1673 if test "$PORTNAME" = "solaris"; then
1674   AC_LIBOBJ(getopt)
1675 fi
1676
1677 # mingw has adopted a GNU-centric interpretation of optind/optreset,
1678 # so always use our version on Windows.
1679 if test "$PORTNAME" = "win32"; then
1680   AC_LIBOBJ(getopt)
1681   AC_LIBOBJ(getopt_long)
1682 fi
1683
1684 # Win32 (really MinGW) support
1685 if test "$PORTNAME" = "win32"; then
1686   AC_REPLACE_FUNCS(gettimeofday)
1687   AC_LIBOBJ(dirmod)
1688   AC_LIBOBJ(kill)
1689   AC_LIBOBJ(open)
1690   AC_LIBOBJ(system)
1691   AC_LIBOBJ(win32env)
1692   AC_LIBOBJ(win32error)
1693   AC_LIBOBJ(win32security)
1694   AC_LIBOBJ(win32setlocale)
1695   AC_DEFINE([HAVE_SYMLINK], 1,
1696             [Define to 1 if you have the `symlink' function.])
1697   AC_CHECK_TYPES(MINIDUMP_TYPE, [pgac_minidump_type=yes], [pgac_minidump_type=no], [
1698 #define WIN32_LEAN_AND_MEAN
1699 #include <windows.h>
1700 #include <string.h>
1701 #include <dbghelp.h>])
1702 fi
1703 if test x"$pgac_minidump_type" = x"yes" ; then
1704   AC_SUBST(have_win32_dbghelp,yes)
1705 else
1706   AC_SUBST(have_win32_dbghelp,no)
1707 fi
1708
1709 # Cygwin needs only a bit of that
1710 if test "$PORTNAME" = "cygwin"; then
1711   AC_LIBOBJ(dirmod)
1712 fi
1713
1714 AC_CHECK_DECLS([sys_siglist], [], [],
1715 [#include <signal.h>
1716 /* NetBSD declares sys_siglist in unistd.h.  */
1717 #ifdef HAVE_UNISTD_H
1718 # include <unistd.h>
1719 #endif
1720 ])
1721
1722 AC_CHECK_FUNC(syslog,
1723               [AC_CHECK_HEADER(syslog.h,
1724                                [AC_DEFINE(HAVE_SYSLOG, 1, [Define to 1 if you have the syslog interface.])])])
1725
1726 AC_CACHE_CHECK([for opterr], pgac_cv_var_int_opterr,
1727 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1728   [extern int opterr; opterr = 1;])],
1729   [pgac_cv_var_int_opterr=yes],
1730   [pgac_cv_var_int_opterr=no])])
1731 if test x"$pgac_cv_var_int_opterr" = x"yes"; then
1732   AC_DEFINE(HAVE_INT_OPTERR, 1, [Define to 1 if you have the global variable 'int opterr'.])
1733 fi
1734
1735 AC_CACHE_CHECK([for optreset], pgac_cv_var_int_optreset,
1736 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
1737   [extern int optreset; optreset = 1;])],
1738   [pgac_cv_var_int_optreset=yes],
1739   [pgac_cv_var_int_optreset=no])])
1740 if test x"$pgac_cv_var_int_optreset" = x"yes"; then
1741   AC_DEFINE(HAVE_INT_OPTRESET, 1, [Define to 1 if you have the global variable 'int optreset'.])
1742 fi
1743
1744 AC_CHECK_FUNCS([strtoll strtoq], [break])
1745 AC_CHECK_FUNCS([strtoull strtouq], [break])
1746
1747 if test "$with_icu" = yes; then
1748   ac_save_CPPFLAGS=$CPPFLAGS
1749   CPPFLAGS="$ICU_CFLAGS $CPPFLAGS"
1750
1751   # Verify we have ICU's header files
1752   AC_CHECK_HEADER(unicode/ucol.h, [],
1753         [AC_MSG_ERROR([header file <unicode/ucol.h> is required for ICU])])
1754
1755   CPPFLAGS=$ac_save_CPPFLAGS
1756 fi
1757
1758 # Lastly, restore full LIBS list and check for readline/libedit symbols
1759 LIBS="$LIBS_including_readline"
1760
1761 if test "$with_readline" = yes; then
1762   PGAC_VAR_RL_COMPLETION_APPEND_CHARACTER
1763   AC_CHECK_FUNCS([rl_completion_matches rl_filename_completion_function rl_reset_screen_size])
1764   AC_CHECK_FUNCS([append_history history_truncate_file])
1765 fi
1766
1767
1768 # This test makes sure that run tests work at all.  Sometimes a shared
1769 # library is found by the linker, but the runtime linker can't find it.
1770 # This check should come after all modifications of compiler or linker
1771 # variables, and before any other run tests.
1772 AC_MSG_CHECKING([test program])
1773 AC_RUN_IFELSE([AC_LANG_SOURCE([int main() { return 0; }])],
1774 [AC_MSG_RESULT(ok)],
1775 [AC_MSG_RESULT(failed)
1776 AC_MSG_ERROR([[
1777 Could not execute a simple test program.  This may be a problem
1778 related to locating shared libraries.  Check the file 'config.log'
1779 for the exact reason.]])],
1780 [AC_MSG_RESULT([cross-compiling])])
1781
1782 # --------------------
1783 # Run tests below here
1784 # --------------------
1785
1786 # Force use of our snprintf if system's doesn't do arg control
1787 # See comment above at snprintf test for details.
1788 if test "$enable_nls" = yes -a "$pgac_need_repl_snprintf" = no; then
1789   PGAC_FUNC_SNPRINTF_ARG_CONTROL
1790   if test $pgac_cv_snprintf_arg_control != yes ; then
1791     pgac_need_repl_snprintf=yes
1792   fi
1793 fi
1794
1795
1796 dnl Check to see if we have a working 64-bit integer type.
1797 dnl This breaks down into two steps:
1798 dnl (1) figure out if the compiler has a 64-bit int type with working
1799 dnl arithmetic, and if so
1800 dnl (2) see whether snprintf() can format the type correctly.  (Currently,
1801 dnl snprintf is the only library routine we really need for int8 support.)
1802 dnl It's entirely possible to have a compiler that handles a 64-bit type
1803 dnl when the C library doesn't; this is fairly likely when using gcc on
1804 dnl an older platform, for example.
1805 dnl If there is no native snprintf() or it does not handle the 64-bit type,
1806 dnl we force our own version of snprintf() to be used instead.
1807 dnl Note this test must be run after our initial check for snprintf/vsnprintf.
1808
1809 dnl As of Postgres 8.4, we no longer support compilers without a working
1810 dnl 64-bit type.  But we still handle the case of snprintf being broken.
1811
1812 PGAC_TYPE_64BIT_INT([long int])
1813
1814 if test x"$HAVE_LONG_INT_64" = x"yes" ; then
1815   pg_int64_type="long int"
1816 else
1817   PGAC_TYPE_64BIT_INT([long long int])
1818   if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
1819     pg_int64_type="long long int"
1820   else
1821     AC_MSG_ERROR([Cannot find a working 64-bit integer type.])
1822   fi
1823 fi
1824
1825 AC_DEFINE_UNQUOTED(PG_INT64_TYPE, $pg_int64_type,
1826   [Define to the name of a signed 64-bit integer type.])
1827
1828 # If we found "long int" is 64 bits, assume snprintf handles it.  If
1829 # we found we need to use "long long int", better check.  We cope with
1830 # snprintfs that use %lld, %qd, or %I64d as the format.  If none of these
1831 # work, fall back to our own snprintf emulation (which we know uses %lld).
1832
1833 if test "$HAVE_LONG_LONG_INT_64" = yes ; then
1834   if test $pgac_need_repl_snprintf = no; then
1835     PGAC_FUNC_SNPRINTF_LONG_LONG_INT_MODIFIER
1836     if test "$LONG_LONG_INT_MODIFIER" = ""; then
1837       # Force usage of our own snprintf, since system snprintf is broken
1838       pgac_need_repl_snprintf=yes
1839       LONG_LONG_INT_MODIFIER='ll'
1840     fi
1841   else
1842     # Here if we previously decided we needed to use our own snprintf
1843     LONG_LONG_INT_MODIFIER='ll'
1844   fi
1845 else
1846   # Here if we are not using 'long long int' at all
1847   LONG_LONG_INT_MODIFIER='l'
1848 fi
1849
1850 INT64_MODIFIER="\"$LONG_LONG_INT_MODIFIER\""
1851
1852 AC_DEFINE_UNQUOTED(INT64_MODIFIER, $INT64_MODIFIER,
1853                    [Define to the appropriate snprintf length modifier for 64-bit ints.])
1854
1855 # Also force use of our snprintf if the system's doesn't support the %z flag.
1856 if test "$pgac_need_repl_snprintf" = no; then
1857   PGAC_FUNC_SNPRINTF_SIZE_T_SUPPORT
1858   if test "$pgac_cv_snprintf_size_t_support" != yes; then
1859     pgac_need_repl_snprintf=yes
1860   fi
1861 fi
1862
1863 # Now we have checked all the reasons to replace snprintf
1864 if test $pgac_need_repl_snprintf = yes; then
1865   AC_DEFINE(USE_REPL_SNPRINTF, 1, [Use replacement snprintf() functions.])
1866   AC_LIBOBJ(snprintf)
1867 fi
1868
1869 # has to be down here, rather than with the other builtins, because
1870 # the test uses PG_INT64_TYPE.
1871 PGAC_C_BUILTIN_OP_OVERFLOW
1872
1873 # Check size of void *, size_t (enables tweaks for > 32bit address space)
1874 AC_CHECK_SIZEOF([void *])
1875 AC_CHECK_SIZEOF([size_t])
1876 AC_CHECK_SIZEOF([long])
1877
1878 # Decide whether float4 is passed by value: user-selectable, enabled by default
1879 AC_MSG_CHECKING([whether to build with float4 passed by value])
1880 PGAC_ARG_BOOL(enable, float4-byval, yes, [disable float4 passed by value],
1881               [AC_DEFINE([USE_FLOAT4_BYVAL], 1,
1882                          [Define to 1 if you want float4 values to be passed by value. (--enable-float4-byval)])
1883                float4passbyval=true],
1884               [float4passbyval=false])
1885 AC_MSG_RESULT([$enable_float4_byval])
1886 AC_DEFINE_UNQUOTED([FLOAT4PASSBYVAL], [$float4passbyval], [float4 values are passed by value if 'true', by reference if 'false'])
1887
1888 # Decide whether float8 is passed by value.
1889 # Note: this setting also controls int8 and related types such as timestamp.
1890 # If sizeof(Datum) >= 8, this is user-selectable, enabled by default.
1891 # If not, trying to select it is an error.
1892 AC_MSG_CHECKING([whether to build with float8 passed by value])
1893 if test $ac_cv_sizeof_void_p -ge 8 ; then
1894   PGAC_ARG_BOOL(enable, float8-byval, yes, [disable float8 passed by value])
1895 else
1896   PGAC_ARG_BOOL(enable, float8-byval, no, [disable float8 passed by value])
1897   if test "$enable_float8_byval" = yes ; then
1898     AC_MSG_ERROR([--enable-float8-byval is not supported on 32-bit platforms.])
1899   fi
1900 fi
1901 if test "$enable_float8_byval" = yes ; then
1902   AC_DEFINE([USE_FLOAT8_BYVAL], 1,
1903             [Define to 1 if you want float8, int8, etc values to be passed by value. (--enable-float8-byval)])
1904   float8passbyval=true
1905 else
1906   float8passbyval=false
1907 fi
1908 AC_MSG_RESULT([$enable_float8_byval])
1909 AC_DEFINE_UNQUOTED([FLOAT8PASSBYVAL], [$float8passbyval], [float8, int8, and related values are passed by value if 'true', by reference if 'false'])
1910
1911 # Determine memory alignment requirements for the basic C data types.
1912
1913 AC_CHECK_ALIGNOF(short)
1914 AC_CHECK_ALIGNOF(int)
1915 AC_CHECK_ALIGNOF(long)
1916 if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
1917   AC_CHECK_ALIGNOF(long long int)
1918 fi
1919 AC_CHECK_ALIGNOF(double)
1920
1921 # Compute maximum alignment of any basic type.
1922 # We assume long's alignment is at least as strong as char, short, or int;
1923 # but we must check long long (if it is being used for int64) and double.
1924 # Note that we intentionally do not consider any types wider than 64 bits,
1925 # as allowing MAXIMUM_ALIGNOF to exceed 8 would be too much of a penalty
1926 # for disk and memory space.
1927
1928 MAX_ALIGNOF=$ac_cv_alignof_long
1929 if test $MAX_ALIGNOF -lt $ac_cv_alignof_double ; then
1930   MAX_ALIGNOF=$ac_cv_alignof_double
1931 fi
1932 if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $MAX_ALIGNOF -lt $ac_cv_alignof_long_long_int ; then
1933   MAX_ALIGNOF="$ac_cv_alignof_long_long_int"
1934 fi
1935 AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any C data type.])
1936
1937
1938 # Some platforms predefine the types int8, int16, etc.  Only check
1939 # a (hopefully) representative subset.
1940 AC_CHECK_TYPES([int8, uint8, int64, uint64], [], [],
1941 [#include <stdio.h>])
1942
1943 # Some compilers offer a 128-bit integer scalar type.
1944 PGAC_TYPE_128BIT_INT
1945
1946 # Check for various atomic operations now that we have checked how to declare
1947 # 64bit integers.
1948 PGAC_HAVE_GCC__SYNC_CHAR_TAS
1949 PGAC_HAVE_GCC__SYNC_INT32_TAS
1950 PGAC_HAVE_GCC__SYNC_INT32_CAS
1951 PGAC_HAVE_GCC__SYNC_INT64_CAS
1952 PGAC_HAVE_GCC__ATOMIC_INT32_CAS
1953 PGAC_HAVE_GCC__ATOMIC_INT64_CAS
1954
1955
1956 # Check for x86 cpuid instruction
1957 AC_CACHE_CHECK([for __get_cpuid], [pgac_cv__get_cpuid],
1958 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <cpuid.h>],
1959   [[unsigned int exx[4] = {0, 0, 0, 0};
1960   __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);
1961   ]])],
1962   [pgac_cv__get_cpuid="yes"],
1963   [pgac_cv__get_cpuid="no"])])
1964 if test x"$pgac_cv__get_cpuid" = x"yes"; then
1965   AC_DEFINE(HAVE__GET_CPUID, 1, [Define to 1 if you have __get_cpuid.])
1966 fi
1967
1968 AC_CACHE_CHECK([for __cpuid], [pgac_cv__cpuid],
1969 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <intrin.h>],
1970   [[unsigned int exx[4] = {0, 0, 0, 0};
1971   __get_cpuid(exx[0], 1);
1972   ]])],
1973   [pgac_cv__cpuid="yes"],
1974   [pgac_cv__cpuid="no"])])
1975 if test x"$pgac_cv__cpuid" = x"yes"; then
1976   AC_DEFINE(HAVE__CPUID, 1, [Define to 1 if you have __cpuid.])
1977 fi
1978
1979 # Check for Intel SSE 4.2 intrinsics to do CRC calculations.
1980 #
1981 # First check if the _mm_crc32_u8 and _mm_crc32_u64 intrinsics can be used
1982 # with the default compiler flags. If not, check if adding the -msse4.2
1983 # flag helps. CFLAGS_SSE42 is set to -msse4.2 if that's required.
1984 PGAC_SSE42_CRC32_INTRINSICS([])
1985 if test x"$pgac_sse42_crc32_intrinsics" != x"yes"; then
1986   PGAC_SSE42_CRC32_INTRINSICS([-msse4.2])
1987 fi
1988 AC_SUBST(CFLAGS_SSE42)
1989
1990 # Are we targeting a processor that supports SSE 4.2? gcc, clang and icc all
1991 # define __SSE4_2__ in that case.
1992 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
1993 #ifndef __SSE4_2__
1994 #error __SSE4_2__ not defined
1995 #endif
1996 ])], [SSE4_2_TARGETED=1])
1997
1998 # Select CRC-32C implementation.
1999 #
2000 # If we are targeting a processor that has SSE 4.2 instructions, we can use the
2001 # special CRC instructions for calculating CRC-32C. If we're not targeting such
2002 # a processor, but we can nevertheless produce code that uses the SSE
2003 # intrinsics, perhaps with some extra CFLAGS, compile both implementations and
2004 # select which one to use at runtime, depending on whether SSE 4.2 is supported
2005 # by the processor we're running on.
2006 #
2007 # You can override this logic by setting the appropriate USE_*_CRC32 flag to 1
2008 # in the template or configure command line.
2009 if test x"$USE_SSE42_CRC32C" = x"" && test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"" && test x"$USE_SLICING_BY_8_CRC32C" = x""; then
2010   if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && test x"$SSE4_2_TARGETED" = x"1" ; then
2011     USE_SSE42_CRC32C=1
2012   else
2013     # the CPUID instruction is needed for the runtime check.
2014     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
2015       USE_SSE42_CRC32C_WITH_RUNTIME_CHECK=1
2016     else
2017       # fall back to slicing-by-8 algorithm which doesn't require any special
2018       # CPU support.
2019       USE_SLICING_BY_8_CRC32C=1
2020     fi
2021   fi
2022 fi
2023
2024 # Set PG_CRC32C_OBJS appropriately depending on the selected implementation.
2025 AC_MSG_CHECKING([which CRC-32C implementation to use])
2026 if test x"$USE_SSE42_CRC32C" = x"1"; then
2027   AC_DEFINE(USE_SSE42_CRC32C, 1, [Define to 1 use Intel SSE 4.2 CRC instructions.])
2028   PG_CRC32C_OBJS="pg_crc32c_sse42.o"
2029   AC_MSG_RESULT(SSE 4.2)
2030 else
2031   if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
2032     AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSSE 4.2 CRC instructions with a runtime check.])
2033     PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_choose.o"
2034     AC_MSG_RESULT(SSE 4.2 with runtime check)
2035   else
2036     AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
2037     PG_CRC32C_OBJS="pg_crc32c_sb8.o"
2038     AC_MSG_RESULT(slicing-by-8)
2039   fi
2040 fi
2041 AC_SUBST(PG_CRC32C_OBJS)
2042
2043
2044 # Select semaphore implementation type.
2045 if test "$PORTNAME" != "win32"; then
2046   if test x"$PREFERRED_SEMAPHORES" = x"NAMED_POSIX" ; then
2047     # Need sem_open for this
2048     AC_SEARCH_LIBS(sem_open, [rt pthread], [USE_NAMED_POSIX_SEMAPHORES=1])
2049   fi
2050   if test x"$PREFERRED_SEMAPHORES" = x"UNNAMED_POSIX" ; then
2051     # Need sem_init for this
2052     AC_SEARCH_LIBS(sem_init, [rt pthread], [USE_UNNAMED_POSIX_SEMAPHORES=1])
2053   fi
2054   AC_MSG_CHECKING([which semaphore API to use])
2055   if test x"$USE_NAMED_POSIX_SEMAPHORES" = x"1" ; then
2056     AC_DEFINE(USE_NAMED_POSIX_SEMAPHORES, 1, [Define to select named POSIX semaphores.])
2057     SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2058     sematype="named POSIX"
2059   else
2060     if test x"$USE_UNNAMED_POSIX_SEMAPHORES" = x"1" ; then
2061       AC_DEFINE(USE_UNNAMED_POSIX_SEMAPHORES, 1, [Define to select unnamed POSIX semaphores.])
2062       SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
2063       sematype="unnamed POSIX"
2064     else
2065       AC_DEFINE(USE_SYSV_SEMAPHORES, 1, [Define to select SysV-style semaphores.])
2066       SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
2067       sematype="System V"
2068     fi
2069   fi
2070   AC_MSG_RESULT([$sematype])
2071 else
2072   AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.])
2073   SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
2074 fi
2075
2076
2077 # Select shared-memory implementation type.
2078 if test "$PORTNAME" != "win32"; then
2079   AC_DEFINE(USE_SYSV_SHARED_MEMORY, 1, [Define to select SysV-style shared memory.])
2080   SHMEM_IMPLEMENTATION="src/backend/port/sysv_shmem.c"
2081 else
2082   AC_DEFINE(USE_WIN32_SHARED_MEMORY, 1, [Define to select Win32-style shared memory.])
2083   SHMEM_IMPLEMENTATION="src/backend/port/win32_shmem.c"
2084 fi
2085
2086 # Select random number source
2087 #
2088 # You can override this logic by setting the appropriate USE_*RANDOM flag to 1
2089 # in the template or configure command line.
2090
2091 # If not selected manually, try to select a source automatically.
2092 if test "$enable_strong_random" = "yes" && test x"$USE_OPENSSL_RANDOM" = x"" && test x"$USE_WIN32_RANDOM" = x"" && test x"$USE_DEV_URANDOM" = x"" ; then
2093   if test x"$with_openssl" = x"yes" ; then
2094     USE_OPENSSL_RANDOM=1
2095   elif test "$PORTNAME" = "win32" ; then
2096     USE_WIN32_RANDOM=1
2097   else
2098     AC_CHECK_FILE([/dev/urandom], [], [])
2099
2100     if test x"$ac_cv_file__dev_urandom" = x"yes" ; then
2101       USE_DEV_URANDOM=1
2102     fi
2103   fi
2104 fi
2105
2106 AC_MSG_CHECKING([which random number source to use])
2107 if test "$enable_strong_random" = yes ; then
2108   if test x"$USE_OPENSSL_RANDOM" = x"1" ; then
2109     AC_DEFINE(USE_OPENSSL_RANDOM, 1, [Define to use OpenSSL for random number generation])
2110     AC_MSG_RESULT([OpenSSL])
2111   elif test x"$USE_WIN32_RANDOM" = x"1" ; then
2112     AC_DEFINE(USE_WIN32_RANDOM, 1, [Define to use native Windows API for random number generation])
2113     AC_MSG_RESULT([Windows native])
2114   elif test x"$USE_DEV_URANDOM" = x"1" ; then
2115     AC_DEFINE(USE_DEV_URANDOM, 1, [Define to use /dev/urandom for random number generation])
2116     AC_MSG_RESULT([/dev/urandom])
2117   else
2118     AC_MSG_ERROR([
2119 no source of strong random numbers was found
2120 PostgreSQL can use OpenSSL or /dev/urandom as a source of random numbers,
2121 for authentication protocols. You can use --disable-strong-random to use a
2122 built-in pseudo random number generator, but that may be insecure.])
2123   fi
2124   AC_DEFINE(HAVE_STRONG_RANDOM, 1, [Define to use have a strong random number source])
2125 else
2126     AC_MSG_RESULT([weak builtin PRNG])
2127     AC_MSG_WARN([
2128 *** Not using a strong random number source may be insecure.])
2129 fi
2130
2131 # If not set in template file, set bytes to use libc memset()
2132 if test x"$MEMSET_LOOP_LIMIT" = x"" ; then
2133   MEMSET_LOOP_LIMIT=1024
2134 fi
2135 AC_DEFINE_UNQUOTED(MEMSET_LOOP_LIMIT, ${MEMSET_LOOP_LIMIT}, [Define bytes to use libc memset().])
2136
2137
2138 if test "$enable_nls" = yes ; then
2139   PGAC_CHECK_GETTEXT
2140 fi
2141
2142 # Check for Tcl configuration script tclConfig.sh
2143 if test "$with_tcl" = yes; then
2144     PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
2145     PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
2146                           [TCL_INCLUDE_SPEC,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
2147     AC_SUBST(TCL_SHLIB_LD_LIBS)dnl don't want to double-evaluate that one
2148     if test "$TCL_SHARED_BUILD" != 1; then
2149       AC_MSG_ERROR([cannot build PL/Tcl because Tcl is not a shared library
2150 Use --without-tcl to disable building PL/Tcl.])
2151     fi
2152     # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h>
2153     ac_save_CPPFLAGS=$CPPFLAGS
2154     CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS"
2155     AC_CHECK_HEADER(tcl.h, [], [AC_MSG_ERROR([header file <tcl.h> is required for Tcl])])
2156     CPPFLAGS=$ac_save_CPPFLAGS
2157 fi
2158
2159 # check for <perl.h>
2160 if test "$with_perl" = yes; then
2161   ac_save_CPPFLAGS=$CPPFLAGS
2162   CPPFLAGS="$CPPFLAGS -I$perl_archlibexp/CORE"
2163   AC_CHECK_HEADER(perl.h, [], [AC_MSG_ERROR([header file <perl.h> is required for Perl])],
2164                   [#include <EXTERN.h>])
2165   # While we're at it, check that we can link to libperl.
2166   # On most platforms, if perl.h is there then libperl.so will be too, but at
2167   # this writing Debian packages them separately.  There is no known reason to
2168   # waste cycles on separate probes for the Tcl or Python libraries, though.
2169   pgac_save_LIBS=$LIBS
2170   LIBS="$perl_embed_ldflags"
2171   AC_MSG_CHECKING([for libperl])
2172   AC_LINK_IFELSE([AC_LANG_PROGRAM([
2173 #include <EXTERN.h>
2174 #include <perl.h>
2175 ],  [perl_alloc();])],
2176     [AC_MSG_RESULT(yes)],
2177     [AC_MSG_RESULT(no)
2178      AC_MSG_ERROR([libperl library is required for Perl])])
2179   LIBS=$pgac_save_LIBS
2180   CPPFLAGS=$ac_save_CPPFLAGS
2181 fi
2182
2183 # check for <Python.h>
2184 if test "$with_python" = yes; then
2185   ac_save_CPPFLAGS=$CPPFLAGS
2186   CPPFLAGS="$python_includespec $CPPFLAGS"
2187   AC_CHECK_HEADER(Python.h, [], [AC_MSG_ERROR([header file <Python.h> is required for Python])])
2188   CPPFLAGS=$ac_save_CPPFLAGS
2189 fi
2190
2191 #
2192 # Check for DocBook and tools
2193 #
2194 PGAC_PATH_XMLLINT
2195 PGAC_CHECK_DOCBOOK(4.2)
2196 PGAC_PATH_PROGS(DBTOEPUB, dbtoepub)
2197 PGAC_PATH_PROGS(XSLTPROC, xsltproc)
2198 PGAC_PATH_PROGS(FOP, fop)
2199
2200 #
2201 # Check for test tools
2202 #
2203 if test "$enable_tap_tests" = yes; then
2204   # Check for necessary modules, unless user has specified the "prove" to use;
2205   # in that case it's her responsibility to have a working configuration.
2206   # (prove might be part of a different Perl installation than perl, eg on
2207   # MSys, so the result of AX_PROG_PERL_MODULES could be irrelevant anyway.)
2208   if test -z "$PROVE"; then
2209     # Test::More and Time::HiRes are supposed to be part of core Perl,
2210     # but some distros omit them in a minimal installation.
2211     AX_PROG_PERL_MODULES([IPC::Run Test::More=0.87 Time::HiRes], ,
2212       [AC_MSG_ERROR([Additional Perl modules are required to run TAP tests])])
2213   fi
2214   # Now make sure we know where prove is
2215   PGAC_PATH_PROGS(PROVE, prove)
2216   if test -z "$PROVE"; then
2217     AC_MSG_ERROR([prove not found])
2218   fi
2219 fi
2220
2221 # Thread testing
2222
2223 # We have to run the thread test near the end so we have all our symbols
2224 # defined.  Cross compiling throws a warning.
2225 #
2226 if test "$enable_thread_safety" = yes; then
2227 if test "$PORTNAME" != "win32"
2228 then
2229 AC_MSG_CHECKING([thread safety of required library functions])
2230
2231 _CFLAGS="$CFLAGS"
2232 _LIBS="$LIBS"
2233 CFLAGS="$CFLAGS $PTHREAD_CFLAGS -DIN_CONFIGURE"
2234 LIBS="$LIBS $PTHREAD_LIBS"
2235 AC_RUN_IFELSE(
2236   [AC_LANG_SOURCE([[#include "$srcdir/src/test/thread/thread_test.c"]])],
2237   [AC_MSG_RESULT(yes)],
2238   [AC_MSG_RESULT(no)
2239   AC_MSG_ERROR([thread test program failed
2240 This platform is not thread-safe.  Check the file 'config.log' or compile
2241 and run src/test/thread/thread_test for the exact reason.
2242 Use --disable-thread-safety to disable thread safety.])],
2243   [AC_MSG_RESULT(maybe)
2244   AC_MSG_WARN([
2245 *** Skipping thread test program because of cross-compile build.
2246 *** Run the program in src/test/thread on the target machine.
2247 ])])
2248 CFLAGS="$_CFLAGS"
2249 LIBS="$_LIBS"
2250 else
2251 AC_MSG_WARN([*** skipping thread test on Win32])
2252 fi
2253 fi
2254
2255 # If compiler will take -Wl,--as-needed (or various platform-specific
2256 # spellings thereof) then add that to LDFLAGS.  This is much easier than
2257 # trying to filter LIBS to the minimum for each executable.
2258 # On (at least) some Red-Hat-derived systems, this switch breaks linking to
2259 # libreadline; therefore we postpone testing it until we know what library
2260 # dependencies readline has.  The test code will try to link with $LIBS.
2261 if test "$with_readline" = yes; then
2262   link_test_func=readline
2263 else
2264   link_test_func=exit
2265 fi
2266
2267 if test "$PORTNAME" = "darwin"; then
2268   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-dead_strip_dylibs], $link_test_func)
2269 elif test "$PORTNAME" = "openbsd"; then
2270   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-Bdynamic], $link_test_func)
2271 else
2272   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,--as-needed], $link_test_func)
2273 fi
2274
2275 # Create compiler version string
2276 if test x"$GCC" = x"yes" ; then
2277   cc_string=`${CC} --version | sed q`
2278   case $cc_string in [[A-Za-z]]*) ;; *) cc_string="GCC $cc_string";; esac
2279 elif test x"$SUN_STUDIO_CC" = x"yes" ; then
2280   cc_string=`${CC} -V 2>&1 | sed q`
2281 else
2282   cc_string=$CC
2283 fi
2284
2285 AC_DEFINE_UNQUOTED(PG_VERSION_STR,
2286                    ["PostgreSQL $PG_VERSION on $host, compiled by $cc_string, `expr $ac_cv_sizeof_void_p \* 8`-bit"],
2287                    [A string containing the version number, platform, and C compiler])
2288
2289 # Supply a numeric version string for use by 3rd party add-ons
2290 # awk -F is a regex on some platforms, and not on others, so make "." a tab
2291 [PG_VERSION_NUM="`echo "$PACKAGE_VERSION" | sed 's/[A-Za-z].*$//' |
2292 tr '.' '        ' |
2293 $AWK '{printf "%d%04d", $1, $2}'`"]
2294 AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number])
2295 AC_SUBST(PG_VERSION_NUM)
2296
2297
2298 # Begin output steps
2299
2300 AC_MSG_NOTICE([using compiler=$cc_string])
2301 AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
2302 AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS])
2303 AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS])
2304 # Currently only used when LLVM is used
2305 if test "$with_llvm" = yes ; then
2306    AC_MSG_NOTICE([using CXX=$CXX])
2307    AC_MSG_NOTICE([using CXXFLAGS=$CXXFLAGS])
2308    AC_MSG_NOTICE([using CLANG=$CLANG])
2309    AC_MSG_NOTICE([using BITCODE_CFLAGS=$BITCODE_CFLAGS])
2310    AC_MSG_NOTICE([using BITCODE_CXXFLAGS=$BITCODE_CXXFLAGS])
2311 fi
2312
2313 # prepare build tree if outside source tree
2314 # Note 1: test -ef might not exist, but it's more reliable than `pwd`.
2315 # Note 2: /bin/pwd might be better than shell's built-in at getting
2316 #         a symlink-free name.
2317 if ( test "$srcdir" -ef . ) >/dev/null 2>&1 || test "`cd $srcdir && /bin/pwd`" = "`/bin/pwd`"; then
2318   vpath_build=no
2319 else
2320   vpath_build=yes
2321   if test "$no_create" != yes; then
2322     _AS_ECHO_N([preparing build tree... ])
2323     pgac_abs_top_srcdir=`cd "$srcdir" && pwd`
2324     $SHELL "$ac_aux_dir/prep_buildtree" "$pgac_abs_top_srcdir" "." \
2325       || AC_MSG_ERROR(failed)
2326     AC_MSG_RESULT(done)
2327   fi
2328 fi
2329 AC_SUBST(vpath_build)
2330
2331
2332 AC_CONFIG_FILES([GNUmakefile src/Makefile.global])
2333
2334 AC_CONFIG_LINKS([
2335   src/backend/port/dynloader.c:src/backend/port/dynloader/${template}.c
2336   src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION}
2337   src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION}
2338   src/include/dynloader.h:src/backend/port/dynloader/${template}.h
2339   src/include/pg_config_os.h:src/include/port/${template}.h
2340   src/Makefile.port:src/makefiles/Makefile.${template}
2341 ])
2342
2343 if test "$PORTNAME" = "win32"; then
2344 AC_CONFIG_COMMANDS([check_win32_symlinks],[
2345 # Links sometimes fail undetected on Mingw -
2346 # so here we detect it and warn the user
2347 for FILE in $CONFIG_LINKS
2348  do
2349         # test -e works for symlinks in the MinGW console
2350         test -e `expr "$FILE" : '\([[^:]]*\)'` || AC_MSG_WARN([*** link for $FILE -- please fix by hand])
2351  done
2352 ])
2353 fi
2354
2355 AC_CONFIG_HEADERS([src/include/pg_config.h],
2356 [
2357 # Update timestamp for pg_config.h (see Makefile.global)
2358 echo >src/include/stamp-h
2359 ])
2360
2361 AC_CONFIG_HEADERS([src/include/pg_config_ext.h],
2362 [
2363 # Update timestamp for pg_config_ext.h (see Makefile.global)
2364 echo >src/include/stamp-ext-h
2365 ])
2366
2367 AC_CONFIG_HEADERS([src/interfaces/ecpg/include/ecpg_config.h],
2368                   [echo >src/interfaces/ecpg/include/stamp-h])
2369
2370 AC_OUTPUT