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