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