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